diff options
Diffstat (limited to 'ovh')
-rw-r--r-- | ovh/soapi/Makefile | 2 | ||||
-rw-r--r-- | ovh/soapi/README | 1 | ||||
-rwxr-xr-x | ovh/soapi/domainCapabilities | 24 | ||||
-rwxr-xr-x | ovh/soapi/domainInfo | 28 | ||||
-rwxr-xr-x | ovh/soapi/domainList | 24 | ||||
-rw-r--r-- | ovh/soapi/soapi-re-1.24.wsdl | 20105 | ||||
-rwxr-xr-x | ovh/soapi/zoneEntryAdd | 33 | ||||
-rwxr-xr-x | ovh/soapi/zoneEntryDel | 33 | ||||
-rwxr-xr-x | ovh/soapi/zoneEntryList | 24 | ||||
-rwxr-xr-x | ovh/soapi/zoneExport | 28 | ||||
-rwxr-xr-x | ovh/soapi/zoneImport | 32 |
11 files changed, 20303 insertions, 31 deletions
diff --git a/ovh/soapi/Makefile b/ovh/soapi/Makefile index 6a4a3a6b..8cc257ea 100644 --- a/ovh/soapi/Makefile +++ b/ovh/soapi/Makefile @@ -9,7 +9,7 @@ target_exes := $(addprefix ../../bin/,$(exes)) install: $(target_exes) ../../bin/%: % SOAPpy - ln -vsnf ../ovh/soapi/$* $@ + ln -snf ../ovh/soapi/$* $@ src: mkdir $@ diff --git a/ovh/soapi/README b/ovh/soapi/README new file mode 100644 index 00000000..42ad5ebf --- /dev/null +++ b/ovh/soapi/README @@ -0,0 +1 @@ +https://www.ovh.com/soapi/en/ diff --git a/ovh/soapi/domainCapabilities b/ovh/soapi/domainCapabilities index edce3f0d..dad8311d 100755 --- a/ovh/soapi/domainCapabilities +++ b/ovh/soapi/domainCapabilities @@ -1,24 +1,28 @@ #!/usr/bin/python from os import environ -import pprint +from os.path import dirname, realpath from SOAPpy import WSDL +from json import dumps, JSONEncoder -soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) username = environ['KREBS_OVH_USER'] password = environ['KREBS_OVH_PASS'] -#login session = soap.login(username, password, 'de', 0) -print "login successfull" -#domainCapabilities result = soap.domainCapabilities(session, 'krebsco.de') -print "domainCapabilities successfull" -pp = pprint.PrettyPrinter(indent=4) -pp.pprint(result) # your code here ... +print dumps(result, sort_keys=True, indent=2, default=default) -#logout soap.logout(session) -print "logout successfull" diff --git a/ovh/soapi/domainInfo b/ovh/soapi/domainInfo new file mode 100755 index 00000000..e32262e1 --- /dev/null +++ b/ovh/soapi/domainInfo @@ -0,0 +1,28 @@ +#!/usr/bin/python + +from os import environ +from os.path import dirname, realpath +from SOAPpy import WSDL +from json import dumps, JSONEncoder + +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +session = soap.login(username, password, 'de', 0) + +result = soap.domainInfo(session, 'krebsco.de') +print dumps(result, sort_keys=True, indent=2, default=default) + +soap.logout(session) diff --git a/ovh/soapi/domainList b/ovh/soapi/domainList index 3f829ebe..342eec72 100755 --- a/ovh/soapi/domainList +++ b/ovh/soapi/domainList @@ -1,24 +1,28 @@ #!/usr/bin/python from os import environ -import pprint +from os.path import dirname, realpath from SOAPpy import WSDL +from json import dumps, JSONEncoder -soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) username = environ['KREBS_OVH_USER'] password = environ['KREBS_OVH_PASS'] -#login session = soap.login(username, password, 'de', 0) -print "login successfull" -#domainHostList result = soap.domainList(session) -print "domainList successfull" -pp = pprint.PrettyPrinter(indent=4) -pp.pprint(result) # your code here ... +print dumps(result, sort_keys=True, indent=2, default=default) -#logout soap.logout(session) -print "logout successfull" diff --git a/ovh/soapi/soapi-re-1.24.wsdl b/ovh/soapi/soapi-re-1.24.wsdl new file mode 100644 index 00000000..c628c564 --- /dev/null +++ b/ovh/soapi/soapi-re-1.24.wsdl @@ -0,0 +1,20105 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + + SOAPI WSDL, RPC/Encoded style, version 1.24 + + The SOAPI technical specifications are available at this url : http://www.ovh.com/soapi . + + copyright 1999-2011 OVH + +--> + +<wsdl:definitions name="manager" + targetNamespace="http://soapi.ovh.com/manager" + xmlns="http://schemas.xmlsoap.org/wsdl/" + xmlns:wsdlns="http://soapi.ovh.com/manager" + xmlns:typens="http://soapi.ovh.com/manager" + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" +> + + <wsdl:types> + <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://soapi.ovh.com/manager"> + + <xsd:complexType name="supportThreadDetailStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="subject" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="unread" type="xsd:int"/> + <xsd:element name="closed" type="xsd:int"/> + <xsd:element name="answered" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportThreadMessageDetailStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="unread" type="xsd:int"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="reportReason" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportThreadTreeReturn"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="subject" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="closed" type="xsd:int"/> + <xsd:element name="reportReason" type="xsd:string"/> + <xsd:element name="messages" type="typens:MyArrayOfSupportThreadMessageDetailStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportMessageDetailReturn"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="thread" type="xsd:int"/> + <xsd:element name="unreadThread" type="xsd:boolean"/> + <xsd:element name="fromEmail" type="xsd:string"/> + <xsd:element name="dateSent" type="xsd:string"/> + <xsd:element name="subject" type="xsd:string"/> + <xsd:element name="body" type="xsd:string"/> + <xsd:element name="reportReason" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportCategoryStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportDomainStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportSendMessageReturn"> + <xsd:all> + <xsd:element name="threadId" type="xsd:int"/> + <xsd:element name="messageId" type="xsd:int"/> + <xsd:element name="dateTime" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSupportThreadDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportThreadDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSupportCategoryStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportCategoryStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSupportDomainStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportDomainStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSupportThreadMessageDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:supportThreadMessageDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="telephonyBillingAccountStruct"> + <xsd:all> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="mobile" type="xsd:string"/> + <xsd:element name="mobileDestination" type="xsd:string"/> + <xsd:element name="expirationDate" type="xsd:string"/> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="trusted" type="xsd:boolean"/> + <xsd:element name="pendingAction" type="typens:telephonyPendingActionStruct"/> + <xsd:element name="descriptionUser" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyNumberDecodeStruct"> + <xsd:all> + <xsd:element name="numberDisplay" type="xsd:string"/> + <xsd:element name="numberInternal" type="xsd:string"/> + <xsd:element name="numberInternational" type="xsd:string"/> + <xsd:element name="numberNational" type="xsd:string"/> + <xsd:element name="countryCode" type="xsd:string"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="cirpackNature" type="xsd:string"/> + <xsd:element name="cirpackNumber" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPendingActionStruct"> + <xsd:all> + <xsd:element name="dateTodo" type="xsd:string"/> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="action" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillingAccountInfoChildrenStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="expirationDate" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillingAccountInfoReturn"> + <xsd:all> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="consumtionTime" type="xsd:string"/> + <xsd:element name="outPlan" type="xsd:string"/> + <xsd:element name="facturationDate" type="xsd:string"/> + <xsd:element name="children" type="typens:MyArrayOfTelephonyBillingAccountInfoChildrenStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineAliasPoolStruct"> + <xsd:all> + <xsd:element name="poolNumber" type="xsd:int"/> + <xsd:element name="service" type="xsd:string"/> + <xsd:element name="display" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="billingAccount" type="xsd:string"/> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="service" type="xsd:string"/> + <xsd:element name="expirationDate" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="betaGamaOffer" type="xsd:boolean"/> + <xsd:element name="setOn" type="xsd:string"/> + <xsd:element name="aliasPool" type="typens:telephonyLineAliasPoolStruct"/> + <xsd:element name="pendingAction" type="typens:telephonyPendingActionStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineListReturn"> + <xsd:all> + <xsd:element name="link" type="typens:MyArrayOfTelephonyLineStructType"/> + <xsd:element name="alias" type="typens:MyArrayOfTelephonyLineStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineOptionsListReturn"> + <xsd:all> + <xsd:element name="identificationRestriction" type="xsd:boolean"/> + <xsd:element name="anonymousCallRejection" type="xsd:boolean"/> + <xsd:element name="doNotDisturb" type="xsd:boolean"/> + <xsd:element name="absentSuscriber" type="xsd:boolean"/> + <xsd:element name="lockOutCall" type="xsd:boolean"/> + <xsd:element name="lockOutCallPassword" type="xsd:string"/> + <xsd:element name="forwardUnconditional" type="xsd:boolean"/> + <xsd:element name="forwardUnconditionalNumber" type="xsd:string"/> + <xsd:element name="forwardNoReply" type="xsd:boolean"/> + <xsd:element name="forwardNoReplyDelay" type="xsd:int"/> + <xsd:element name="forwardNoReplyNumber" type="xsd:string"/> + <xsd:element name="forwardBusy" type="xsd:boolean"/> + <xsd:element name="forwardBusyNumber" type="xsd:string"/> + <xsd:element name="forwardBackup" type="xsd:boolean"/> + <xsd:element name="forwardBackupNumber" type="xsd:string"/> + <xsd:element name="callWaiting" type="xsd:boolean"/> + <xsd:element name="displayCallNumber" type="xsd:string"/> + <xsd:element name="forwardUnconditionalNature" type="xsd:string"/> + <xsd:element name="forwardNoReplyNature" type="xsd:string"/> + <xsd:element name="forwardBusyNature" type="xsd:string"/> + <xsd:element name="forwardBackupNature" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineSwitchOldOfferStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="offers" type="typens:MyArrayOfTelephonyLineSwitchPossibilityPriceStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineSwitchPossibilityPriceStruct"> + <xsd:all> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="price" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="orderFollowingUpStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:string"/> + <xsd:element name="urlId" type="xsd:string"/> + <xsd:element name="procedure" type="xsd:string"/> + <xsd:element name="install" type="xsd:string"/> + <xsd:element name="shipping" type="xsd:string"/> + <xsd:element name="cloture" type="xsd:string"/> + <xsd:element name="avancement" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyOfferInfoReturn"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="countryCode" type="xsd:string"/> + <xsd:element name="nextBillingDate" type="xsd:string"/> + <xsd:element name="simultaneousLines" type="xsd:int"/> + <xsd:element name="hardware" type="typens:telephonyOfferInfoHardwareStruct"/> + <xsd:element name="sipAccount" type="typens:telephonyOfferInfoSipAccountStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyOfferInfoSipAccountStruct"> + <xsd:all> + <xsd:element name="username" type="xsd:string"/> + <xsd:element name="extension" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="lastLogin" type="xsd:string"/> + <xsd:element name="localAdress" type="xsd:string"/> + <xsd:element name="publicAdress" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyOfferInfoHardwareStruct"> + <xsd:all> + <xsd:element name="brand" type="xsd:string"/> + <xsd:element name="model" type="xsd:string"/> + <xsd:element name="protocol" type="xsd:string"/> + <xsd:element name="mac" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="engage" type="xsd:boolean"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="port" type="xsd:int"/> + <xsd:element name="outOfService" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyDisplayNumberTestingGetNextNumberReturn"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="id" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySpecialNumberCustomListReturn"> + <xsd:all> + <xsd:element name="easyNumbers" type="typens:MyArrayOfStringType"/> + <xsd:element name="staticAttributionRange" type="typens:MyArrayOfStringType"/> + <xsd:element name="proposedNumbers" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyReversmentsDetailsStructReturn"> + <xsd:all> + <xsd:element name="totalRecords" type="xsd:float"/> + <xsd:element name="reversementsDetailsStruct" type="typens:MyArrayOfTelephonyReversmentsDetailsStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyReversmentsDetailsStruct"> + <xsd:all> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="connectionDuration" type="xsd:string"/> + <xsd:element name="callingNumber" type="xsd:string"/> + <xsd:element name="priceReversed" type="xsd:string"/> + <xsd:element name="operatorCode" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyReversmentsSummationStructReturn"> + <xsd:all> + <xsd:element name="totalRecords" type="xsd:float"/> + <xsd:element name="reversementsSummationStruct" type="typens:MyArrayOfTelephonyReversmentsSummationStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyReversmentsSummationStruct"> + <xsd:all> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="seconds" type="xsd:string"/> + <xsd:element name="priceReversed" type="xsd:string"/> + <xsd:element name="calls" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyReversmentsSummationNumbersStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="reversementsSummationStruct" type="typens:MyArrayOfTelephonyReversmentsSummationStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyCallStruct"> + <xsd:all> + <xsd:element name="idkey" type="xsd:string"/> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="duration" type="xsd:string"/> + <xsd:element name="destination" type="xsd:string"/> + <xsd:element name="priceWithoutVAT" type="xsd:float"/> + <xsd:element name="nature" type="xsd:string"/> + <xsd:element name="overLimit" type="xsd:boolean"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="callingNumber" type="xsd:string"/> + <xsd:element name="presentation" type="xsd:string"/> + <xsd:element name="designation" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyCallsSummaryDetailsStruct"> + <xsd:all> + <xsd:element name="count" type="xsd:int"/> + <xsd:element name="duration" type="xsd:string"/> + <xsd:element name="priceWithoutVAT" type="xsd:float"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxSummaryDetailsStruct"> + <xsd:all> + <xsd:element name="count" type="xsd:int"/> + <xsd:element name="pages" type="xsd:int"/> + <xsd:element name="priceWithoutVAT" type="xsd:float"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyCallsSummaryStruct"> + <xsd:all> + <xsd:element name="pricePlan" type="typens:telephonyCallsSummaryDetailsStruct"/> + <xsd:element name="outPlan" type="typens:telephonyCallsSummaryDetailsStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxSummaryStruct"> + <xsd:all> + <xsd:element name="low" type="typens:telephonyFaxSummaryDetailsStruct"/> + <xsd:element name="high" type="typens:telephonyFaxSummaryDetailsStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillingAccountSummaryLineStruct"> + <xsd:all> + <xsd:element name="line" type="xsd:string"/> + <xsd:element name="phoneNumber" type="xsd:string"/> + <xsd:element name="fixe" type="typens:telephonyCallsSummaryStruct"/> + <xsd:element name="special" type="typens:telephonyCallsSummaryStruct"/> + <xsd:element name="mobile" type="typens:telephonyCallsSummaryStruct"/> + <xsd:element name="fax" type="typens:telephonyFaxSummaryStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillingAccountSummaryBillingAccountStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="betaGammaOffer" type="xsd:boolean"/> + <xsd:element name="mobile" type="typens:telephonyCallsSummaryStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillingAccountSummaryReturn"> + <xsd:all> + <xsd:element name="billingAccount" type="typens:telephonyBillingAccountSummaryBillingAccountStruct"/> + <xsd:element name="lines" type="typens:MyArrayOfTelephonyBillingAccountSummaryLineStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyCallListReturn"> + <xsd:all> + <xsd:element name="fromDate" type="xsd:string"/> + <xsd:element name="toDate" type="xsd:string"/> + <xsd:element name="list" type="typens:MyArrayOfTelephonyCallStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillStruct"> + <xsd:all> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="price" type="xsd:float"/> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="orderPaid" type="xsd:boolean"/> + <xsd:element name="orderUrl" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyBillDetailsReturn"> + <xsd:all> + <xsd:element name="fromDate" type="xsd:string"/> + <xsd:element name="toDate" type="xsd:string"/> + <xsd:element name="list" type="typens:MyArrayOfTelephonyCallStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyVoicemailOptionsListReturn"> + <xsd:all> + <xsd:element name="redirection1" type="xsd:string"/> + <xsd:element name="redirection1Email" type="xsd:string"/> + <xsd:element name="redirection2" type="xsd:string"/> + <xsd:element name="redirection2Email" type="xsd:string"/> + <xsd:element name="redirection3" type="xsd:string"/> + <xsd:element name="redirection3Email" type="xsd:string"/> + <xsd:element name="redirection4" type="xsd:string"/> + <xsd:element name="redirection4Email" type="xsd:string"/> + <xsd:element name="redirection5" type="xsd:string"/> + <xsd:element name="redirection5Email" type="xsd:string"/> + <xsd:element name="annouceMessage" type="xsd:string"/> + <xsd:element name="keepMessage" type="xsd:boolean"/> + <xsd:element name="audioformat" type="xsd:string"/> + <xsd:element name="fromEmail" type="xsd:string"/> + <xsd:element name="fromName" type="xsd:string"/> + <xsd:element name="forcePassword" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyVoicemailMessagesStatusReturn"> + <xsd:all> + <xsd:element name="unavailable" type="xsd:boolean"/> + <xsd:element name="busy" type="xsd:boolean"/> + <xsd:element name="temp" type="xsd:boolean"/> + <xsd:element name="greet" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyVoicemailMailboxStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="callerid" type="xsd:string"/> + <xsd:element name="origdate" type="xsd:string"/> + <xsd:element name="origtime" type="xsd:string"/> + <xsd:element name="origmailbox" type="xsd:string"/> + <xsd:element name="duration" type="xsd:int"/> + <xsd:element name="folder" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyVoicemailMailboxDownloadReturn"> + <xsd:all> + <xsd:element name="fileName" type="xsd:string"/> + <xsd:element name="fileData" type="xsd:string"/> + <xsd:element name="md5sum" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPhonebookStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="mode" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPhonebookGroupStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="count" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPhonebookContactStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="surname" type="xsd:string"/> + <xsd:element name="workPhone" type="xsd:string"/> + <xsd:element name="workMobile" type="xsd:string"/> + <xsd:element name="homePhone" type="xsd:string"/> + <xsd:element name="homeMobile" type="xsd:string"/> + <xsd:element name="group" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPhonebookSharePeerStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="mode" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySecurityDepositCreditReturn"> + <xsd:all> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="orderPassword" type="xsd:string"/> + <xsd:element name="orderUrl" type="xsd:string"/> + <xsd:element name="totalPrice" type="xsd:float"/> + <xsd:element name="vat" type="xsd:float"/> + <xsd:element name="totalPriceWithVat" type="xsd:float"/> + <xsd:element name="ribBankCode" type="xsd:string"/> + <xsd:element name="ribAgencyCode" type="xsd:string"/> + <xsd:element name="ribAccountNumber" type="xsd:string"/> + <xsd:element name="ribKey" type="xsd:string"/> + <xsd:element name="iban" type="xsd:string"/> + <xsd:element name="bic" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyConferenceStruct"> + <xsd:all> + <xsd:element name="room" type="xsd:string"/> + <xsd:element name="countryCode" type="xsd:string"/> + <xsd:element name="callNumber" type="xsd:string"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="customAnnounce" type="xsd:boolean"/> + <xsd:element name="recordAnnounce" type="xsd:boolean"/> + <xsd:element name="mailReport" type="xsd:boolean"/> + <xsd:element name="customMailReportAddress" type="xsd:string"/> + <xsd:element name="askName" type="xsd:boolean"/> + <xsd:element name="tellMemberCount" type="xsd:boolean"/> + <xsd:element name="moderatorCountryCode" type="xsd:string"/> + <xsd:element name="moderatorCallNumber" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="dtmfmenu" type="xsd:boolean"/> + <xsd:element name="announce_rcv" type="xsd:boolean"/> + <xsd:element name="announce_snd" type="xsd:boolean"/> + <xsd:element name="recordConf" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyConferenceAnnouncesStatusReturn"> + <xsd:all> + <xsd:element name="custom" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySmsUserQuotaStruct"> + <xsd:all> + <xsd:element name="quotaLeft" type="xsd:string"/> + <xsd:element name="quotaStatus" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyNotificationSmsUserStruct"> + <xsd:all> + <xsd:element name="support" type="xsd:string"/> + <xsd:element name="alertThreshold" type="xsd:string"/> + <xsd:element name="alertNumber" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySmsUserStruct"> + <xsd:all> + <xsd:element name="login" type="xsd:string"/> + <xsd:element name="quota" type="xsd:string"/> + <xsd:element name="quotaStatus" type="xsd:string"/> + <xsd:element name="alertThreshold" type="xsd:string"/> + <xsd:element name="support" type="xsd:string"/> + <xsd:element name="alertNumber" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySmsCreditInfoReturn"> + <xsd:all> + <xsd:element name="waiting" type="xsd:int"/> + <xsd:element name="left" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySmsHistoryStruct"> + <xsd:all> + <xsd:element name="smsId" type="xsd:int"/> + <xsd:element name="numberFrom" type="xsd:string"/> + <xsd:element name="numberTo" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="message" type="xsd:string"/> + <xsd:element name="text" type="xsd:string"/> + <xsd:element name="user" type="xsd:string"/> + <xsd:element name="tag" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonySmsSenderStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyAbbreviatedNumberStruct"> + <xsd:all> + <xsd:element name="abbreviatedNumber" type="xsd:string"/> + <xsd:element name="relatedNumber" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="surname" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyDirectoryPJHeadingStruct"> + <xsd:all> + <xsd:element name="codePJ" type="xsd:string"/> + <xsd:element name="labelPJ" type="xsd:string"/> + <xsd:element name="isAssociatedWithAPE" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyDirectoryWayTypeStruct"> + <xsd:all> + <xsd:element name="abbreviatedName" type="xsd:string"/> + <xsd:element name="wayName" type="xsd:string"/> + <xsd:element name="tag" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyDirectoryInfoReturn"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="firstName" type="xsd:string"/> + <xsd:element name="wayNumber" type="xsd:string"/> + <xsd:element name="wayType" type="xsd:string"/> + <xsd:element name="wayTypeDescription" type="xsd:string"/> + <xsd:element name="wayNumberExtra" type="xsd:string"/> + <xsd:element name="wayName" type="xsd:string"/> + <xsd:element name="addressExtra" type="xsd:string"/> + <xsd:element name="urbanDistrict" type="xsd:string"/> + <xsd:element name="postBox" type="xsd:string"/> + <xsd:element name="cedex" type="xsd:string"/> + <xsd:element name="postCode" type="xsd:string"/> + <xsd:element name="city" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="legalForm" type="xsd:string"/> + <xsd:element name="occupation" type="xsd:string"/> + <xsd:element name="socialNomination" type="xsd:string"/> + <xsd:element name="PJSocialNomination" type="xsd:string"/> + <xsd:element name="socialNominationExtra" type="xsd:string"/> + <xsd:element name="lineDescription" type="xsd:string"/> + <xsd:element name="siret" type="xsd:string"/> + <xsd:element name="ape" type="xsd:string"/> + <xsd:element name="displayFirstName" type="xsd:string"/> + <xsd:element name="displayOnlyCity" type="xsd:string"/> + <xsd:element name="displayUniversalDirectory" type="xsd:string"/> + <xsd:element name="displayMarketingDirectory" type="xsd:string"/> + <xsd:element name="displaySearchReverse" type="xsd:string"/> + <xsd:element name="receivePJDirectory" type="xsd:string"/> + <xsd:element name="inseeCode" type="xsd:string"/> + <xsd:element name="codePJ" type="xsd:string"/> + <xsd:element name="labelPJ" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFunctionKeyStruct"> + <xsd:all> + <xsd:element name="keyNum" type="xsd:int"/> + <xsd:element name="function" type="xsd:string"/> + <xsd:element name="relatedNumber" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxOptionsListReturn"> + <xsd:all> + <xsd:element name="callNumber" type="xsd:string"/> + <xsd:element name="countryCode" type="xsd:string"/> + <xsd:element name="fromName" type="xsd:string"/> + <xsd:element name="fromEmail" type="xsd:string"/> + <xsd:element name="faxQuality" type="xsd:string"/> + <xsd:element name="faxTagLine" type="xsd:string"/> + <xsd:element name="faxMaxCall" type="xsd:int"/> + <xsd:element name="receivId" type="xsd:string"/> + <xsd:element name="senderId" type="xsd:string"/> + <xsd:element name="redirection1Email" type="xsd:string"/> + <xsd:element name="redirection2Email" type="xsd:string"/> + <xsd:element name="redirection3Email" type="xsd:string"/> + <xsd:element name="redirection4Email" type="xsd:string"/> + <xsd:element name="redirection5Email" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxHistoryStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="relatedNumber" type="xsd:string"/> + <xsd:element name="jobid" type="xsd:int"/> + <xsd:element name="jobtag" type="xsd:string"/> + <xsd:element name="sender" type="xsd:string"/> + <xsd:element name="pages" type="xsd:int"/> + <xsd:element name="quality" type="xsd:string"/> + <xsd:element name="callTime" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxCampaignDetailsStruct"> + <xsd:all> + <xsd:element name="campaignName" type="xsd:string"/> + <xsd:element name="campaignStatus" type="xsd:string"/> + <xsd:element name="dateStart" type="xsd:string"/> + <xsd:element name="dateEnd" type="xsd:string"/> + <xsd:element name="total" type="xsd:int"/> + <xsd:element name="todo" type="xsd:int"/> + <xsd:element name="success" type="xsd:int"/> + <xsd:element name="failed" type="xsd:int"/> + <xsd:element name="reference" type="xsd:string"/> + <xsd:element name="recipients" type="typens:MyArrayOfTelephonyRecipientStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyRecipientStruct"> + <xsd:all> + <xsd:element name="recipient" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxCampaignStructReturn"> + <xsd:all> + <xsd:element name="totalRecords" type="xsd:float"/> + <xsd:element name="telephonyfaxCampaignStruct" type="typens:MyArrayOfTelephonyFaxCampaignStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyFaxCampaignStruct"> + <xsd:all> + <xsd:element name="campaignName" type="xsd:string"/> + <xsd:element name="campaignStatus" type="xsd:string"/> + <xsd:element name="dateStart" type="xsd:string"/> + <xsd:element name="dateEnd" type="xsd:string"/> + <xsd:element name="total" type="xsd:int"/> + <xsd:element name="success" type="xsd:int"/> + <xsd:element name="failed" type="xsd:int"/> + <xsd:element name="reference" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPortabilityStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="planDate" type="xsd:string"/> + <xsd:element name="billingAccount" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="operator" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="reason" type="xsd:string"/> + <xsd:element name="askingCustomer" type="typens:MyArrayOfStringType"/> + <xsd:element name="extraNumbers" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyNumberOrderReturn"> + <xsd:all> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="orderPassword" type="xsd:string"/> + <xsd:element name="orderUrl" type="xsd:string"/> + <xsd:element name="totalPrice" type="xsd:float"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyNumberZoneAndPrefixStruct"> + <xsd:all> + <xsd:element name="zone" type="xsd:string"/> + <xsd:element name="prefix" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyNumberCityForZoneStruct"> + <xsd:all> + <xsd:element name="city" type="xsd:string"/> + <xsd:element name="postalCode" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyTonesOptionsListReturn"> + <xsd:all> + <xsd:element name="toneRingback" type="xsd:boolean"/> + <xsd:element name="toneOnHold" type="xsd:boolean"/> + <xsd:element name="toneOnClosure" type="xsd:boolean"/> + <xsd:element name="toneOnCallWaiting" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyToneStatusReturn"> + <xsd:all> + <xsd:element name="ringback" type="xsd:boolean"/> + <xsd:element name="onhold" type="xsd:boolean"/> + <xsd:element name="onclosure" type="xsd:boolean"/> + <xsd:element name="callwaiting" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyDdiInfoReturn"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="noReplyTimer" type="xsd:int"/> + <xsd:element name="logged" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyRedirectInfoReturn"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="noReplyTimer" type="xsd:int"/> + <xsd:element name="logged" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyHuntingInfoReturn"> + <xsd:all> + <xsd:element name="members" type="typens:MyArrayOfTelephonyHuntingInfoMemberStructType"/> + <xsd:element name="strategy" type="xsd:string"/> + <xsd:element name="pattern" type="xsd:string"/> + <xsd:element name="onHoldTimer" type="xsd:int"/> + <xsd:element name="queueSize" type="xsd:int"/> + <xsd:element name="numberOfCalls" type="xsd:int"/> + <xsd:element name="noReplyTimer" type="xsd:int"/> + <xsd:element name="mainVoicemail" type="xsd:string"/> + <xsd:element name="toneOnHold" type="xsd:boolean"/> + <xsd:element name="toneRingback" type="xsd:boolean"/> + <xsd:element name="toneOnClosure" type="xsd:boolean"/> + <xsd:element name="anonymousCallRejection" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyHuntingInfoMemberStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="logged" type="xsd:boolean"/> + <xsd:element name="noReplyTimer" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyScreenStruct"> + <xsd:all> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="numberScreen" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyScreenBlackWhiteChoiceReturn"> + <xsd:all> + <xsd:element name="incomingScreenlist" type="xsd:string"/> + <xsd:element name="outgoingScreenlist" type="xsd:string"/> + <xsd:element name="outgoingCodeUnlock" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyHuntingGenericScreenStruct"> + <xsd:all> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="timeEnd" type="xsd:string"/> + <xsd:element name="timeStart" type="xsd:string"/> + <xsd:element name="dayType" type="xsd:string"/> + <xsd:element name="forwardPolicyIndex" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyHuntingGenericScreenOptionsStruct"> + <xsd:all> + <xsd:element name="callForward" type="xsd:string"/> + <xsd:element name="voicemail" type="xsd:string"/> + <xsd:element name="index" type="xsd:string"/> + <xsd:element name="timeout" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyPlugAndPhoneInfoReturn"> + <xsd:all> + <xsd:element name="brand" type="xsd:string"/> + <xsd:element name="protocol" type="xsd:string"/> + <xsd:element name="mac" type="xsd:string"/> + <xsd:element name="gfKeyCount" type="xsd:int"/> + <xsd:element name="pbLevel" type="xsd:int"/> + <xsd:element name="skin" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyAliasToLinePossibilityPriceStruct"> + <xsd:all> + <xsd:element name="offer" type="xsd:string"/> + <xsd:element name="price" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineLogsListStruct"> + <xsd:all> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="msg" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="telephonyLineLogsStruct"> + <xsd:all> + <xsd:element name="number" type="xsd:string"/> + <xsd:element name="list" type="typens:MyArrayOfTelephonyLineLogsListStructType"/> + <xsd:element name="totalRecords" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyBillingAccountStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyBillingAccountStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfStringType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyLineSwitchPossibilityPriceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineSwitchPossibilityPriceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyLineSwitchOldOfferStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineSwitchOldOfferStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfOrderFollowingUpStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:orderFollowingUpStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyReversmentsSummationStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyReversmentsSummationStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyReversmentsSummationNumbersStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyReversmentsSummationNumbersStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyBillStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyBillStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyVoicemailMailboxStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyVoicemailMailboxStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyPhonebookStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyPhonebookGroupStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookGroupStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyPhonebookContactStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookContactStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyPhonebookSharePeerStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPhonebookSharePeerStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyConferenceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyConferenceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfIntType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:int[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonySmsHistoryStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonySmsHistoryStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonySmsSenderStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonySmsSenderStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyAbbreviatedNumberStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyAbbreviatedNumberStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyDirectoryPJHeadingStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyDirectoryPJHeadingStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyDirectoryWayTypeStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyDirectoryWayTypeStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyFunctionKeyStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyFunctionKeyStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyFaxHistoryStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyFaxHistoryStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyPortabilityStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyPortabilityStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyScreenStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyScreenStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyHuntingGenericScreenStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyHuntingGenericScreenStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyHuntingGenericScreenOptionsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyHuntingGenericScreenOptionsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfBooleanType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:boolean[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyNumberZoneAndPrefixStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyNumberZoneAndPrefixStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyNumberCityForZoneStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyNumberCityForZoneStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyAliasToLinePossibilityPriceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyAliasToLinePossibilityPriceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyLineLogsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineLogsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyBillingAccountInfoChildrenStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyBillingAccountInfoChildrenStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyLineStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyReversmentsDetailsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyReversmentsDetailsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyBillingAccountSummaryLineStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyBillingAccountSummaryLineStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyCallStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyCallStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyRecipientStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyRecipientStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyFaxCampaignStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyFaxCampaignStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyHuntingInfoMemberStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyHuntingInfoMemberStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTelephonyLineLogsListStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:telephonyLineLogsListStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="nicInfoReturn"> + <xsd:all> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="firstname" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="spareEmail" type="xsd:string"/> + <xsd:element name="phone" type="xsd:string"/> + <xsd:element name="fax" type="xsd:string"/> + <xsd:element name="address" type="xsd:string"/> + <xsd:element name="city" type="xsd:string"/> + <xsd:element name="area" type="xsd:string"/> + <xsd:element name="zip" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="legalform" type="xsd:string"/> + <xsd:element name="organisation" type="xsd:string"/> + <xsd:element name="legalName" type="xsd:string"/> + <xsd:element name="legalNumber" type="xsd:string"/> + <xsd:element name="vat" type="xsd:string"/> + <xsd:element name="isOwner" type="xsd:boolean"/> + <xsd:element name="billingCountry" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="nicPublicInfoReturn"> + <xsd:all> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="firstname" type="xsd:string"/> + <xsd:element name="organisation" type="xsd:string"/> + <xsd:element name="city" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsGetIoStatsReturn"> + <xsd:all> + <xsd:element name="average" type="typens:rpsGetIOStatsDetailStruct"/> + <xsd:element name="current" type="typens:rpsGetIOStatsDetailStruct"/> + <xsd:element name="max" type="typens:rpsGetIOStatsDetailStruct"/> + <xsd:element name="image" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsGetIOStatsDetailStruct"> + <xsd:all> + <xsd:element name="serviceTime" type="typens:rpsGetIOStatsDetailRawStruct"/> + <xsd:element name="IoRequests" type="typens:rpsGetIOStatsDetailIoRequestsStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsGetIOStatsDetailIoRequestsStruct"> + <xsd:all> + <xsd:element name="read" type="typens:rpsGetIOStatsDetailRawStruct"/> + <xsd:element name="write" type="typens:rpsGetIOStatsDetailRawStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsGetIOStatsDetailRawStruct"> + <xsd:all> + <xsd:element name="raw" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsMigrationStatusReturn"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="progressStatus" type="xsd:int"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="logicalRpsName" type="xsd:string"/> + <xsd:element name="physicalRpsTo" type="xsd:string"/> + <xsd:element name="todoDate" type="xsd:string"/> + <xsd:element name="doingDate" type="xsd:string"/> + <xsd:element name="doneDate" type="xsd:string"/> + <xsd:element name="errorMessage" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsMigrationGetProgressStatusReturn"> + <xsd:all> + <xsd:element name="step1" type="typens:rpsMigrationGetProgressStatusStepStruct"/> + <xsd:element name="step2" type="typens:rpsMigrationGetProgressStatusStepStruct"/> + <xsd:element name="step3" type="typens:rpsMigrationGetProgressStatusStepStruct"/> + <xsd:element name="step4" type="typens:rpsMigrationGetProgressStatusStepStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rpsMigrationGetProgressStatusStepStruct"> + <xsd:all> + <xsd:element name="comment" type="xsd:string"/> + <xsd:element name="time" type="xsd:int"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="error" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="managedServicesPartitionStruct"> + <xsd:all> + <xsd:element name="idZfs" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="size" type="xsd:string"/> + <xsd:element name="used" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + <xsd:element name="accessList" type="typens:MyArrayOfManagedServicesAclStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="managedServicesAclStruct"> + <xsd:all> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="host" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfManagedServicesPartitionStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:managedServicesPartitionStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfManagedServicesAclStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:managedServicesAclStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="orderStruct"> + <xsd:all> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="orderPassword" type="xsd:string"/> + <xsd:element name="orderUrl" type="xsd:string"/> + <xsd:element name="isPaid" type="xsd:boolean"/> + <xsd:element name="paymentStatus" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedNetworkInterfaceStruct"> + <xsd:all> + <xsd:element name="reverse" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="ipv6" type="xsd:string"/> + <xsd:element name="mac" type="xsd:string"/> + <xsd:element name="switch" type="xsd:string"/> + <xsd:element name="icmp_drop" type="xsd:boolean"/> + <xsd:element name="failover" type="xsd:boolean"/> + <xsd:element name="routedTo" type="xsd:string"/> + <xsd:element name="ssl" type="xsd:boolean"/> + <xsd:element name="country" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedNetworkTrafficDetailsStruct"> + <xsd:all> + <xsd:element name="in" type="xsd:string"/> + <xsd:element name="out" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedNetworkTrafficStruct"> + <xsd:all> + <xsd:element name="lastUpdate" type="xsd:string"/> + <xsd:element name="currentQuota" type="typens:dedicatedNetworkTrafficDetailsStruct"/> + <xsd:element name="monthlyTraffic" type="typens:dedicatedNetworkTrafficDetailsStruct"/> + <xsd:element name="nextTrafficReset" type="xsd:string"/> + <xsd:element name="monthlyQuota" type="xsd:string"/> + <xsd:element name="nextQuotaReset" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedNetworkStruct"> + <xsd:all> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="priority" type="xsd:string"/> + <xsd:element name="connexion" type="xsd:string"/> + <xsd:element name="bandwidth" type="xsd:int"/> + <xsd:element name="bandwidthOvhToOvh" type="xsd:int"/> + <xsd:element name="bandwidthOvhToInternet" type="xsd:int"/> + <xsd:element name="bandwidthInternetToOvh" type="xsd:int"/> + <xsd:element name="over" type="xsd:boolean"/> + <xsd:element name="interfaces" type="typens:MyArrayOfDedicatedNetworkInterfaceStructType"/> + <xsd:element name="traffic" type="typens:dedicatedNetworkTrafficStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedCapabilityStruct"> + <xsd:all> + <xsd:element name="backupFtp" type="xsd:int"/> + <xsd:element name="backupFtpServer" type="xsd:string"/> + <xsd:element name="allocationBlockIp" type="xsd:int"/> + <xsd:element name="additionalIp" type="xsd:int"/> + <xsd:element name="rootDevice" type="xsd:string"/> + <xsd:element name="diskSize" type="xsd:int"/> + <xsd:element name="tuning" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedFreedomStruct"> + <xsd:all> + <xsd:element name="remaining" type="xsd:int"/> + <xsd:element name="assigned" type="xsd:int"/> + <xsd:element name="total" type="xsd:int"/> + <xsd:element name="preset" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedInfoReturn"> + <xsd:all> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="datacenter" type="xsd:string"/> + <xsd:element name="os" type="xsd:string"/> + <xsd:element name="isKimSufi" type="xsd:boolean"/> + <xsd:element name="isRPS" type="xsd:boolean"/> + <xsd:element name="isHG" type="xsd:boolean"/> + <xsd:element name="num" type="xsd:int"/> + <xsd:element name="rack" type="xsd:string"/> + <xsd:element name="countryBilling" type="xsd:string"/> + <xsd:element name="network" type="typens:dedicatedNetworkStruct"/> + <xsd:element name="capability" type="typens:dedicatedCapabilityStruct"/> + <xsd:element name="freeDom" type="typens:dedicatedFreedomStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedNetbootStruct"> + <xsd:all> + <xsd:element name="kernel" type="xsd:string"/> + <xsd:element name="cpufamily" type="xsd:string"/> + <xsd:element name="root" type="xsd:string"/> + <xsd:element name="smp" type="xsd:boolean"/> + <xsd:element name="ipv6" type="xsd:boolean"/> + <xsd:element name="grsec" type="xsd:boolean"/> + <xsd:element name="hz" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="state" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedReverseStruct"> + <xsd:all> + <xsd:element name="reverse" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="secondaryDNSStruct"> + <xsd:all> + <xsd:element name="zone" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="nameserver" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + <xsd:element name="creation" type="xsd:string"/> + <xsd:element name="deactivation" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="allSecondaryDNSStruct"> + <xsd:all> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="secondary" type="typens:MyArrayOfSecondaryDNSStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedMonitoringStatusReturn"> + <xsd:all> + <xsd:element name="disabled" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedMonitoringStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="destination" type="xsd:string"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="service" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedMonitoringServiceStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="port" type="xsd:int"/> + <xsd:element name="protocol" type="xsd:string"/> + <xsd:element name="period" type="xsd:string"/> + <xsd:element name="string" type="xsd:string"/> + <xsd:element name="url" type="xsd:string"/> + <xsd:element name="destination" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedGetServiceMonitoringItemStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="port" type="xsd:int"/> + <xsd:element name="protocol" type="xsd:string"/> + <xsd:element name="period" type="xsd:string"/> + <xsd:element name="string" type="xsd:string"/> + <xsd:element name="url" type="xsd:string"/> + <xsd:element name="sms" type="typens:MyArrayOfStringType"/> + <xsd:element name="email" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedMrtgInfoStruct"> + <xsd:all> + <xsd:element name="in" type="xsd:string"/> + <xsd:element name="out" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedMrtgInfoReturn"> + <xsd:all> + <xsd:element name="average" type="typens:dedicatedMrtgInfoStruct"/> + <xsd:element name="current" type="typens:dedicatedMrtgInfoStruct"/> + <xsd:element name="max" type="typens:dedicatedMrtgInfoStruct"/> + <xsd:element name="image" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedHardRebootStatusReturn"> + <xsd:all> + <xsd:element name="start" type="xsd:string"/> + <xsd:element name="end" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedOperationStruct"> + <xsd:all> + <xsd:element name="designation" type="xsd:string"/> + <xsd:element name="id_designation" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="level" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedFailoverStruct"> + <xsd:all> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="routedTo" type="xsd:string"/> + <xsd:element name="comment" type="xsd:string"/> + <xsd:element name="ssl" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedFailoverRipeStruct"> + <xsd:all> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="netname" type="xsd:string"/> + <xsd:element name="routedTo" type="xsd:string"/> + <xsd:element name="routingStatus" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="addressesNumber" type="xsd:int"/> + <xsd:element name="networkIp" type="xsd:string"/> + <xsd:element name="isExclude" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedFilterIrcRuleStruct"> + <xsd:all> + <xsd:element name="fromIp" type="xsd:string"/> + <xsd:element name="fromPort" type="xsd:string"/> + <xsd:element name="toIp" type="xsd:string"/> + <xsd:element name="toPort" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBackupFtpInfoReturn"> + <xsd:all> + <xsd:element name="ftpBackupName" type="xsd:string"/> + <xsd:element name="quotaUsed" type="xsd:int"/> + <xsd:element name="quotaSize" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBackupListStruct"> + <xsd:all> + <xsd:element name="backupId" type="xsd:int"/> + <xsd:element name="backupFeature" type="xsd:string"/> + <xsd:element name="enable" type="xsd:int"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="backupSize" type="xsd:string"/> + <xsd:element name="sshPort" type="xsd:int"/> + <xsd:element name="percentUsed" type="xsd:string"/> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="backupName" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="snapshotNumber" type="xsd:int"/> + <xsd:element name="superBackupName" type="xsd:string"/> + <xsd:element name="backupType" type="xsd:string"/> + <xsd:element name="src" type="typens:MyArrayOfStringType"/> + <xsd:element name="include" type="typens:MyArrayOfStringType"/> + <xsd:element name="exclude" type="typens:MyArrayOfStringType"/> + <xsd:element name="excludeHard" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBackupListReturn"> + <xsd:all> + <xsd:element name="backupId" type="xsd:int"/> + <xsd:element name="backupFeature" type="xsd:string"/> + <xsd:element name="enable" type="xsd:int"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="backupSize" type="xsd:string"/> + <xsd:element name="sshPort" type="xsd:int"/> + <xsd:element name="percentUsed" type="xsd:string"/> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="backupName" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="snapshotNumber" type="xsd:int"/> + <xsd:element name="superBackupName" type="xsd:string"/> + <xsd:element name="backupType" type="xsd:string"/> + <xsd:element name="src" type="typens:MyArrayOfStringType"/> + <xsd:element name="include" type="typens:MyArrayOfStringType"/> + <xsd:element name="exclude" type="typens:MyArrayOfStringType"/> + <xsd:element name="excludeHard" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBackupDateStruct"> + <xsd:all> + <xsd:element name="hour" type="xsd:string"/> + <xsd:element name="superBackupName" type="xsd:string"/> + <xsd:element name="day" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="backupCount" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBackupHistoStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="backupId" type="xsd:int"/> + <xsd:element name="dateTime" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="error" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBackupGetPlanningStruct"> + <xsd:all> + <xsd:element name="day" type="xsd:string"/> + <xsd:element name="planning" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedOrderStruct"> + <xsd:all> + <xsd:element name="orderPassword" type="xsd:string"/> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="orderUrl" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedCapabilitiesStruct"> + <xsd:all> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="originalClassicFailover" type="xsd:int"/> + <xsd:element name="originalFailoverRipe" type="xsd:int"/> + <xsd:element name="originalLoadBalancingSlot" type="xsd:int"/> + <xsd:element name="additionalClassicFailover" type="xsd:int"/> + <xsd:element name="additionalFailoverRipe" type="xsd:int"/> + <xsd:element name="usedClassicFailover" type="xsd:int"/> + <xsd:element name="usedFailoverRipe" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedIpLoadBalancingServerStruct"> + <xsd:all> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedIpLoadBalancingStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="ipLoadBalancing" type="xsd:string"/> + <xsd:element name="active" type="xsd:int"/> + <xsd:element name="inactive" type="xsd:int"/> + <xsd:element name="serverList" type="typens:MyArrayOfDedicatedIpLoadBalancingServerStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedRtmStatusReturn"> + <xsd:all> + <xsd:element name="cpu" type="typens:rtmCpuStruct"/> + <xsd:element name="hardDrives" type="typens:MyArrayOfRtmHddStructType"/> + <xsd:element name="systemInfo" type="typens:rtmSystemStruct"/> + <xsd:element name="memory" type="typens:rtmMemoryStruct"/> + <xsd:element name="motherboard" type="typens:rtmMotherboardStruct"/> + <xsd:element name="lspci" type="typens:MyArrayOfRtmLspciStructType"/> + <xsd:element name="portsUsed" type="typens:rtmPortsStruct"/> + <xsd:element name="raid" type="typens:rtmRaidStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmCpuStruct"> + <xsd:all> + <xsd:element name="frequency" type="xsd:string"/> + <xsd:element name="core" type="xsd:int"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="cache" type="xsd:string"/> + <xsd:element name="percentLoad" type="xsd:int"/> + <xsd:element name="loadAvg" type="typens:rtmCpuLoadAvgStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmCpuLoadAvgStruct"> + <xsd:all> + <xsd:element name="loadavg1" type="xsd:string"/> + <xsd:element name="loadavg5" type="xsd:string"/> + <xsd:element name="loadavg15" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmHddStruct"> + <xsd:all> + <xsd:element name="device" type="xsd:string"/> + <xsd:element name="model" type="xsd:string"/> + <xsd:element name="capacity" type="xsd:string"/> + <xsd:element name="partitions" type="typens:MyArrayOfRtmHddPartitionStructType"/> + <xsd:element name="smart" type="typens:rtmHddSmartStruct"/> + <xsd:element name="temperature" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmHddSmartStruct"> + <xsd:all> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="multizoneErrorRate" type="xsd:int"/> + <xsd:element name="currentPendingSector" type="xsd:int"/> + <xsd:element name="udmaCrcError" type="xsd:int"/> + <xsd:element name="offlineUncorrectable" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmHddPartitionStruct"> + <xsd:all> + <xsd:element name="device" type="xsd:string"/> + <xsd:element name="percentUsed" type="xsd:int"/> + <xsd:element name="percentInodes" type="xsd:int"/> + <xsd:element name="mountPoint" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmSystemStruct"> + <xsd:all> + <xsd:element name="last_update" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="uptime" type="xsd:int"/> + <xsd:element name="freshest_file_date" type="xsd:string"/> + <xsd:element name="os" type="typens:rtmSystemOsStruct"/> + <xsd:element name="rtm" type="typens:rtmSystemRtmStruct"/> + <xsd:element name="kernel" type="typens:rtmSystemKernelStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmSystemOsStruct"> + <xsd:all> + <xsd:element name="current" type="xsd:string"/> + <xsd:element name="os" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmSystemRtmStruct"> + <xsd:all> + <xsd:element name="status" type="xsd:boolean"/> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="current" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmSystemKernelStruct"> + <xsd:all> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="current" type="xsd:string"/> + <xsd:element name="current_26" type="xsd:string"/> + <xsd:element name="current_ipv6" type="xsd:string"/> + <xsd:element name="release" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmMemoryStruct"> + <xsd:all> + <xsd:element name="memusage" type="xsd:int"/> + <xsd:element name="swapusage" type="xsd:int"/> + <xsd:element name="modules" type="typens:MyArrayOfRtmMemoryModuleStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmMemoryModuleStruct"> + <xsd:all> + <xsd:element name="moduleName" type="xsd:string"/> + <xsd:element name="value" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmMotherboardStruct"> + <xsd:all> + <xsd:element name="manufacture" type="xsd:string"/> + <xsd:element name="modelName" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmLspciStruct"> + <xsd:all> + <xsd:element name="address" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmPortsStruct"> + <xsd:all> + <xsd:element name="listening" type="typens:MyArrayOfRtmPortsIfaceStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmPortsIfaceStruct"> + <xsd:all> + <xsd:element name="iface" type="xsd:string"/> + <xsd:element name="ports" type="typens:MyArrayOfRtmPortsIfaceDetailStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmPortsIfaceDetailStruct"> + <xsd:all> + <xsd:element name="port" type="xsd:string"/> + <xsd:element name="procname" type="xsd:string"/> + <xsd:element name="uid" type="xsd:int"/> + <xsd:element name="pid" type="xsd:int"/> + <xsd:element name="cmdline" type="xsd:string"/> + <xsd:element name="exe" type="xsd:string"/> + <xsd:element name="username" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmRaidStruct"> + <xsd:all> + <xsd:element name="units" type="typens:MyArrayOfRtmRaidPartitionStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmRaidPartitionStruct"> + <xsd:all> + <xsd:element name="partition" type="xsd:string"/> + <xsd:element name="volumes" type="typens:MyArrayOfRtmRaidPartitionVolumeStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmRaidPartitionVolumeStruct"> + <xsd:all> + <xsd:element name="volumeName" type="xsd:string"/> + <xsd:element name="flags" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="capacity" type="xsd:string"/> + <xsd:element name="phys" type="xsd:int"/> + <xsd:element name="members" type="typens:MyArrayOfRtmRaidPartitionVolumeMemberStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="rtmRaidPartitionVolumeMemberStruct"> + <xsd:all> + <xsd:element name="memberName" type="xsd:string"/> + <xsd:element name="modelName" type="xsd:string"/> + <xsd:element name="flags" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="capacity" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedRtmListBackdoorStruct"> + <xsd:all> + <xsd:element name="date_email" type="xsd:string"/> + <xsd:element name="date_start" type="xsd:string"/> + <xsd:element name="date_end" type="xsd:string"/> + <xsd:element name="date_today" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="uid" type="xsd:string"/> + <xsd:element name="pid" type="xsd:int"/> + <xsd:element name="do_not_mail" type="xsd:boolean"/> + <xsd:element name="active" type="xsd:boolean"/> + <xsd:element name="status" type="xsd:int"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="cmdline" type="xsd:string"/> + <xsd:element name="port" type="xsd:int"/> + <xsd:element name="ports" type="xsd:string"/> + <xsd:element name="procname" type="xsd:string"/> + <xsd:element name="exe" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedRipeGetIpStruct"> + <xsd:all> + <xsd:element name="exclusion" type="xsd:string"/> + <xsd:element name="routedTo" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="netname" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedIpVirtualMacAvailableReturn"> + <xsd:all> + <xsd:element name="ip" type="typens:MyArrayOfStringType"/> + <xsd:element name="mac" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedIpVirtualMacUsedStruct"> + <xsd:all> + <xsd:element name="virtualMachineName" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="ipAddress" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="mac" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBandwidthManagementReturn"> + <xsd:all> + <xsd:element name="serverName" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedServerPartioningDetailStruct"> + <xsd:all> + <xsd:element name="partSize" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="raidType" type="xsd:int"/> + <xsd:element name="mountPoint" type="xsd:string"/> + <xsd:element name="partType" type="xsd:string"/> + <xsd:element name="fileSystem" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedServerPartioningReturn"> + <xsd:all> + <xsd:element name="os" type="xsd:string"/> + <xsd:element name="langaue" type="xsd:string"/> + <xsd:element name="partioning" type="typens:MyArrayOfDedicatedServerPartioningDetailStructType"/> + <xsd:element name="warn" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedInstallConfigurationParametersStruct"> + <xsd:all> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="bitFormat" type="xsd:string"/> + <xsd:element name="softRaidDevices" type="xsd:int"/> + <xsd:element name="serverName" type="xsd:string"/> + <xsd:element name="softRaid" type="xsd:string"/> + <xsd:element name="distribution" type="xsd:string"/> + <xsd:element name="resinstallTodoId" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedInstallConfigurationStruct"> + <xsd:all> + <xsd:element name="pendingDate" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="stageId" type="xsd:int"/> + <xsd:element name="serverName" type="xsd:string"/> + <xsd:element name="parameters" type="typens:dedicatedInstallConfigurationParametersStruct"/> + <xsd:element name="todoDate" type="xsd:string"/> + <xsd:element name="doingDate" type="xsd:string"/> + <xsd:element name="error" type="xsd:string"/> + <xsd:element name="action" type="xsd:string"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="doneDate" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedAllowedDistributionBitFormatStruct"> + <xsd:all> + <xsd:element name="reference" type="xsd:string"/> + <xsd:element name="bits" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedAllowedDistributionLanguageStruct"> + <xsd:all> + <xsd:element name="code" type="xsd:string"/> + <xsd:element name="desc" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedAllowedDistributionDetailsStruct"> + <xsd:all> + <xsd:element name="language" type="typens:MyArrayOfDedicatedAllowedDistributionLanguageStructType"/> + <xsd:element name="languageList" type="typens:MyArrayOfStringType"/> + <xsd:element name="defaultLanguage" type="xsd:string"/> + <xsd:element name="bitFormat" type="typens:MyArrayOfDedicatedAllowedDistributionBitFormatStructType"/> + <xsd:element name="longName" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedAllowedDistributionMoreStruct"> + <xsd:all> + <xsd:element name="basicDistributions" type="typens:MyArrayOfDedicatedAllowedDistributionDetailsStructType"/> + <xsd:element name="readyToUse" type="typens:MyArrayOfDedicatedAllowedDistributionDetailsStructType"/> + <xsd:element name="type" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedAllowedDistributionReturn"> + <xsd:all> + <xsd:element name="distribution" type="typens:MyArrayOfDedicatedAllowedDistributionMoreStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBasicInstallProgressStruct"> + <xsd:all> + <xsd:element name="step" type="xsd:int"/> + <xsd:element name="comment" type="xsd:string"/> + <xsd:element name="time" type="xsd:string"/> + <xsd:element name="error" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="dedicatedBasicInstallProgressReturn"> + <xsd:all> + <xsd:element name="progress" type="typens:MyArrayOfDedicatedBasicInstallProgressStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedCapabilitiesStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedCapabilitiesStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedNetbootStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedNetbootStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedReverseStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedReverseStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSecondaryDNSStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:secondaryDNSStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfAllSecondaryDNSStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:allSecondaryDNSStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedMonitoringStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedMonitoringStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedMonitoringServiceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedMonitoringServiceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedOperationStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedOperationStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedFailoverStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedFailoverStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedFailoverRipeStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedFailoverRipeStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedRipeGetIpStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedRipeGetIpStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedFilterIrcRuleStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedFilterIrcRuleStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedBackupListStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedBackupListStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedBackupDateStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedBackupDateStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedBackupHistoStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedBackupHistoStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedBackupGetPlanningStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedBackupGetPlanningStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedIpLoadBalancingStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedIpLoadBalancingStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedRtmListBackdoorStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedRtmListBackdoorStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedIpVirtualMacUsedStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedIpVirtualMacUsedStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedNetworkInterfaceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedNetworkInterfaceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedIpLoadBalancingServerStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedIpLoadBalancingServerStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmHddStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmHddStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmLspciStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmLspciStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmHddPartitionStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmHddPartitionStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmMemoryModuleStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmMemoryModuleStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmPortsIfaceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmPortsIfaceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmPortsIfaceDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmPortsIfaceDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmRaidPartitionStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmRaidPartitionStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmRaidPartitionVolumeStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmRaidPartitionVolumeStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfRtmRaidPartitionVolumeMemberStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:rtmRaidPartitionVolumeMemberStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedServerPartioningDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedServerPartioningDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedAllowedDistributionLanguageStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedAllowedDistributionLanguageStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedAllowedDistributionBitFormatStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedAllowedDistributionBitFormatStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedAllowedDistributionDetailsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedAllowedDistributionDetailsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedAllowedDistributionMoreStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedAllowedDistributionMoreStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDedicatedBasicInstallProgressStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:dedicatedBasicInstallProgressStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="ticketStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="creationDate" type="xsd:string"/> + <xsd:element name="requestStatus" type="xsd:string"/> + <xsd:element name="subject" type="xsd:string"/> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="level" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="componentType" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="fullTicketReturn"> + <xsd:all> + <xsd:element name="ticketId" type="xsd:int"/> + <xsd:element name="requestStatus" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="subject" type="xsd:string"/> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="phone" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="level" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="orderId" type="xsd:int"/> + <xsd:element name="componentType" type="xsd:string"/> + <xsd:element name="messages" type="typens:MyArrayOfMessageDetailStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="messageDetailStruct"> + <xsd:all> + <xsd:element name="to" type="xsd:string"/> + <xsd:element name="from" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="message" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="ticketContactStruct"> + <xsd:all> + <xsd:element name="componentType" type="xsd:string"/> + <xsd:element name="domains" type="typens:MyArrayOfTicketContactDomainStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="ticketContactDomainStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + <xsd:element name="reverse" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="supportCapabilitiesReturn"> + <xsd:all> + <xsd:element name="hasSupportPlus" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTicketStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:ticketStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTicketContactStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:ticketContactStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfMessageDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:messageDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfTicketContactDomainStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:ticketContactDomainStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="sqlpriveStruct"> + <xsd:all> + <xsd:element name="server" type="xsd:string"/> + <xsd:element name="expiration" type="xsd:string"/> + <xsd:element name="memory" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="version" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="sqlpriveMysqlProcessStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="user" type="xsd:string"/> + <xsd:element name="host" type="xsd:string"/> + <xsd:element name="database" type="xsd:string"/> + <xsd:element name="query" type="xsd:string"/> + <xsd:element name="time" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + <xsd:element name="request" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="sqlpriveMysqlDatabasePrivilegeStruct"> + <xsd:all> + <xsd:element name="databaseName" type="xsd:string"/> + <xsd:element name="databaseUsers" type="typens:MyArrayOfSqlpriveMysqlDatabaseUserPrivilegeStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="sqlpriveMysqlDatabaseUserPrivilegeStruct"> + <xsd:all> + <xsd:element name="userName" type="xsd:string"/> + <xsd:element name="userPriv" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="sqlpriveGetPossibleDumpStruct"> + <xsd:all> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="file" type="typens:MyArrayOfStringType"/> + <xsd:element name="comment" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="sqlpriveAlertInfotReturn"> + <xsd:all> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="alert" type="typens:MyArrayOfStringType"/> + <xsd:element name="smsNumber" type="xsd:string"/> + <xsd:element name="smsAccount" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="sqlpriveCronStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="active" type="xsd:string"/> + <xsd:element name="days" type="xsd:string"/> + <xsd:element name="hours" type="xsd:string"/> + <xsd:element name="operation" type="xsd:string"/> + <xsd:element name="endDate" type="xsd:string"/> + <xsd:element name="comment" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSqlpriveStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:sqlpriveStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSqlpriveMysqlDatabasePrivilegeStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:sqlpriveMysqlDatabasePrivilegeStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSqlpriveGetPossibleDumpStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:sqlpriveGetPossibleDumpStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSqlpriveMysqlProcessStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:sqlpriveMysqlProcessStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSqlpriveCronStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:sqlpriveCronStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSqlpriveMysqlDatabaseUserPrivilegeStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:sqlpriveMysqlDatabaseUserPrivilegeStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="resellerAccountMovementStruct"> + <xsd:all> + <xsd:element name="amount" type="xsd:int"/> + <xsd:element name="balance" type="xsd:int"/> + <xsd:element name="previousBalance" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="operation" type="xsd:string"/> + <xsd:element name="order" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="resellerAccountHistoryReturn"> + <xsd:all> + <xsd:element name="month" type="xsd:int"/> + <xsd:element name="year" type="xsd:int"/> + <xsd:element name="movements" type="typens:MyArrayOfResellerAccountMovementStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="resellerAccountSummaryReturn"> + <xsd:all> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="account" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="balance" type="xsd:int"/> + <xsd:element name="alertThreshold" type="xsd:int"/> + <xsd:element name="limitThreshold" type="xsd:int"/> + <xsd:element name="openDate" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="closeDate" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfResellerAccountMovementStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:resellerAccountMovementStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="InfrastructureIpStruct"> + <xsd:all> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="netname" type="xsd:string"/> + <xsd:element name="routedTo" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="addressesNumber" type="xsd:int"/> + <xsd:element name="networkIp" type="xsd:string"/> + <xsd:element name="ipAddressFromBlock" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfInfrastructureIpStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:InfrastructureIpStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="accountMovementStruct"> + <xsd:all> + <xsd:element name="amount" type="xsd:int"/> + <xsd:element name="balance" type="xsd:int"/> + <xsd:element name="previousBalance" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="operation" type="xsd:string"/> + <xsd:element name="order" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="accountHistoryReturn"> + <xsd:all> + <xsd:element name="month" type="xsd:int"/> + <xsd:element name="year" type="xsd:int"/> + <xsd:element name="movements" type="typens:MyArrayOfAccountMovementStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="accountSummaryReturn"> + <xsd:all> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="account" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="balance" type="xsd:int"/> + <xsd:element name="alertThreshold" type="xsd:int"/> + <xsd:element name="limitThreshold" type="xsd:int"/> + <xsd:element name="openDate" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="closeDate" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfAccountMovementStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:accountMovementStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="hostingChangeMainDomainReturn"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="password" type="xsd:string"/> + <xsd:element name="totalPriceWithVat" type="xsd:float"/> + <xsd:element name="totalPrice" type="xsd:float"/> + <xsd:element name="url" type="xsd:string"/> + <xsd:element name="vatRate" type="xsd:float"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="hostingGetCapabilitiesReturn"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="webspace" type="xsd:int"/> + <xsd:element name="traffic" type="xsd:string"/> + <xsd:element name="databases" type="xsd:int"/> + <xsd:element name="databaseSpace" type="xsd:int"/> + <xsd:element name="multidomains" type="xsd:int"/> + <xsd:element name="subdomains" type="xsd:int"/> + <xsd:element name="streaming" type="xsd:int"/> + <xsd:element name="multiftp" type="xsd:int"/> + <xsd:element name="anonymousftp" type="xsd:int"/> + <xsd:element name="freeDomPerYear" type="xsd:int"/> + <xsd:element name="freeDomMax" type="xsd:int"/> + <xsd:element name="sharedSSL" type="xsd:boolean"/> + <xsd:element name="ssh" type="xsd:boolean"/> + <xsd:element name="geoloc" type="xsd:boolean"/> + <xsd:element name="cgi" type="xsd:boolean"/> + <xsd:element name="crontab" type="xsd:boolean"/> + <xsd:element name="sip" type="xsd:boolean"/> + <xsd:element name="vpn" type="xsd:boolean"/> + <xsd:element name="jabber" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="hostingListStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="hosting" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="hostingSummaryReturn"> + <xsd:all> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="webspace" type="xsd:string"/> + <xsd:element name="maxWebspace" type="xsd:string"/> + <xsd:element name="subdomains" type="xsd:string"/> + <xsd:element name="multidomains" type="xsd:string"/> + <xsd:element name="multiftps" type="xsd:string"/> + <xsd:element name="anonymousftp" type="xsd:string"/> + <xsd:element name="databases" type="xsd:string"/> + <xsd:element name="freedom_remaining" type="xsd:string"/> + <xsd:element name="freedom_assigned" type="xsd:string"/> + <xsd:element name="freedom_total" type="xsd:string"/> + <xsd:element name="highCapacity" type="xsd:boolean"/> + <xsd:element name="highSecurity" type="xsd:boolean"/> + <xsd:element name="state" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="ftpInfoReturn"> + <xsd:all> + <xsd:element name="login" type="xsd:string"/> + <xsd:element name="quota" type="xsd:int"/> + <xsd:element name="maxQuota" type="xsd:int"/> + <xsd:element name="url" type="xsd:string"/> + <xsd:element name="isTodo" type="xsd:string"/> + <xsd:element name="highCapacity" type="xsd:boolean"/> + <xsd:element name="highSecurity" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="databaseStruct"> + <xsd:all> + <xsd:element name="db" type="xsd:string"/> + <xsd:element name="quota" type="xsd:float"/> + <xsd:element name="limit" type="xsd:float"/> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="server" type="xsd:string"/> + <xsd:element name="todo" type="xsd:boolean"/> + <xsd:element name="quota_warning" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="anonymousFtpInfoReturn"> + <xsd:all> + <xsd:element name="login" type="xsd:string"/> + <xsd:element name="url" type="xsd:string"/> + <xsd:element name="max" type="xsd:int"/> + <xsd:element name="quota" type="xsd:int"/> + <xsd:element name="active" type="xsd:boolean"/> + <xsd:element name="todo" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="subDomainStruct"> + <xsd:all> + <xsd:element name="subdomain" type="xsd:string"/> + <xsd:element name="target" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="multiDomainStruct"> + <xsd:all> + <xsd:element name="multidomain" type="xsd:string"/> + <xsd:element name="target" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="multiFtpStruct"> + <xsd:all> + <xsd:element name="subdir" type="xsd:string"/> + <xsd:element name="login" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="overquotaInfoDayStruct"> + <xsd:all> + <xsd:element name="day" type="xsd:int"/> + <xsd:element name="value" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="overquotaInfoStruct"> + <xsd:all> + <xsd:element name="month" type="xsd:string"/> + <xsd:element name="traffic" type="xsd:int"/> + <xsd:element name="hits" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="overquotaInfoReturn"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="quota" type="typens:MyArrayOfOverquotaInfoStructType"/> + <xsd:element name="capacities" type="xsd:int"/> + <xsd:element name="order" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="logsAccessStruct"> + <xsd:all> + <xsd:element name="user" type="xsd:string"/> + <xsd:element name="lastUpdate" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="automatedMailGetStateReturn"> + <xsd:all> + <xsd:element name="bounce" type="xsd:int"/> + <xsd:element name="sent" type="xsd:int"/> + <xsd:element name="return" type="xsd:string"/> + <xsd:element name="state" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="automatedMailGetVolumeHistoryStruct"> + <xsd:all> + <xsd:element name="volume" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="automatedMailGetErrorsStruct"> + <xsd:all> + <xsd:element name="to" type="xsd:string"/> + <xsd:element name="total" type="xsd:int"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="message" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="cmsAvailableStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="language" type="typens:MyArrayOfStringType"/> + <xsd:element name="category" type="xsd:string"/> + <xsd:element name="dbPrefix" type="xsd:string"/> + <xsd:element name="enable" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="cmsStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="language" type="xsd:string"/> + <xsd:element name="url" type="xsd:string"/> + <xsd:element name="path" type="xsd:string"/> + <xsd:element name="adminLogin" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="crontabStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="path" type="xsd:string"/> + <xsd:element name="desc" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="enabled" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="crontabInfoReturn"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="path" type="xsd:string"/> + <xsd:element name="desc" type="xsd:string"/> + <xsd:element name="email" type="xsd:string"/> + <xsd:element name="enabled" type="xsd:boolean"/> + <xsd:element name="programLanguage" type="xsd:string"/> + <xsd:element name="weekDay" type="xsd:string"/> + <xsd:element name="days" type="typens:MyArrayOfIntType"/> + <xsd:element name="hours" type="typens:MyArrayOfIntType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfHostingListStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:hostingListStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDatabaseStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:databaseStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfSubDomainStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:subDomainStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfMultiDomainStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:multiDomainStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfMultiFtpStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:multiFtpStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfLogsAccessStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:logsAccessStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfCrontabStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:crontabStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfAutomatedMailGetErrorsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:automatedMailGetErrorsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfAutomatedMailGetVolumeHistoryStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:automatedMailGetVolumeHistoryStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfCmsAvailableStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:cmsAvailableStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfCmsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:cmsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfOverquotaInfoStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:overquotaInfoStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="serviceStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="component" type="xsd:string"/> + <xsd:element name="componentSubType" type="xsd:string"/> + <xsd:element name="creation" type="xsd:string"/> + <xsd:element name="modification" type="xsd:string"/> + <xsd:element name="expiry" type="xsd:string"/> + <xsd:element name="nicowner" type="xsd:string"/> + <xsd:element name="nicadmin" type="xsd:string"/> + <xsd:element name="nictech" type="xsd:string"/> + <xsd:element name="nicbilling" type="xsd:string"/> + <xsd:element name="nicreseller" type="xsd:string"/> + <xsd:element name="autorenew" type="xsd:string"/> + <xsd:element name="reverse" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="serviceLightStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="expiry" type="xsd:string"/> + <xsd:element name="nicadmin" type="xsd:string"/> + <xsd:element name="nictech" type="xsd:string"/> + <xsd:element name="nicbilling" type="xsd:string"/> + <xsd:element name="autorenew" type="xsd:string"/> + <xsd:element name="reverse" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="serviceListPaginatedStruct"> + <xsd:all> + <xsd:element name="total" type="xsd:int"/> + <xsd:element name="results" type="typens:MyArrayOfServiceLightStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="freedomStruct"> + <xsd:all> + <xsd:element name="referenceReferer" type="xsd:string"/> + <xsd:element name="creationDate" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="freeDom" type="xsd:string"/> + <xsd:element name="useDate" type="xsd:string"/> + <xsd:element name="domainReferer" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="serviceGroupStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="comment" type="xsd:string"/> + <xsd:element name="details" type="typens:MyArrayOfServiceStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfServiceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:serviceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfFreedomStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:freedomStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfServiceGroupStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:serviceGroupStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfServiceLightStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:serviceLightStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="domainInfoReturn"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="creation" type="xsd:string"/> + <xsd:element name="modification" type="xsd:string"/> + <xsd:element name="expiration" type="xsd:string"/> + <xsd:element name="nicowner" type="xsd:string"/> + <xsd:element name="nicadmin" type="xsd:string"/> + <xsd:element name="nictech" type="xsd:string"/> + <xsd:element name="nicbilling" type="xsd:string"/> + <xsd:element name="authinfo" type="xsd:string"/> + <xsd:element name="dns" type="typens:MyArrayOfNsStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="domainCheckStruct"> + <xsd:all> + <xsd:element name="predicate" type="xsd:string"/> + <xsd:element name="value" type="xsd:boolean"/> + <xsd:element name="reason" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="domainCapabilitiesReturn"> + <xsd:all> + <xsd:element name="needAuthInfo" type="xsd:boolean"/> + <xsd:element name="needZoneCheck" type="xsd:boolean"/> + <xsd:element name="owo" type="xsd:boolean"/> + <xsd:element name="hostIPv4" type="xsd:boolean"/> + <xsd:element name="hostIPv6" type="xsd:boolean"/> + <xsd:element name="hostmultiIp" type="xsd:boolean"/> + <xsd:element name="ownerUpdateAllowed" type="xsd:boolean"/> + <xsd:element name="ownerTradeAllowed" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="nsStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="ip" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="zoneStruct"> + <xsd:all> + <xsd:element name="subdomain" type="xsd:string"/> + <xsd:element name="fieldtype" type="xsd:string"/> + <xsd:element name="target" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="ortStruct"> + <xsd:all> + <xsd:element name="subdomain" type="xsd:string"/> + <xsd:element name="target" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="domainHostInfoReturn"> + <xsd:all> + <xsd:element name="hostname" type="xsd:string"/> + <xsd:element name="ipv4" type="xsd:string"/> + <xsd:element name="ipv6" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="operationStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="function" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="internalStatus" type="xsd:string"/> + <xsd:element name="comment" type="xsd:string"/> + <xsd:element name="users" type="typens:MyArrayOfStringType"/> + <xsd:element name="retry" type="xsd:int"/> + <xsd:element name="todoDate" type="xsd:string"/> + <xsd:element name="lastUpdate" type="xsd:string"/> + <xsd:element name="doneDate" type="xsd:string"/> + <xsd:element name="canCancel" type="xsd:boolean"/> + <xsd:element name="canCorrect" type="xsd:boolean"/> + <xsd:element name="canRelaunch" type="xsd:boolean"/> + <xsd:element name="restartStep" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="domainWhoisObfuscatorStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="email" type="xsd:boolean"/> + <xsd:element name="address" type="xsd:boolean"/> + <xsd:element name="phone" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDomainCheckStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:domainCheckStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfNsStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:nsStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfZoneStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:zoneStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfOrtStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:ortStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfOperationStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:operationStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfDomainWhoisObfuscatorStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:domainWhoisObfuscatorStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="emailRedirectionStruct"> + <xsd:all> + <xsd:element name="target" type="xsd:string"/> + <xsd:element name="local" type="xsd:string"/> + <xsd:element name="subdomain" type="xsd:string"/> + <xsd:element name="dnsRedirection" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="popStruct"> + <xsd:all> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="size" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="popGetQuotaReturn"> + <xsd:all> + <xsd:element name="emailCount" type="xsd:int"/> + <xsd:element name="quota" type="xsd:int"/> + <xsd:element name="maxQuota" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="mailingListStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="ml" type="xsd:string"/> + <xsd:element name="owner" type="xsd:string"/> + <xsd:element name="nbSubscribers" type="xsd:int"/> + <xsd:element name="message_moderation" type="xsd:boolean"/> + <xsd:element name="users_post_only" type="xsd:boolean"/> + <xsd:element name="subscription_moderation" type="xsd:boolean"/> + <xsd:element name="replyto" type="xsd:string"/> + <xsd:element name="lang" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="mailingListFullInfoReturn"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="ml" type="xsd:string"/> + <xsd:element name="owner" type="xsd:string"/> + <xsd:element name="nbSubscribers" type="xsd:int"/> + <xsd:element name="message_moderation" type="xsd:boolean"/> + <xsd:element name="users_post_only" type="xsd:boolean"/> + <xsd:element name="subscription_moderation" type="xsd:boolean"/> + <xsd:element name="replyto" type="xsd:string"/> + <xsd:element name="lang" type="xsd:string"/> + <xsd:element name="moderators" type="typens:MyArrayOfStringType"/> + <xsd:element name="subscribers" type="typens:MyArrayOfStringType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="responderEmailStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="responder" type="xsd:string"/> + <xsd:element name="content" type="xsd:string"/> + <xsd:element name="hasPop" type="xsd:boolean"/> + <xsd:element name="hasAlias" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="catchAllGetReturn"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="destination" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="emailDomainSummaryReturn"> + <xsd:all> + <xsd:element name="masterNic" type="xsd:string"/> + <xsd:element name="nbpops" type="xsd:int"/> + <xsd:element name="nbforwards" type="xsd:int"/> + <xsd:element name="nbaliases" type="xsd:int"/> + <xsd:element name="nbresponders" type="xsd:int"/> + <xsd:element name="nbmls" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="emailGetCapabilitiesReturn"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="nbpops" type="xsd:int"/> + <xsd:element name="nbforwards" type="xsd:int"/> + <xsd:element name="nbaliases" type="xsd:int"/> + <xsd:element name="nbresponders" type="xsd:int"/> + <xsd:element name="nbmls" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="emailFilterStruct"> + <xsd:all> + <xsd:element name="filter" type="xsd:string"/> + <xsd:element name="action" type="xsd:string"/> + <xsd:element name="action_param" type="xsd:string"/> + <xsd:element name="active" type="xsd:boolean"/> + <xsd:element name="priority" type="xsd:string"/> + <xsd:element name="nbRules" type="xsd:int"/> + <xsd:element name="rules" type="typens:MyArrayOfEmailFilterRuleStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="emailFilterRuleStruct"> + <xsd:all> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="header" type="xsd:string"/> + <xsd:element name="rule" type="xsd:string"/> + <xsd:element name="rule_param" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfEmailRedirectionStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:emailRedirectionStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfPopStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:popStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfMailingListStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:mailingListStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfResponderEmailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:responderEmailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfEmailFilterStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:emailFilterStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfEmailFilterRuleStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:emailFilterRuleStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="globalAccessStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="domain" type="xsd:boolean"/> + <xsd:element name="hosting" type="xsd:boolean"/> + <xsd:element name="email" type="xsd:boolean"/> + <xsd:element name="pop" type="xsd:boolean"/> + <xsd:element name="dedicated" type="xsd:boolean"/> + <xsd:element name="reverse" type="xsd:string"/> + <xsd:element name="alldom" type="xsd:boolean"/> + <xsd:element name="ssl" type="xsd:boolean"/> + <xsd:element name="rps" type="xsd:boolean"/> + <xsd:element name="rpsOrphan" type="xsd:boolean"/> + <xsd:element name="vs" type="xsd:boolean"/> + <xsd:element name="voip" type="xsd:boolean"/> + <xsd:element name="housing" type="xsd:boolean"/> + <xsd:element name="sqlpriv" type="xsd:boolean"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="momVersionReturn"> + <xsd:all> + <xsd:element name="version" type="xsd:string"/> + <xsd:element name="build" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfGlobalAccessStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:globalAccessStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="prepaidOperationStruct"> + <xsd:all> + <xsd:element name="balance_forward" type="xsd:float"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="account_name" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="amount" type="xsd:float"/> + <xsd:element name="balance" type="xsd:float"/> + <xsd:element name="order" type="xsd:int"/> + <xsd:element name="id" type="xsd:int"/> + <xsd:element name="operation" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="prepaidGetHistoryReturn"> + <xsd:all> + <xsd:element name="page" type="xsd:int"/> + <xsd:element name="total" type="xsd:int"/> + <xsd:element name="start" type="xsd:int"/> + <xsd:element name="end" type="xsd:int"/> + <xsd:element name="operations" type="typens:MyArrayOfPrepaidOperationStructType"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="prepaidGetSummaryReturn"> + <xsd:all> + <xsd:element name="contract" type="xsd:string"/> + <xsd:element name="threshold" type="xsd:int"/> + <xsd:element name="balance" type="xsd:float"/> + <xsd:element name="md5" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfPrepaidOperationStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:prepaidOperationStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="billingInvoiceDetailStruct"> + <xsd:all> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="reference" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="billingInvoiceStruct"> + <xsd:all> + <xsd:element name="vat" type="xsd:string"/> + <xsd:element name="totalPrice" type="xsd:string"/> + <xsd:element name="totalPriceWithVat" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="nic" type="xsd:string"/> + <xsd:element name="billnum" type="xsd:string"/> + <xsd:element name="details" type="typens:MyArrayOfBillingInvoiceDetailStructType"/> + <xsd:element name="domains" type="typens:MyArrayOfStringType"/> + <xsd:element name="billingCountry" type="xsd:string"/> + <xsd:element name="ordernum" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="billingInvoiceInfoDetailStruct"> + <xsd:all> + <xsd:element name="quantity" type="xsd:int"/> + <xsd:element name="service" type="xsd:string"/> + <xsd:element name="description" type="xsd:string"/> + <xsd:element name="end" type="xsd:string"/> + <xsd:element name="domain" type="xsd:string"/> + <xsd:element name="baseprice" type="xsd:float"/> + <xsd:element name="totalprice" type="xsd:float"/> + <xsd:element name="start" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="billingInvoiceInfoPayementStruct"> + <xsd:all> + <xsd:element name="finaldate" type="xsd:string"/> + <xsd:element name="deposit_date" type="xsd:string"/> + <xsd:element name="status" type="xsd:string"/> + <xsd:element name="customerid" type="xsd:string"/> + <xsd:element name="paymentmean" type="xsd:string"/> + <xsd:element name="paymentdate" type="xsd:string"/> + <xsd:element name="orderid" type="xsd:int"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="billingGetReferencesToExpiredStruct"> + <xsd:all> + <xsd:element name="name" type="xsd:string"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="expired" type="xsd:string"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="billingInvoiceInfoReturn"> + <xsd:all> + <xsd:element name="billnum" type="xsd:string"/> + <xsd:element name="date" type="xsd:string"/> + <xsd:element name="nicbilling" type="xsd:string"/> + <xsd:element name="baseprice" type="xsd:string"/> + <xsd:element name="finalprice" type="xsd:float"/> + <xsd:element name="password" type="xsd:string"/> + <xsd:element name="order" type="xsd:string"/> + <xsd:element name="nicorder" type="xsd:string"/> + <xsd:element name="country" type="xsd:string"/> + <xsd:element name="taxrate" type="xsd:float"/> + <xsd:element name="tax" type="xsd:float"/> + <xsd:element name="type" type="xsd:string"/> + <xsd:element name="details" type="typens:MyArrayOfBillingInvoiceInfoDetailStructType"/> + <xsd:element name="payment" type="typens:billingInvoiceInfoPayementStruct"/> + </xsd:all> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfBillingInvoiceStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:billingInvoiceStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfBillingGetReferencesToExpiredStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:billingGetReferencesToExpiredStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfBillingInvoiceDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:billingInvoiceDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="MyArrayOfBillingInvoiceInfoDetailStructType"> + <xsd:complexContent> + <xsd:restriction base="soapenc:Array"> + <xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:billingInvoiceInfoDetailStruct[]"/> + </xsd:restriction> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="FailureType"> + <xsd:all> + <xsd:element name="faultcode" type="xsd:int" /> + <xsd:element name="faultstring" type="xsd:string" /> + <xsd:element name="faultdetail" type="xsd:string" /> + </xsd:all> + </xsd:complexType> + + </xsd:schema> + </wsdl:types> + + <wsdl:message name="telephonyConferenceDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceDelResponse" /> + + <wsdl:message name="mailingListModeratorDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListModeratorDelResponse" /> + + <wsdl:message name="telephonyNumberInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberInfoResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlRestartRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlRestartResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="logoutRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="logoutResponse" /> + + <wsdl:message name="multiFtpChangeDirectoryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="directory" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiFtpChangeDirectoryResponse" /> + + <wsdl:message name="sqlpriveMysqlVersionRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="version" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlVersionResponse" /> + + <wsdl:message name="dedicatedReverseDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedReverseDelResponse" /> + + <wsdl:message name="dedicatedDelServiceMonitoringAlertRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="port" type="xsd:int" /> + <wsdl:part name="itemId" type="xsd:int" /> + <wsdl:part name="media" type="xsd:string" /> + <wsdl:part name="destination" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedDelServiceMonitoringAlertResponse" /> + + <wsdl:message name="telephonyVoicemailOptionsListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailOptionsListResponse"> + <wsdl:part name="return" type="typens:telephonyVoicemailOptionsListReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookSharePeerListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookSharePeerListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookSharePeerStructType" /> + </wsdl:message> + + <wsdl:message name="serviceGroupGetAllInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupGetAllInfoResponse"> + <wsdl:part name="return" type="typens:MyArrayOfServiceGroupStructType" /> + </wsdl:message> + + <wsdl:message name="redirectedEmailAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="redirected" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="localCopy" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="redirectedEmailAddResponse" /> + + <wsdl:message name="nicModifyInfosRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="legalform" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="fax" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="spareEmail" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + <wsdl:part name="area" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicModifyInfosResponse" /> + + <wsdl:message name="telephonyRedirectModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="destination" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyRedirectModifyResponse" /> + + <wsdl:message name="sqlpriveMysqlDatabaseImportFromFileRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="database" type="xsd:string" /> + <wsdl:part name="filename" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlDatabaseImportFromFileResponse" /> + + <wsdl:message name="telephonyNumberModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="newType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberModifyResponse" /> + + <wsdl:message name="dedicatedAddServiceMonitoringAlertSMSRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="port" type="xsd:int" /> + <wsdl:part name="itemId" type="xsd:int" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="phoneNumberTo" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedAddServiceMonitoringAlertSMSResponse" /> + + <wsdl:message name="automatedMailGetVolumeHistoryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetVolumeHistoryResponse"> + <wsdl:part name="return" type="typens:MyArrayOfAutomatedMailGetVolumeHistoryStructType" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetTodoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetTodoResponse" /> + + <wsdl:message name="dedicatedIpLoadBalancingListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedIpLoadBalancingStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupReinstallConfigurationRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupReinstallConfigurationResponse" /> + + <wsdl:message name="dedicatedBackupGetHistoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupGetHistoResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedBackupHistoStructType" /> + </wsdl:message> + + <wsdl:message name="domainHostUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="host" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainHostUpdateResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="snapshot" type="xsd:int" /> + <wsdl:part name="sshPort" type="xsd:int" /> + <wsdl:part name="status" type="xsd:int" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="src" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupUpdateResponse" /> + + <wsdl:message name="serviceGroupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfServiceGroupStructType" /> + </wsdl:message> + + <wsdl:message name="databaseChangePasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="db" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="databaseChangePasswordResponse" /> + + <wsdl:message name="billingInvoiceListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="billingInvoiceListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfBillingInvoiceStructType" /> + </wsdl:message> + + <wsdl:message name="globalAccessByNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="globalAccessByNicResponse"> + <wsdl:part name="return" type="typens:MyArrayOfGlobalAccessStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootGetRescueEmailRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootGetRescueEmailResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ticketListIncidentsByDomainRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ticketListIncidentsByDomainResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTicketStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsMultiSendRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="numberFrom" type="xsd:string" /> + <wsdl:part name="numberTo" type="typens:MyArrayOfStringType" /> + <wsdl:part name="message" type="xsd:string" /> + <wsdl:part name="smsValidity" type="xsd:int" /> + <wsdl:part name="smsClass" type="xsd:int" /> + <wsdl:part name="smsDeferred" type="xsd:int" /> + <wsdl:part name="smsPriority" type="xsd:int" /> + <wsdl:part name="smsCoding" type="xsd:int" /> + <wsdl:part name="tag" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsMultiSendResponse"> + <wsdl:part name="return" type="typens:MyArrayOfIntType" /> + </wsdl:message> + + <wsdl:message name="serviceListPaginatedRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="start" type="xsd:int" /> + <wsdl:part name="limit" type="xsd:int" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceListPaginatedResponse"> + <wsdl:part name="return" type="typens:serviceListPaginatedStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedRtmListBackdoorRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedRtmListBackdoorResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedRtmListBackdoorStructType" /> + </wsdl:message> + + <wsdl:message name="zoneEntryListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="zoneEntryListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfZoneStructType" /> + </wsdl:message> + + <wsdl:message name="dnsDefaultInstallCustomRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="hostingtype" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="mxtype" type="xsd:string" /> + <wsdl:part name="mx" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="minimized" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="dnsDefaultInstallCustomResponse" /> + + <wsdl:message name="telephonyFaxHistoryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="state" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxHistoryResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyFaxHistoryStructType" /> + </wsdl:message> + + <wsdl:message name="multiFtpChangePasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiFtpChangePasswordResponse" /> + + <wsdl:message name="sqlpriveMysqlUserListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlUserListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="domainUnlockRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainUnlockResponse" /> + + <wsdl:message name="telephonyRestrictionListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyRestrictionListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorSetAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorSetAllResponse" /> + + <wsdl:message name="popDetachMasterNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popDetachMasterNicResponse" /> + + <wsdl:message name="telephonyBillListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyBillStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberCustomListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="prefix" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberCustomListResponse"> + <wsdl:part name="return" type="typens:telephonySpecialNumberCustomListReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyPlugAndPhoneSkinModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="skin" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPlugAndPhoneSkinModifyResponse" /> + + <wsdl:message name="domainListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxOptionsModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="fromName" type="xsd:string" /> + <wsdl:part name="fromEmail" type="xsd:string" /> + <wsdl:part name="faxQuality" type="xsd:string" /> + <wsdl:part name="faxTagLine" type="xsd:string" /> + <wsdl:part name="faxMaxCall" type="xsd:int" /> + <wsdl:part name="receivId" type="xsd:string" /> + <wsdl:part name="senderId" type="xsd:string" /> + <wsdl:part name="redirection1Email" type="xsd:string" /> + <wsdl:part name="redirection2Email" type="xsd:string" /> + <wsdl:part name="redirection3Email" type="xsd:string" /> + <wsdl:part name="redirection4Email" type="xsd:string" /> + <wsdl:part name="redirection5Email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxOptionsModifyResponse" /> + + <wsdl:message name="telephonyBillingAccountSummaryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountSummaryResponse"> + <wsdl:part name="return" type="typens:telephonyBillingAccountSummaryReturn" /> + </wsdl:message> + + <wsdl:message name="overquotaInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="overquotaInfoResponse"> + <wsdl:part name="return" type="typens:overquotaInfoReturn" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetErrorsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="deep" type="xsd:int" /> + <wsdl:part name="limit" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetErrorsResponse"> + <wsdl:part name="return" type="typens:MyArrayOfAutomatedMailGetErrorsStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserDelResponse" /> + + <wsdl:message name="emailGetCapabilitiesRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailGetCapabilitiesResponse"> + <wsdl:part name="return" type="typens:emailGetCapabilitiesReturn" /> + </wsdl:message> + + <wsdl:message name="telephonySmsAccountListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsAccountListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountConsumptionCSVByMailRequest"> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="date" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountConsumptionCSVByMailResponse" /> + + <wsdl:message name="telephonyFMHuntingModificationVoicemailRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="noReplyTimer" type="xsd:int" /> + <wsdl:part name="mainVoicemail" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFMHuntingModificationVoicemailResponse" /> + + <wsdl:message name="dedicatedBackupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="backupName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedBackupListStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyOrdersFollowingUpRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyOrdersFollowingUpResponse"> + <wsdl:part name="return" type="typens:MyArrayOfOrderFollowingUpStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + <wsdl:part name="workPhone" type="xsd:string" /> + <wsdl:part name="workMobile" type="xsd:string" /> + <wsdl:part name="homePhone" type="xsd:string" /> + <wsdl:part name="homeMobile" type="xsd:string" /> + <wsdl:part name="groupName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="ortDomainDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ortDomainDelResponse" /> + + <wsdl:message name="mailingListModeratorListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListModeratorListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyBillDetailsCSVRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="date" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillDetailsCSVResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfPopStructType" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlRamUsedRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlRamUsedResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsCreditLeftRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsCreditLeftResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="prepaidDomainCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="nicowner" type="xsd:string" /> + <wsdl:part name="nicadmin" type="xsd:string" /> + <wsdl:part name="nictech" type="xsd:string" /> + <wsdl:part name="nicbilling" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="frpartBirthday" type="xsd:string" /> + <wsdl:part name="frpartBirthCountry" type="xsd:string" /> + <wsdl:part name="frpartBirthDepartment" type="xsd:string" /> + <wsdl:part name="frpartBirthTown" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="prepaidDomainCreateResponse" /> + + <wsdl:message name="telephonyDirectoryPJCodeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ape" type="xsd:string" /> + <wsdl:part name="PJCode" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryPJCodeResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyDirectoryPJHeadingStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyListSummationCallsFromBillingAccountRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="reversableDelay" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyListSummationCallsFromBillingAccountResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyReversmentsSummationNumbersStructType" /> + </wsdl:message> + + <wsdl:message name="rpsMigrationGetProgressStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="rpsMigrationGetProgressStatusResponse"> + <wsdl:part name="return" type="typens:rpsMigrationGetProgressStatusReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootGetAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootGetAllResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedNetbootStructType" /> + </wsdl:message> + + <wsdl:message name="emailDomainListByMasterNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailDomainListByMasterNicResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceMailReportModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + <wsdl:part name="enable" type="xsd:boolean" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceMailReportModifyResponse" /> + + <wsdl:message name="telephonyAbbreviatedNumberDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="abbreviatedNumber" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberDelResponse" /> + + <wsdl:message name="resellerDomainTransferITRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="authinfo" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="legalRepresentantFirstName" type="xsd:string" /> + <wsdl:part name="legalRepresentantLastName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + <wsdl:part name="birthDate" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="birthDepartement" type="xsd:string" /> + <wsdl:part name="birthCountry" type="xsd:string" /> + <wsdl:part name="nationality" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainTransferITResponse" /> + + <wsdl:message name="dedicatedVirtualMacIpAvailableGetListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedVirtualMacIpAvailableGetListResponse"> + <wsdl:part name="return" type="typens:dedicatedIpVirtualMacAvailableReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxOptionsListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxOptionsListResponse"> + <wsdl:part name="return" type="typens:telephonyFaxOptionsListReturn" /> + </wsdl:message> + + <wsdl:message name="ticketListIncidentsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ticketListIncidentsResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTicketStructType" /> + </wsdl:message> + + <wsdl:message name="infrastructureReverseModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="reverse" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="infrastructureReverseModifyResponse" /> + + <wsdl:message name="telephonyVxmlDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlDelResponse" /> + + <wsdl:message name="dedicatedMonitoringSMSCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="phoneNumberTo" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringSMSCreateResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="responderEmailListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="responderEmailListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfResponderEmailStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="numbers" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountSetResponse" /> + + <wsdl:message name="telephonyDepositMovementModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccountSource" type="xsd:string" /> + <wsdl:part name="billingAccountDestination" type="xsd:string" /> + <wsdl:part name="amount" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyDepositMovementModifyResponse" /> + + <wsdl:message name="telephonyClick2CallDoRequest"> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="calling" type="xsd:string" /> + <wsdl:part name="called" type="xsd:string" /> + <wsdl:part name="billingNumber" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallDoResponse" /> + + <wsdl:message name="telephonyVxmlInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlInfoResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySpecialNumberOrderRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="aliasNumber" type="xsd:string" /> + <wsdl:part name="prefix" type="xsd:string" /> + <wsdl:part name="category" type="xsd:string" /> + <wsdl:part name="numberToReserve" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySpecialNumberOrderResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailOptionsModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="redirection1" type="xsd:string" /> + <wsdl:part name="redirection1Email" type="xsd:string" /> + <wsdl:part name="redirection2" type="xsd:string" /> + <wsdl:part name="redirection2Email" type="xsd:string" /> + <wsdl:part name="redirection3" type="xsd:string" /> + <wsdl:part name="redirection3Email" type="xsd:string" /> + <wsdl:part name="redirection4" type="xsd:string" /> + <wsdl:part name="redirection4Email" type="xsd:string" /> + <wsdl:part name="redirection5" type="xsd:string" /> + <wsdl:part name="redirection5Email" type="xsd:string" /> + <wsdl:part name="annouceMessage" type="xsd:string" /> + <wsdl:part name="keepMessage" type="xsd:boolean" /> + <wsdl:part name="audioformat" type="xsd:string" /> + <wsdl:part name="fromEmail" type="xsd:string" /> + <wsdl:part name="fromName" type="xsd:string" /> + <wsdl:part name="doNotRecord" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailOptionsModifyResponse" /> + + <wsdl:message name="telephonyLineSwitchOldOfferRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="numbers" type="typens:MyArrayOfStringType" /> + <wsdl:part name="offers" type="typens:MyArrayOfStringType" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineSwitchOldOfferResponse" /> + + <wsdl:message name="zoneEntryAddCustomRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="fieldtype" type="xsd:string" /> + <wsdl:part name="hostingtype" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="priority" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="zoneEntryAddCustomResponse" /> + + <wsdl:message name="domainWhoisObfuscatorInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorInfoResponse"> + <wsdl:part name="return" type="typens:domainWhoisObfuscatorStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactDelResponse" /> + + <wsdl:message name="ticketReopenRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ticketId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="ticketReopenResponse" /> + + <wsdl:message name="dedicatedBackupFtpPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupFtpPasswordResponse" /> + + <wsdl:message name="hostingAccessByNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="hostingAccessByNicResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceModeratorCallNumberModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + <wsdl:part name="moderatorCallNumber" type="xsd:string" /> + <wsdl:part name="moderatorCountryCode" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceModeratorCallNumberModifyResponse" /> + + <wsdl:message name="sqlpriveAlertInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveAlertInfoResponse"> + <wsdl:part name="return" type="typens:sqlpriveAlertInfotReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyOfferSimultaneousLinesAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="simultaneousLines" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyOfferSimultaneousLinesAddResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="mailingListFullInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListFullInfoResponse"> + <wsdl:part name="return" type="typens:mailingListFullInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedRtmBackdoorUpdateAlertRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backdoorId" type="xsd:int" /> + <wsdl:part name="do_not_mail" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="dedicatedRtmBackdoorUpdateAlertResponse" /> + + <wsdl:message name="responderEmailInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="responder" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="responderEmailInfoResponse"> + <wsdl:part name="return" type="typens:responderEmailStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyToneRemoteUploadRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="toneType" type="xsd:string" /> + <wsdl:part name="filename" type="xsd:string" /> + <wsdl:part name="url" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyToneRemoteUploadResponse" /> + + <wsdl:message name="dedicatedSecondaryDNSAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="nameserver" type="xsd:string" /> + <wsdl:part name="nameserverIp" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedSecondaryDNSAddResponse" /> + + <wsdl:message name="popUpgradeQuotaRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="size" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="popUpgradeQuotaResponse" /> + + <wsdl:message name="telephonyFMHuntingModificationModeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="strategy" type="xsd:string" /> + <wsdl:part name="pattern" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFMHuntingModificationModeResponse" /> + + <wsdl:message name="sqlpriveListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSqlpriveStructType" /> + </wsdl:message> + + <wsdl:message name="dnsInstallRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="minimized" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="dnsInstallResponse" /> + + <wsdl:message name="telephonyAliasToSipOfferRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="delete" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyAliasToSipOfferResponse" /> + + <wsdl:message name="hostingSummaryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="hostingSummaryResponse"> + <wsdl:part name="return" type="typens:hostingSummaryReturn" /> + </wsdl:message> + + <wsdl:message name="emailDomainSummaryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailDomainSummaryResponse"> + <wsdl:part name="return" type="typens:emailDomainSummaryReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedRtmGetStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedRtmGetStatusResponse"> + <wsdl:part name="return" type="typens:dedicatedRtmStatusReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyConferenceStructType" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionQuotaUsedRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="partitionName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionQuotaUsedResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootGetAvailableRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootGetAvailableResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedNetbootStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserMultiSendRequest"> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="numberFrom" type="xsd:string" /> + <wsdl:part name="numberTo" type="typens:MyArrayOfStringType" /> + <wsdl:part name="message" type="xsd:string" /> + <wsdl:part name="smsValidity" type="xsd:int" /> + <wsdl:part name="smsClass" type="xsd:int" /> + <wsdl:part name="smsDeferred" type="xsd:int" /> + <wsdl:part name="smsPriority" type="xsd:int" /> + <wsdl:part name="smsCoding" type="xsd:int" /> + <wsdl:part name="tag" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserMultiSendResponse"> + <wsdl:part name="return" type="typens:MyArrayOfIntType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsHistoryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="smsId" type="xsd:int" /> + <wsdl:part name="user" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + <wsdl:part name="sortField" type="xsd:string" /> + <wsdl:part name="sortOrder" type="xsd:string" /> + <wsdl:part name="tag" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsHistoryResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonySmsHistoryStructType" /> + </wsdl:message> + + <wsdl:message name="zoneEntryModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="fieldtype" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="newTarget" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="zoneEntryModifyResponse" /> + + <wsdl:message name="ticketListContactRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ticketListContactResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTicketContactStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedMailinglistGetAllowedRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMailinglistGetAllowedResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupInfoResponse"> + <wsdl:part name="return" type="typens:dedicatedBackupListReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="abbreviatedNumber" type="xsd:string" /> + <wsdl:part name="relatedNumber" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupModifyResponse" /> + + <wsdl:message name="accountSummaryRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="accountSummaryResponse"> + <wsdl:part name="return" type="typens:accountSummaryReturn" /> + </wsdl:message> + + <wsdl:message name="subDomainDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="subDomainDelResponse" /> + + <wsdl:message name="telephonyHuntingGenericScreenListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyHuntingGenericScreenStructType" /> + </wsdl:message> + + <wsdl:message name="emailFilterAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="filter" type="xsd:string" /> + <wsdl:part name="priority" type="xsd:int" /> + <wsdl:part name="active" type="xsd:boolean" /> + <wsdl:part name="action" type="xsd:string" /> + <wsdl:part name="action_param" type="xsd:string" /> + <wsdl:part name="header" type="xsd:string" /> + <wsdl:part name="rule" type="xsd:string" /> + <wsdl:part name="rule_param" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailFilterAddResponse" /> + + <wsdl:message name="telephonyHuntingGenericScreenStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenStatusResponse"> + <wsdl:part name="return" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationMembersRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="list_destinations" type="typens:MyArrayOfStringType" /> + <wsdl:part name="list_noReplyTimer" type="typens:MyArrayOfIntType" /> + <wsdl:part name="list_logged" type="typens:MyArrayOfBooleanType" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationMembersResponse" /> + + <wsdl:message name="rpsMigrationStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="rpsMigrationStatusResponse"> + <wsdl:part name="return" type="typens:rpsMigrationStatusReturn" /> + </wsdl:message> + + <wsdl:message name="dnsResetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="minimized" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="dnsResetResponse" /> + + <wsdl:message name="supportGetNicDomainsRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="supportGetNicDomainsResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSupportDomainStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignCreationRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="campaignName" type="xsd:string" /> + <wsdl:part name="pdfUrl" type="xsd:string" /> + <wsdl:part name="pdfName" type="xsd:string" /> + <wsdl:part name="recipients" type="typens:MyArrayOfStringType" /> + <wsdl:part name="faxQuality" type="xsd:string" /> + <wsdl:part name="initialStatus" type="xsd:string" /> + <wsdl:part name="launchDate" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignCreationResponse" /> + + <wsdl:message name="supportGetThreadsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="page" type="xsd:int" /> + <wsdl:part name="view" type="xsd:string" /> + <wsdl:part name="unread" type="xsd:boolean" /> + <wsdl:part name="sortDir" type="xsd:string" /> + <wsdl:part name="sortBy" type="xsd:string" /> + <wsdl:part name="limit" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="supportGetThreadsResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSupportThreadDetailStructType" /> + </wsdl:message> + + <wsdl:message name="mailingListDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListDelResponse" /> + + <wsdl:message name="dedicatedFailoverRipeAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="netname" type="xsd:string" /> + <wsdl:part name="description" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="addressesNumber" type="xsd:int" /> + <wsdl:part name="comment" type="xsd:string" /> + <wsdl:part name="routedToInterface" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverRipeAddResponse" /> + + <wsdl:message name="mailingListSubscriberAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListSubscriberAddResponse" /> + + <wsdl:message name="dedicatedFilterIrcClientRuleAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="fromIp" type="xsd:string" /> + <wsdl:part name="toIp" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFilterIrcClientRuleAddResponse" /> + + <wsdl:message name="dedicatedBackupGetCalendarRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupGetCalendarResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedBackupGetPlanningStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyFMHuntingModificationMembersRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="list_destinations" type="typens:MyArrayOfStringType" /> + <wsdl:part name="list_noReplyTimer" type="typens:MyArrayOfIntType" /> + <wsdl:part name="list_logged" type="typens:MyArrayOfBooleanType" /> + </wsdl:message> + + <wsdl:message name="telephonyFMHuntingModificationMembersResponse" /> + + <wsdl:message name="telephonyPhonebookAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyRestrictionModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="restrictions" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyRestrictionModifyResponse" /> + + <wsdl:message name="crontabDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="crontabDelResponse" /> + + <wsdl:message name="telephonyHuntingGenericScreenOptionsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenOptionsResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyHuntingGenericScreenOptionsStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountAddResponse" /> + + <wsdl:message name="managedServicesIpAccessChangeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="value" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="idZfs" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesIpAccessChangeResponse" /> + + <wsdl:message name="accountHistoryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="month" type="xsd:int" /> + <wsdl:part name="year" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="accountHistoryResponse"> + <wsdl:part name="return" type="typens:accountHistoryReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingServerDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ipLoadBalancing" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingServerDelResponse" /> + + <wsdl:message name="domainCheckRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainCheckResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDomainCheckStructType" /> + </wsdl:message> + + <wsdl:message name="prepaidDomainTransferRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="nicowner" type="xsd:string" /> + <wsdl:part name="nicadmin" type="xsd:string" /> + <wsdl:part name="nictech" type="xsd:string" /> + <wsdl:part name="nicbilling" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="frpartBirthday" type="xsd:string" /> + <wsdl:part name="frpartBirthCountry" type="xsd:string" /> + <wsdl:part name="frpartBirthDepartment" type="xsd:string" /> + <wsdl:part name="frpartBirthTown" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="prepaidDomainTransferResponse" /> + + <wsdl:message name="dedicatedEditServiceMonitoringItemRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="itemId" type="xsd:int" /> + <wsdl:part name="period" type="xsd:string" /> + <wsdl:part name="string" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedEditServiceMonitoringItemResponse" /> + + <wsdl:message name="passwordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="passwordResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderValidateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="code" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderValidateResponse" /> + + <wsdl:message name="telephonyHuntingModificationSimultaneousCallsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="numberOfCalls" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationSimultaneousCallsResponse" /> + + <wsdl:message name="serviceGroupCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupCreateResponse" /> + + <wsdl:message name="orderTelephonySmsCreditRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="quantity" type="xsd:string" /> + <wsdl:part name="payWithPoints" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="orderTelephonySmsCreditResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="backupType" type="xsd:string" /> + <wsdl:part name="snapshot" type="xsd:int" /> + <wsdl:part name="sshPort" type="xsd:int" /> + <wsdl:part name="status" type="xsd:int" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="src" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupSetResponse" /> + + <wsdl:message name="dedicatedVirtualMacIpDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedVirtualMacIpDeleteResponse" /> + + <wsdl:message name="dedicatedFailoverRipeSplitRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="netname" type="xsd:string" /> + <wsdl:part name="networkIp" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverRipeSplitResponse" /> + + <wsdl:message name="dedicatedReverseInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedReverseInfoResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedCapabilitiesGetAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedCapabilitiesGetAllResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedCapabilitiesStructType" /> + </wsdl:message> + + <wsdl:message name="nicRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="campaignStatus" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + <wsdl:part name="sortField" type="xsd:string" /> + <wsdl:part name="sortOrder" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignListResponse"> + <wsdl:part name="return" type="typens:telephonyFaxCampaignStructReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupIncludeAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="include" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupIncludeAddResponse" /> + + <wsdl:message name="ticketGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ticketId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="ticketGetResponse"> + <wsdl:part name="return" type="typens:fullTicketReturn" /> + </wsdl:message> + + <wsdl:message name="supportSendMessageRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="messagePrevious" type="xsd:int" /> + <wsdl:part name="category" type="xsd:int" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subject" type="xsd:string" /> + <wsdl:part name="body" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="supportSendMessageResponse"> + <wsdl:part name="return" type="typens:supportSendMessageReturn" /> + </wsdl:message> + + <wsdl:message name="notepadSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="content" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="notepadSetResponse" /> + + <wsdl:message name="dedicatedFailoverRipeListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverRipeListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedFailoverRipeStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetUserQuotaForUserRequest"> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetUserQuotaForUserResponse"> + <wsdl:part name="return" type="typens:telephonySmsUserQuotaStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringServiceAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="port" type="xsd:int" /> + <wsdl:part name="protocol" type="xsd:string" /> + <wsdl:part name="period" type="xsd:string" /> + <wsdl:part name="string" type="xsd:string" /> + <wsdl:part name="url" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringServiceAddResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedHardRebootDoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="reason" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="emailLanguage" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedHardRebootDoResponse" /> + + <wsdl:message name="dedicatedReverseListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedReverseListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedReverseStructType" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="field" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorSetResponse" /> + + <wsdl:message name="rpsMigrationTodoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="logicalRpsName" type="xsd:string" /> + <wsdl:part name="physicalRpsTo" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="rpsMigrationTodoResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="keyNum" type="xsd:int" /> + <wsdl:part name="function" type="xsd:string" /> + <wsdl:part name="relatedNumber" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyModifyResponse" /> + + <wsdl:message name="nicTldEligibilityRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="tld" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicTldEligibilityResponse"> + <wsdl:part name="return" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetStateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailGetStateResponse"> + <wsdl:part name="return" type="typens:automatedMailGetStateReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyAbbreviatedNumberStructType" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlLogsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlLogsResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxModifyPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxModifyPasswordResponse" /> + + <wsdl:message name="dedicatedBackupFtpAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupFtpAddResponse" /> + + <wsdl:message name="databaseDumpRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="db" type="xsd:string" /> + <wsdl:part name="backup" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="databaseDumpResponse" /> + + <wsdl:message name="telephonySmsDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="smsIds" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsDeleteResponse" /> + + <wsdl:message name="telephonyDirectoryModifyPublicationRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="callNumber" type="xsd:string" /> + <wsdl:part name="countryCode" type="xsd:string" /> + <wsdl:part name="lineDescription" type="xsd:string" /> + <wsdl:part name="displayFirstName" type="xsd:string" /> + <wsdl:part name="displayOnlyCity" type="xsd:string" /> + <wsdl:part name="displayUniversalDirectory" type="xsd:string" /> + <wsdl:part name="displayMarketingDirectory" type="xsd:string" /> + <wsdl:part name="displaySearchReverse" type="xsd:string" /> + <wsdl:part name="receivePJDirectory" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryModifyPublicationResponse" /> + + <wsdl:message name="domainResellerSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainResellerSetResponse" /> + + <wsdl:message name="crontabListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="crontabListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfCrontabStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="dedicatedVirtualMacIpUsedGetListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedVirtualMacIpUsedGetListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedIpVirtualMacUsedStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyLineSwitchOfferPossibilityRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineSwitchOfferPossibilityResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyLineSwitchPossibilityPriceStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonySmsSenderStructType" /> + </wsdl:message> + + <wsdl:message name="resellerDomainRestoreRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainRestoreResponse" /> + + <wsdl:message name="ticketAnswerRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ticketId" type="xsd:int" /> + <wsdl:part name="message" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ticketAnswerResponse" /> + + <wsdl:message name="sqlpriveCronSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="operation" type="xsd:string" /> + <wsdl:part name="recursivityDays" type="typens:MyArrayOfStringType" /> + <wsdl:part name="recursivityHours" type="typens:MyArrayOfStringType" /> + <wsdl:part name="endDate" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveCronSetResponse" /> + + <wsdl:message name="telephonyFunctionKeyListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyFunctionKeyStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootInfoResponse"> + <wsdl:part name="return" type="typens:dedicatedNetbootStruct" /> + </wsdl:message> + + <wsdl:message name="domainOperationRelaunchRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="domainOperationRelaunchResponse" /> + + <wsdl:message name="telephonyLineSwitchOfferRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineSwitchOfferResponse" /> + + <wsdl:message name="telephonyVoicemailModifyPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="forcePassword" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailModifyPasswordResponse" /> + + <wsdl:message name="telephonyConferenceRoomModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="currentRoom" type="xsd:string" /> + <wsdl:part name="newRoom" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceRoomModifyResponse" /> + + <wsdl:message name="telephonyPhonebookShareRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="targetNumber" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="mode" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookShareResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSetUserQuotaRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + <wsdl:part name="quotaDiff" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSetUserQuotaResponse" /> + + <wsdl:message name="cmsInstallRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="cmsName" type="xsd:string" /> + <wsdl:part name="path" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="cmsInstallResponse" /> + + <wsdl:message name="dedicatedIpLoadBalancingAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="ipLoadBalancing" type="xsd:string" /> + <wsdl:part name="serverList" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingAddResponse" /> + + <wsdl:message name="supportGetAllVisibleCategoriesRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="supportGetAllVisibleCategoriesResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSupportCategoryStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlValidateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="url" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlValidateResponse" /> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyAbbreviatedNumberStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyLineLogsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyLineLogsResponse"> + <wsdl:part name="return" type="typens:telephonyLineLogsStruct" /> + </wsdl:message> + + <wsdl:message name="multiFtpListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiFtpListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfMultiFtpStructType" /> + </wsdl:message> + + <wsdl:message name="multiFtpAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdir" type="xsd:string" /> + <wsdl:part name="loginsuffix" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiFtpAddResponse" /> + + <wsdl:message name="sqlpriveMysqlDatabasePrivilegeListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlDatabasePrivilegeListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSqlpriveMysqlDatabasePrivilegeStructType" /> + </wsdl:message> + + <wsdl:message name="emailAccessByNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailAccessByNicResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="zoneEntryDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="fieldtype" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="zoneEntryDelResponse" /> + + <wsdl:message name="prepaidSetThresholdRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="threshold" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="prepaidSetThresholdResponse" /> + + <wsdl:message name="telephonyVoicemailMailboxListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + <wsdl:part name="sortField" type="xsd:string" /> + <wsdl:part name="sortOrder" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailMailboxListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyVoicemailMailboxStructType" /> + </wsdl:message> + + <wsdl:message name="resellerDomainRenewRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainRenewResponse" /> + + <wsdl:message name="popDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popDelResponse" /> + + <wsdl:message name="telephonyFaxCampaignDetailsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="reference" type="xsd:string" /> + <wsdl:part name="sendRecipients" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignDetailsResponse"> + <wsdl:part name="return" type="typens:telephonyFaxCampaignDetailsStruct" /> + </wsdl:message> + + <wsdl:message name="emailFilterRuleDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="filter" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="emailFilterRuleDelResponse" /> + + <wsdl:message name="telephonyPhonebookOnGroupDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupDelResponse" /> + + <wsdl:message name="telephonyPhonebookOnGroupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySpecialNumberCustomListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="prefix" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySpecialNumberCustomListResponse"> + <wsdl:part name="return" type="typens:telephonySpecialNumberCustomListReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringServiceDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="itemsIdTable" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringServiceDelResponse" /> + + <wsdl:message name="telephonyFMHuntingModificationSimultaneousCallsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="numberOfCalls" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyFMHuntingModificationSimultaneousCallsResponse" /> + + <wsdl:message name="emailFilterPriorityRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="filter" type="xsd:string" /> + <wsdl:part name="priority" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailFilterPriorityResponse" /> + + <wsdl:message name="accountAlertThresholdSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="threshold" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="accountAlertThresholdSetResponse" /> + + <wsdl:message name="emailFilterDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="filter" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailFilterDelResponse" /> + + <wsdl:message name="resellerDomainCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="method" type="xsd:string" /> + <wsdl:part name="legalName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="afnicIdent" type="xsd:string" /> + <wsdl:part name="birthDate" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="birthDepartement" type="xsd:string" /> + <wsdl:part name="birthCountry" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainCreateResponse" /> + + <wsdl:message name="managedServicesSnapshotUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="snapShotList" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesSnapshotUpdateResponse" /> + + <wsdl:message name="supportGetThreadTreeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="threadId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="supportGetThreadTreeResponse"> + <wsdl:part name="return" type="typens:supportThreadTreeReturn" /> + </wsdl:message> + + <wsdl:message name="emailSetDomainCatchAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailSetDomainCatchAllResponse" /> + + <wsdl:message name="domainCapabilitiesRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainCapabilitiesResponse"> + <wsdl:part name="return" type="typens:domainCapabilitiesReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingServerStateModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ipLoadBalancing" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="state" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingServerStateModifyResponse" /> + + <wsdl:message name="telephonyVoicemailMailboxDownloadRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="format" type="xsd:string" /> + <wsdl:part name="folder" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailMailboxDownloadResponse"> + <wsdl:part name="return" type="typens:telephonyVoicemailMailboxDownloadReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedReverseModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="reverse" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedReverseModifyResponse" /> + + <wsdl:message name="telephonyReversmentsRefundIsPendingRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyReversmentsRefundIsPendingResponse" /> + + <wsdl:message name="serviceModifyContactRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + <wsdl:part name="contact" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="componentSubType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceModifyContactResponse" /> + + <wsdl:message name="telephonyScreenListInfoModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="screenListType" type="xsd:string" /> + <wsdl:part name="numbersScreen" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyScreenListInfoModifyResponse" /> + + <wsdl:message name="domainDnsListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainDnsListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfNsStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedFailoverStructType" /> + </wsdl:message> + + <wsdl:message name="emailDomainMxListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailDomainMxListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfZoneStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedSecondaryDNSInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedSecondaryDNSInfoResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSecondaryDNSStructType" /> + </wsdl:message> + + <wsdl:message name="managedServicesHostMasterIpGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesHostMasterIpGetResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ortDomainListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ortDomainListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfOrtStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenStatusModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="status" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenStatusModifyResponse" /> + + <wsdl:message name="telephonyPhonebookContactAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + <wsdl:part name="workPhone" type="xsd:string" /> + <wsdl:part name="workMobile" type="xsd:string" /> + <wsdl:part name="homePhone" type="xsd:string" /> + <wsdl:part name="homeMobile" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="domainOperationInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="domainOperationInfoResponse"> + <wsdl:part name="return" type="typens:operationStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetAvailableNetworkFromCountryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetAvailableNetworkFromCountryResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyPortabilityOrderSpecialNumberRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="desireDate" type="xsd:string" /> + <wsdl:part name="callNumber" type="xsd:string" /> + <wsdl:part name="custContactName" type="xsd:string" /> + <wsdl:part name="custContactNumber" type="xsd:string" /> + <wsdl:part name="custName" type="xsd:string" /> + <wsdl:part name="custSiret" type="xsd:string" /> + <wsdl:part name="custStreetName" type="xsd:string" /> + <wsdl:part name="custStreetNumber" type="xsd:string" /> + <wsdl:part name="custBuilding" type="xsd:string" /> + <wsdl:part name="custStair" type="xsd:string" /> + <wsdl:part name="custFloor" type="xsd:string" /> + <wsdl:part name="custDoor" type="xsd:string" /> + <wsdl:part name="custZip" type="xsd:string" /> + <wsdl:part name="custCity" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + <wsdl:part name="evenPorted" type="xsd:boolean" /> + <wsdl:part name="category" type="xsd:string" /> + <wsdl:part name="extraNumbers" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyPortabilityOrderSpecialNumberResponse"> + <wsdl:part name="return" type="typens:telephonyNumberOrderReturn" /> + </wsdl:message> + + <wsdl:message name="billingGetReferencesToExpiredRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="delay" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="billingGetReferencesToExpiredResponse"> + <wsdl:part name="return" type="typens:MyArrayOfBillingGetReferencesToExpiredStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + <wsdl:part name="wantedIp" type="xsd:string" /> + <wsdl:part name="routedTo" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverAddResponse" /> + + <wsdl:message name="prepaidGetSummaryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="prepaidGetSummaryResponse"> + <wsdl:part name="return" type="typens:prepaidGetSummaryReturn" /> + </wsdl:message> + + <wsdl:message name="domainDnsUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="ip1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="ip2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="ip3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="ip4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="ip5" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainDnsUpdateResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="emailFilterRuleAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="filter" type="xsd:string" /> + <wsdl:part name="header" type="xsd:string" /> + <wsdl:part name="rule" type="xsd:string" /> + <wsdl:part name="rule_param" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailFilterRuleAddResponse" /> + + <wsdl:message name="domainResellerDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainResellerDelResponse" /> + + <wsdl:message name="telephonyPhonebookOnGroupModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupModifyResponse" /> + + <wsdl:message name="telephonyLineSwitchOldOfferPossibilityRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="numbers" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineSwitchOldOfferPossibilityResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyLineSwitchOldOfferStructType" /> + </wsdl:message> + + <wsdl:message name="resellerDomainCreateITRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="legalRepresentantFirstName" type="xsd:string" /> + <wsdl:part name="legalRepresentantLastName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + <wsdl:part name="birthDate" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="birthDepartement" type="xsd:string" /> + <wsdl:part name="birthCountry" type="xsd:string" /> + <wsdl:part name="nationality" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainCreateITResponse" /> + + <wsdl:message name="notepadGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="notepadGetResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationAnonymousCallRejectionRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="anonymousCallRejection" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationAnonymousCallRejectionResponse" /> + + <wsdl:message name="dedicatedFilterIrcServerRuleListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFilterIrcServerRuleListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedFilterIrcRuleStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberGetBillingAccountRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberGetBillingAccountResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionDeleteResponse" /> + + <wsdl:message name="telephonyTonesOptionsListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyTonesOptionsListResponse"> + <wsdl:part name="return" type="typens:telephonyTonesOptionsListReturn" /> + </wsdl:message> + + <wsdl:message name="supportReportAnswerProblemRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="messageId" type="xsd:int" /> + <wsdl:part name="reportReason" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="supportReportAnswerProblemResponse" /> + + <wsdl:message name="multiDomainListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiDomainListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfMultiDomainStructType" /> + </wsdl:message> + + <wsdl:message name="ticketCloseRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ticketId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="ticketCloseResponse" /> + + <wsdl:message name="telephonyListSummationCallsFromNumberRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="reversableDelay" type="xsd:string" /> + <wsdl:part name="sortOrder" type="xsd:string" /> + <wsdl:part name="sortField" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyListSummationCallsFromNumberResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyReversmentsSummationStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + <wsdl:part name="workPhone" type="xsd:string" /> + <wsdl:part name="workMobile" type="xsd:string" /> + <wsdl:part name="homePhone" type="xsd:string" /> + <wsdl:part name="homeMobile" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactModifyResponse" /> + + <wsdl:message name="domainDnsGetOvhDefaultRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainDnsGetOvhDefaultResponse"> + <wsdl:part name="return" type="typens:MyArrayOfNsStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyLineListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineListResponse"> + <wsdl:part name="return" type="typens:telephonyLineListReturn" /> + </wsdl:message> + + <wsdl:message name="databaseCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="db" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="dbType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="databaseCreateResponse" /> + + <wsdl:message name="billingGetAccessByNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="billingGetAccessByNicResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupExcludeAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="exclude" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupExcludeAddResponse" /> + + <wsdl:message name="serviceModifyOwnerRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + <wsdl:part name="legalform" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="area" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="fax" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="identityConfirmation" type="xsd:boolean" /> + <wsdl:part name="acceptanceConfirmation" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="serviceModifyOwnerResponse" /> + + <wsdl:message name="telephonyLineOptionsModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="identificationRestriction" type="xsd:boolean" /> + <wsdl:part name="anonymousCallRejection" type="xsd:boolean" /> + <wsdl:part name="doNotDisturb" type="xsd:boolean" /> + <wsdl:part name="absentSuscriber" type="xsd:boolean" /> + <wsdl:part name="lockOutCall" type="xsd:boolean" /> + <wsdl:part name="lockOutCallPassword" type="xsd:string" /> + <wsdl:part name="forwardUnconditional" type="xsd:boolean" /> + <wsdl:part name="forwardUnconditionalNumber" type="xsd:string" /> + <wsdl:part name="forwardNoReply" type="xsd:boolean" /> + <wsdl:part name="forwardNoReplyDelay" type="xsd:int" /> + <wsdl:part name="forwardNoReplyNumber" type="xsd:string" /> + <wsdl:part name="forwardBusy" type="xsd:boolean" /> + <wsdl:part name="forwardBusyNumber" type="xsd:string" /> + <wsdl:part name="forwardBackup" type="xsd:boolean" /> + <wsdl:part name="forwardBackupNumber" type="xsd:string" /> + <wsdl:part name="displayCallNumber" type="xsd:string" /> + <wsdl:part name="callWaiting" type="xsd:boolean" /> + <wsdl:part name="forwardNoReplyNature" type="xsd:string" /> + <wsdl:part name="forwardBackupNature" type="xsd:string" /> + <wsdl:part name="forwardUnconditionalNature" type="xsd:string" /> + <wsdl:part name="forwardBusyNature" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineOptionsModifyResponse" /> + + <wsdl:message name="sqlpriveCronDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="cronId" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveCronDelResponse" /> + + <wsdl:message name="telephonyVxmlAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="url" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlAddResponse" /> + + <wsdl:message name="telephonyHuntingGenericScreenSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="timesStart" type="typens:MyArrayOfStringType" /> + <wsdl:part name="timesEnd" type="typens:MyArrayOfStringType" /> + <wsdl:part name="daysType" type="typens:MyArrayOfStringType" /> + <wsdl:part name="forwardPolicyIndex" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenSetResponse" /> + + <wsdl:message name="telephonyFaxCampaignStartStopRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="reference" type="xsd:string" /> + <wsdl:part name="forceStart" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignStartStopResponse" /> + + <wsdl:message name="dedicatedFilterIrcServerRuleDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="toIp" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFilterIrcServerRuleDelResponse" /> + + <wsdl:message name="hostingGetCapabilitiesRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="hostingGetCapabilitiesResponse"> + <wsdl:part name="return" type="typens:hostingGetCapabilitiesReturn" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorUnsetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="field" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorUnsetResponse" /> + + <wsdl:message name="domainHostDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="host" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainHostDelResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverRipeModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="hostnameNew" type="xsd:string" /> + <wsdl:part name="networkIp" type="xsd:string" /> + <wsdl:part name="suffix" type="xsd:int" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverRipeModifyResponse" /> + + <wsdl:message name="responderEmailDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="responder" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="responderEmailDelResponse" /> + + <wsdl:message name="dedicatedMonitoringListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedMonitoringStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryModifyAddressRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="callNumber" type="xsd:string" /> + <wsdl:part name="countryCode" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstName" type="xsd:string" /> + <wsdl:part name="wayNumber" type="xsd:string" /> + <wsdl:part name="wayNumberExtra" type="xsd:string" /> + <wsdl:part name="wayType" type="xsd:string" /> + <wsdl:part name="wayName" type="xsd:string" /> + <wsdl:part name="addressExtra" type="xsd:string" /> + <wsdl:part name="urbanDistrict" type="xsd:string" /> + <wsdl:part name="postBox" type="xsd:string" /> + <wsdl:part name="cedex" type="xsd:string" /> + <wsdl:part name="postCode" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="legalForm" type="xsd:string" /> + <wsdl:part name="socialNomination" type="xsd:string" /> + <wsdl:part name="PJSocialNomination" type="xsd:string" /> + <wsdl:part name="socialNominationExtra" type="xsd:string" /> + <wsdl:part name="occupation" type="xsd:string" /> + <wsdl:part name="siret" type="xsd:string" /> + <wsdl:part name="ape" type="xsd:string" /> + <wsdl:part name="PJCode" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryModifyAddressResponse" /> + + <wsdl:message name="managedServicesPartitionStatusCheckRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="partitionName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionStatusCheckResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="cmsAvailableListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="cmsAvailableListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfCmsAvailableStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySecurityDepositCreditRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="amount" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonySecurityDepositCreditResponse"> + <wsdl:part name="return" type="typens:telephonySecurityDepositCreditReturn" /> + </wsdl:message> + + <wsdl:message name="nicModifyLanguageRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicModifyLanguageResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineOrderRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="prefix" type="xsd:string" /> + <wsdl:part name="quantity" type="xsd:int" /> + <wsdl:part name="payWithPoints" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyLineOrderResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupExcludeDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="exclude" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupExcludeDelResponse" /> + + <wsdl:message name="automatedMailUnlockRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailUnlockResponse" /> + + <wsdl:message name="loginRequest"> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="multisession" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="loginResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popListByMasterNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popListByMasterNicResponse"> + <wsdl:part name="return" type="typens:MyArrayOfPopStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="keyNum" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyDelResponse" /> + + <wsdl:message name="serviceModifyOwnerInfosRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="fax" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceModifyOwnerInfosResponse" /> + + <wsdl:message name="dedicatedHardRebootStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedHardRebootStatusResponse"> + <wsdl:part name="return" type="typens:dedicatedHardRebootStatusReturn" /> + </wsdl:message> + + <wsdl:message name="domainInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainInfoResponse"> + <wsdl:part name="return" type="typens:domainInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetServiceMonitoringItemRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="itemId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetServiceMonitoringItemResponse"> + <wsdl:part name="return" type="typens:dedicatedGetServiceMonitoringItemStruct" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserCreditLeftRequest"> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserCreditLeftResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPortabilityOrderRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="desireDate" type="xsd:string" /> + <wsdl:part name="callNumber" type="xsd:string" /> + <wsdl:part name="custContactName" type="xsd:string" /> + <wsdl:part name="custContactNumber" type="xsd:string" /> + <wsdl:part name="custName" type="xsd:string" /> + <wsdl:part name="custSiret" type="xsd:string" /> + <wsdl:part name="custStreetName" type="xsd:string" /> + <wsdl:part name="custStreetNumber" type="xsd:string" /> + <wsdl:part name="custBuilding" type="xsd:string" /> + <wsdl:part name="custStair" type="xsd:string" /> + <wsdl:part name="custFloor" type="xsd:string" /> + <wsdl:part name="custDoor" type="xsd:string" /> + <wsdl:part name="custZip" type="xsd:string" /> + <wsdl:part name="custCity" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + <wsdl:part name="evenPorted" type="xsd:boolean" /> + <wsdl:part name="extraNumbers" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyPortabilityOrderResponse" /> + + <wsdl:message name="nicCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="fax" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="area" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="isOwner" type="xsd:boolean" /> + <wsdl:part name="legalform" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="legalName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicCreateResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="cmsRemoveRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="cmsRemoveResponse" /> + + <wsdl:message name="telephonyVoicemailMailboxDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="ids" type="xsd:string" /> + <wsdl:part name="folder" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailMailboxDeleteResponse" /> + + <wsdl:message name="sqlpriveMysqlDatabaseImportFromHostRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="database" type="xsd:string" /> + <wsdl:part name="foreignHost" type="xsd:string" /> + <wsdl:part name="foreignUser" type="xsd:string" /> + <wsdl:part name="foreignPassword" type="xsd:string" /> + <wsdl:part name="foreignDatabase" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlDatabaseImportFromHostResponse" /> + + <wsdl:message name="billingInvoiceInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="billingInvoiceInfoResponse"> + <wsdl:part name="return" type="typens:billingInvoiceInfoReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="cancelDelete" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountDelResponse" /> + + <wsdl:message name="versionRequest"> + </wsdl:message> + + <wsdl:message name="versionResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="orderAccountCreditRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="amount" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="orderAccountCreditResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberCleanRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberCleanResponse" /> + + <wsdl:message name="dedicatedReverseAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="reverse" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedReverseAddResponse" /> + + <wsdl:message name="dedicatedBackupGetFreePlanningRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupGetFreePlanningResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedBackupGetPlanningStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedInstallAllowedDistributionGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedInstallAllowedDistributionGetResponse"> + <wsdl:part name="return" type="typens:dedicatedAllowedDistributionReturn" /> + </wsdl:message> + + <wsdl:message name="subDomainModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="subDomainModifyResponse" /> + + <wsdl:message name="telephonyPlugAndPhoneOperationRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="operation" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPlugAndPhoneOperationResponse" /> + + <wsdl:message name="nicInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicInfoResponse"> + <wsdl:part name="return" type="typens:nicInfoReturn" /> + </wsdl:message> + + <wsdl:message name="anonymousFtpInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="anonymousFtpInfoResponse"> + <wsdl:part name="return" type="typens:anonymousFtpInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedCapabilitiesGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedCapabilitiesGetResponse"> + <wsdl:part name="return" type="typens:dedicatedCapabilitiesStruct" /> + </wsdl:message> + + <wsdl:message name="cmsListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="cmsListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfCmsStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSetQuotaNotificationRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="support" type="xsd:string" /> + <wsdl:part name="alertNumber" type="xsd:string" /> + <wsdl:part name="alertThreshold" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSetQuotaNotificationResponse" /> + + <wsdl:message name="dedicatedMonitoringSMSDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="id" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringSMSDelResponse" /> + + <wsdl:message name="telephonySmsUserListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="logsAccessListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="logsAccessListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfLogsAccessStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringAddResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingInfoResponse"> + <wsdl:part name="return" type="typens:telephonyHuntingInfoReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="group" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookContactStructType" /> + </wsdl:message> + + <wsdl:message name="resellerDomainTransferASIARequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="authinfo" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="CedCea" type="xsd:string" /> + <wsdl:part name="contactCED" type="xsd:string" /> + <wsdl:part name="localityCity" type="xsd:string" /> + <wsdl:part name="localitySp" type="xsd:string" /> + <wsdl:part name="ccLocality" type="xsd:string" /> + <wsdl:part name="legalEntityType" type="xsd:string" /> + <wsdl:part name="otherLEType" type="xsd:string" /> + <wsdl:part name="identForm" type="xsd:string" /> + <wsdl:part name="otherIdentForm" type="xsd:string" /> + <wsdl:part name="identNumber" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainTransferASIAResponse" /> + + <wsdl:message name="telephonyConferenceLanguageModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + <wsdl:part name="newLanguage" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceLanguageModifyResponse" /> + + <wsdl:message name="telephonySmsUserPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserPasswordResponse" /> + + <wsdl:message name="domainHostListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainHostListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="hostingChangeMainDomainRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="newDomain" type="xsd:string" /> + <wsdl:part name="mxAction" type="xsd:string" /> + <wsdl:part name="mxOffer" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="hostingChangeMainDomainResponse"> + <wsdl:part name="return" type="typens:hostingChangeMainDomainReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyLineGetOfferPricesRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineGetOfferPricesResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyLineSwitchPossibilityPriceStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetQuotaNotificationRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetQuotaNotificationResponse"> + <wsdl:part name="return" type="typens:telephonyNotificationSmsUserStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationModeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="strategy" type="xsd:string" /> + <wsdl:part name="pattern" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationModeResponse" /> + + <wsdl:message name="telephonyScreenListBlackWhiteChoiceRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyScreenListBlackWhiteChoiceResponse"> + <wsdl:part name="return" type="typens:telephonyScreenBlackWhiteChoiceReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberZoneAndPrefixListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberZoneAndPrefixListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyNumberZoneAndPrefixStructType" /> + </wsdl:message> + + <wsdl:message name="serviceGroupDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupDeleteResponse" /> + + <wsdl:message name="dedicatedOperationListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedOperationListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedOperationStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceAddResponse" /> + + <wsdl:message name="mailingListModeratorAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListModeratorAddResponse" /> + + <wsdl:message name="telephonyPhonebookOnGroupContactListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="groupName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookContactStructType" /> + </wsdl:message> + + <wsdl:message name="anonymousFtpActivateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="anonymousFtpActivateResponse" /> + + <wsdl:message name="telephonyDeleteLineRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="cancelDelete" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyDeleteLineResponse" /> + + <wsdl:message name="nicModifyInfosITRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="sex" type="xsd:string" /> + <wsdl:part name="legalform" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="area" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="fax" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="spareEmail" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + <wsdl:part name="birthDay" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="nationalIdentificationNumber" type="xsd:string" /> + <wsdl:part name="companyNationalIdentificationNumber" type="xsd:string" /> + <wsdl:part name="corporationType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicModifyInfosITResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ortDomainAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="overwrite" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="ortDomainAddResponse" /> + + <wsdl:message name="nicPublicInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicPublicInfoResponse"> + <wsdl:part name="return" type="typens:nicPublicInfoReturn" /> + </wsdl:message> + + <wsdl:message name="sqlpriveAlertSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="smsNumber" type="xsd:string" /> + <wsdl:part name="alert" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="sqlpriveAlertSetResponse" /> + + <wsdl:message name="dedicatedBackupIncludeDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="include" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupIncludeDelResponse" /> + + <wsdl:message name="dedicatedBandwidthSwitchingRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="oldBandwidth" type="xsd:string" /> + <wsdl:part name="newBandwidth" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBandwidthSwitchingResponse" /> + + <wsdl:message name="dedicatedIpLoadBalancingDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ipLoadBalancing" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingDelResponse" /> + + <wsdl:message name="sqlpriveMysqlOvhMyAdminRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="function" type="xsd:string" /> + <wsdl:part name="database" type="xsd:string" /> + <wsdl:part name="username" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlOvhMyAdminResponse" /> + + <wsdl:message name="ftpInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ftpInfoResponse"> + <wsdl:part name="return" type="typens:ftpInfoReturn" /> + </wsdl:message> + + <wsdl:message name="hostingListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="hostingListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfHostingListStructType" /> + </wsdl:message> + + <wsdl:message name="orderEmailMxPlanRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="payWithPoints" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="orderEmailMxPlanResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyPortabilityStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPortabilityStatusResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPortabilityStructType" /> + </wsdl:message> + + <wsdl:message name="mailingListSubscriberListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListSubscriberListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="mailingListSubscriberDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListSubscriberDelResponse" /> + + <wsdl:message name="domainLockStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainLockStatusResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="prepaidDomainRenewRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="prepaidDomainRenewResponse" /> + + <wsdl:message name="orderEmailMxLargeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="payWithPoints" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="orderEmailMxLargeResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="emailFilterActiveRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="filter" type="xsd:string" /> + <wsdl:part name="active" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="emailFilterActiveResponse" /> + + <wsdl:message name="telephonySecurityDepositInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySecurityDepositInfoResponse"> + <wsdl:part name="return" type="xsd:float" /> + </wsdl:message> + + <wsdl:message name="databaseListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="databaseListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDatabaseStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingServerAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ipLoadBalancing" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingServerAddResponse" /> + + <wsdl:message name="resellerDomainCreateCATRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="reason" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainCreateCATResponse" /> + + <wsdl:message name="ftpChangePasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="oldstate" type="xsd:string" /> + <wsdl:part name="newstate" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ftpChangePasswordResponse" /> + + <wsdl:message name="orderDedicatedFailoverRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="orderIps" type="xsd:int" /> + <wsdl:part name="payWithPoints" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="orderDedicatedFailoverResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="rpsGetIoStatsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="duration" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="rpsGetIoStatsResponse"> + <wsdl:part name="return" type="typens:rpsGetIoStatsReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="url" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVxmlModifyResponse" /> + + <wsdl:message name="cmsRenewAdminPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="cmsRenewAdminPasswordResponse" /> + + <wsdl:message name="telephonyConferenceAnnounceDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + <wsdl:part name="announceType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceAnnounceDeleteResponse" /> + + <wsdl:message name="dedicatedNetbootModifyByIdRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="id" type="xsd:string" /> + <wsdl:part name="root" type="xsd:string" /> + <wsdl:part name="rescueEmail" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootModifyByIdResponse" /> + + <wsdl:message name="telephonyScreenListInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="screenListType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyScreenListInfoResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyScreenStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyLineLogsOnGroupRequest"> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyLineLogsOnGroupResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyLineLogsStructType" /> + </wsdl:message> + + <wsdl:message name="databaseDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="db" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="databaseDeleteResponse" /> + + <wsdl:message name="telephonyConferenceAnnouncesStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceAnnouncesStatusResponse"> + <wsdl:part name="return" type="typens:telephonyConferenceAnnouncesStatusReturn" /> + </wsdl:message> + + <wsdl:message name="resellerDomainCreateASIARequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="CedCea" type="xsd:string" /> + <wsdl:part name="contactCED" type="xsd:string" /> + <wsdl:part name="localityCity" type="xsd:string" /> + <wsdl:part name="localitySp" type="xsd:string" /> + <wsdl:part name="ccLocality" type="xsd:string" /> + <wsdl:part name="legalEntityType" type="xsd:string" /> + <wsdl:part name="otherLEType" type="xsd:string" /> + <wsdl:part name="identForm" type="xsd:string" /> + <wsdl:part name="otherIdentForm" type="xsd:string" /> + <wsdl:part name="identNumber" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainCreateASIAResponse" /> + + <wsdl:message name="nicChangePasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicChangePasswordResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookContactDelResponse" /> + + <wsdl:message name="ticketCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="componentType" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="subject" type="xsd:string" /> + <wsdl:part name="incidentSummary" type="xsd:string" /> + <wsdl:part name="incidentDetails" type="xsd:string" /> + <wsdl:part name="incidentManip" type="xsd:string" /> + <wsdl:part name="level" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="ticketCreateResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="notepadAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="content" type="xsd:string" /> + <wsdl:part name="offset" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="notepadAddResponse" /> + + <wsdl:message name="subDomainAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="subDomainAddResponse" /> + + <wsdl:message name="dedicatedBackupGetDateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupGetDateResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedBackupDateStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedSecondaryDNSDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="nameserver" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedSecondaryDNSDelResponse" /> + + <wsdl:message name="domainLockRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainLockResponse" /> + + <wsdl:message name="emailFilterListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailFilterListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfEmailFilterStructType" /> + </wsdl:message> + + <wsdl:message name="zoneEntryAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="fieldtype" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="overwrite" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="zoneEntryAddResponse" /> + + <wsdl:message name="dedicatedSecondaryDNSGetAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedSecondaryDNSGetAllResponse"> + <wsdl:part name="return" type="typens:MyArrayOfAllSecondaryDNSStructType" /> + </wsdl:message> + + <wsdl:message name="infrastructureIpListGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="infrastructureIpListGetResponse"> + <wsdl:part name="return" type="typens:MyArrayOfInfrastructureIpStructType" /> + </wsdl:message> + + <wsdl:message name="mailingListInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListInfoResponse"> + <wsdl:part name="return" type="typens:mailingListStruct" /> + </wsdl:message> + + <wsdl:message name="serviceListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="componentSubType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfServiceStructType" /> + </wsdl:message> + + <wsdl:message name="serviceGroupSetCommentRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupSetCommentResponse" /> + + <wsdl:message name="nicCreateITRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="sex" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="phone" type="xsd:string" /> + <wsdl:part name="fax" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="area" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="isOwner" type="xsd:boolean" /> + <wsdl:part name="legalform" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="legalName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + <wsdl:part name="birthDay" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="nationalIdentificationNumber" type="xsd:string" /> + <wsdl:part name="companyNationalIdentificationNumber" type="xsd:string" /> + <wsdl:part name="corporationType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicCreateITResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainOperationCancelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="domainOperationCancelResponse" /> + + <wsdl:message name="telephonyFMHuntingModificationAnonymousCallRejectionRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="anonymousCallRejection" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyFMHuntingModificationAnonymousCallRejectionResponse" /> + + <wsdl:message name="dedicatedBandwidthManagementGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBandwidthManagementGetResponse"> + <wsdl:part name="return" type="typens:dedicatedBandwidthManagementReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyDdiModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="destination" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDdiModifyResponse" /> + + <wsdl:message name="dedicatedMonitoringStatusUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="disabled" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringStatusUpdateResponse" /> + + <wsdl:message name="telephonyRedirectInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyRedirectInfoResponse"> + <wsdl:part name="return" type="typens:telephonyRedirectInfoReturn" /> + </wsdl:message> + + <wsdl:message name="anonymousFtpChangePasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="anonymousFtpChangePasswordResponse" /> + + <wsdl:message name="telephonySmsSendRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="numberFrom" type="xsd:string" /> + <wsdl:part name="numberTo" type="xsd:string" /> + <wsdl:part name="message" type="xsd:string" /> + <wsdl:part name="smsValidity" type="xsd:int" /> + <wsdl:part name="smsClass" type="xsd:int" /> + <wsdl:part name="smsDeferred" type="xsd:int" /> + <wsdl:part name="smsPriority" type="xsd:int" /> + <wsdl:part name="smsCoding" type="xsd:int" /> + <wsdl:part name="tag" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSendResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="automatedMailLockRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailLockResponse" /> + + <wsdl:message name="dedicatedFailoverRipeGetIpRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverRipeGetIpResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedRipeGetIpStructType" /> + </wsdl:message> + + <wsdl:message name="responderEmailModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="responder" type="xsd:string" /> + <wsdl:part name="content" type="xsd:string" /> + <wsdl:part name="delivered_to" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="responderEmailModifyResponse" /> + + <wsdl:message name="dedicatedInstallBasicRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="bitFormat" type="xsd:string" /> + <wsdl:part name="os" type="xsd:string" /> + <wsdl:part name="sql" type="xsd:string" /> + <wsdl:part name="customerScriptLink" type="xsd:string" /> + <wsdl:part name="customerScriptReturn" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedInstallBasicResponse" /> + + <wsdl:message name="emailGetDomainMxFilteringRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailGetDomainMxFilteringResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionCreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="size" type="xsd:int" /> + <wsdl:part name="protocol" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionCreateResponse" /> + + <wsdl:message name="nicModifyEmailRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicModifyEmailResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyToneDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="toneType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyToneDeleteResponse" /> + + <wsdl:message name="dedicatedInstallResetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedInstallResetResponse" /> + + <wsdl:message name="orderDedicatedFailoverRipeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="address" type="xsd:int" /> + <wsdl:part name="period" type="xsd:int" /> + <wsdl:part name="payWithPoints" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="orderDedicatedFailoverRipeResponse"> + <wsdl:part name="return" type="typens:orderStruct" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + <wsdl:part name="workPhone" type="xsd:string" /> + <wsdl:part name="workMobile" type="xsd:string" /> + <wsdl:part name="homePhone" type="xsd:string" /> + <wsdl:part name="homeMobile" type="xsd:string" /> + <wsdl:part name="groupName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupContactModifyResponse" /> + + <wsdl:message name="serviceGroupRemoveServiceRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="service" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupRemoveServiceResponse" /> + + <wsdl:message name="telephonyScreenListBlackWhiteChoiceModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="screenList" type="xsd:string" /> + <wsdl:part name="outgoingCodeUnlock" type="xsd:string" /> + <wsdl:part name="incomingOoutgoing" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyScreenListBlackWhiteChoiceModifyResponse" /> + + <wsdl:message name="dedicatedFilterIrcClientRuleDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="fromIp" type="xsd:string" /> + <wsdl:part name="toIp" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFilterIrcClientRuleDelResponse" /> + + <wsdl:message name="domainHostAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="host" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainHostAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="popModifyDescriptionRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="description" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popModifyDescriptionResponse" /> + + <wsdl:message name="crontabAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="path" type="xsd:string" /> + <wsdl:part name="programLanguage" type="xsd:string" /> + <wsdl:part name="weekDay" type="xsd:string" /> + <wsdl:part name="days" type="xsd:string" /> + <wsdl:part name="hours" type="xsd:string" /> + <wsdl:part name="desc" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="otherEmail" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="crontabAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderDescriptionRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="description" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderDescriptionResponse" /> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="abbreviatedNumber" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupDelResponse" /> + + <wsdl:message name="mailingListModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="lang" type="xsd:string" /> + <wsdl:part name="replyto" type="xsd:string" /> + <wsdl:part name="message_moderation" type="xsd:boolean" /> + <wsdl:part name="users_post_only" type="xsd:boolean" /> + <wsdl:part name="subscription_moderation" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="mailingListModifyResponse" /> + + <wsdl:message name="managedServicesPartitionGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionGetResponse"> + <wsdl:part name="return" type="typens:MyArrayOfManagedServicesPartitionStructType" /> + </wsdl:message> + + <wsdl:message name="emailDelMasterNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailDelMasterNicResponse" /> + + <wsdl:message name="redirectedEmailModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="redirected" type="xsd:string" /> + <wsdl:part name="old_target" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="redirectedEmailModifyResponse" /> + + <wsdl:message name="popInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popInfoResponse"> + <wsdl:part name="return" type="typens:popStruct" /> + </wsdl:message> + + <wsdl:message name="zoneExportRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="zoneExportResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMrtgInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="duration" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMrtgInfoResponse"> + <wsdl:part name="return" type="typens:dedicatedMrtgInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupReinstallDataRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupReinstallDataResponse" /> + + <wsdl:message name="serviceFreedomListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceFreedomListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfFreedomStructType" /> + </wsdl:message> + + <wsdl:message name="supportGetFullMessageRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="messageId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="supportGetFullMessageResponse"> + <wsdl:part name="return" type="typens:supportMessageDetailReturn" /> + </wsdl:message> + + <wsdl:message name="emailGetDomainCatchAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailGetDomainCatchAllResponse"> + <wsdl:part name="return" type="typens:catchAllGetReturn" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserSendRequest"> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="numberFrom" type="xsd:string" /> + <wsdl:part name="numberTo" type="xsd:string" /> + <wsdl:part name="message" type="xsd:string" /> + <wsdl:part name="smsValidity" type="xsd:int" /> + <wsdl:part name="smsClass" type="xsd:int" /> + <wsdl:part name="smsDeferred" type="xsd:int" /> + <wsdl:part name="smsPriority" type="xsd:int" /> + <wsdl:part name="smsCoding" type="xsd:int" /> + <wsdl:part name="tag" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserSendResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="mailingListAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="lang" type="xsd:string" /> + <wsdl:part name="replyto" type="xsd:string" /> + <wsdl:part name="message_moderation" type="xsd:boolean" /> + <wsdl:part name="users_post_only" type="xsd:boolean" /> + <wsdl:part name="subscription_moderation" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="mailingListAddResponse" /> + + <wsdl:message name="dedicatedBackupFtpInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupFtpInfoResponse"> + <wsdl:part name="return" type="typens:dedicatedBackupFtpInfoReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupGroupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookOnGroupGroupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookGroupStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserPasswordResponse" /> + + <wsdl:message name="dedicatedMonitoringModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="id" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringModifyResponse" /> + + <wsdl:message name="momVersionRequest"> + </wsdl:message> + + <wsdl:message name="momVersionResponse"> + <wsdl:part name="return" type="typens:momVersionReturn" /> + </wsdl:message> + + <wsdl:message name="emailSetMasterNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailSetMasterNicResponse" /> + + <wsdl:message name="sqlpriveMysqlDatabaseListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlDatabaseListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="automatedMailReturnSetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailReturnSetResponse" /> + + <wsdl:message name="databaseRecreateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="db" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="databaseRecreateResponse" /> + + <wsdl:message name="popModifyPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="doNotSendMail" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="popModifyPasswordResponse" /> + + <wsdl:message name="responderEmailAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="responder" type="xsd:string" /> + <wsdl:part name="content" type="xsd:string" /> + <wsdl:part name="delivered_to" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="responderEmailAddResponse" /> + + <wsdl:message name="sqlpriveMysqlProcessListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlProcessListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSqlpriveMysqlProcessStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetUserQuotaRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetUserQuotaResponse"> + <wsdl:part name="return" type="typens:telephonySmsUserQuotaStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetRandomAvailableIpFromCountryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetRandomAvailableIpFromCountryResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderDeleteResponse" /> + + <wsdl:message name="telephonyToneStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyToneStatusResponse"> + <wsdl:part name="return" type="typens:telephonyToneStatusReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyDdiInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDdiInfoResponse"> + <wsdl:part name="return" type="typens:telephonyDdiInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedInstallBasicProgressRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedInstallBasicProgressResponse"> + <wsdl:part name="return" type="typens:dedicatedBasicInstallProgressReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedAddServiceMonitoringAlertEmailRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="port" type="xsd:int" /> + <wsdl:part name="itemId" type="xsd:int" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedAddServiceMonitoringAlertEmailResponse" /> + + <wsdl:message name="dedicatedFailoverUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="routedTo" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFailoverUpdateResponse" /> + + <wsdl:message name="telephonyHuntingGroupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGroupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryListWayTypeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ape" type="xsd:string" /> + <wsdl:part name="PJCode" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryListWayTypeResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyDirectoryWayTypeStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyCallListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="listBegin" type="xsd:int" /> + <wsdl:part name="listLimit" type="xsd:int" /> + <wsdl:part name="listType" type="xsd:string" /> + <wsdl:part name="date" type="xsd:string" /> + <wsdl:part name="callReceived" type="xsd:boolean" /> + <wsdl:part name="filterSearch" type="xsd:string" /> + <wsdl:part name="filterValue" type="xsd:string" /> + <wsdl:part name="planType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyCallListResponse"> + <wsdl:part name="return" type="typens:telephonyCallListReturn" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="size" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="managedServicesPartitionUpdateResponse" /> + + <wsdl:message name="TelephonySipToAliasOfferRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="delete" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="TelephonySipToAliasOfferResponse" /> + + <wsdl:message name="dedicatedFilterIrcServerRuleAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="toIp" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFilterIrcServerRuleAddResponse" /> + + <wsdl:message name="dedicatedVirtualMacIpAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="newMac" type="xsd:string" /> + <wsdl:part name="typeMac" type="xsd:string" /> + <wsdl:part name="macName" type="xsd:string" /> + <wsdl:part name="mac" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedVirtualMacIpAddResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAliasToSipPossibilitiesRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAliasToSipPossibilitiesResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyAliasToLinePossibilityPriceStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="group" type="xsd:string" /> + <wsdl:part name="abbreviatedNumber" type="xsd:string" /> + <wsdl:part name="relatedNumber" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberOnGroupAddResponse" /> + + <wsdl:message name="telephonyHuntingModificationQueueRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="onHoldTimer" type="xsd:int" /> + <wsdl:part name="queueSize" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingModificationQueueResponse" /> + + <wsdl:message name="telephonyBillDetailsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="date" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillDetailsResponse"> + <wsdl:part name="return" type="typens:telephonyBillDetailsReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="callNumber" type="xsd:string" /> + <wsdl:part name="countryCode" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyDirectoryInfoResponse"> + <wsdl:part name="return" type="typens:telephonyDirectoryInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dnsInstallCustomRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="hostingtype" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="mxtype" type="xsd:string" /> + <wsdl:part name="mx" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="minimized" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="dnsInstallCustomResponse" /> + + <wsdl:message name="sqlpriveMysqlActivateOvhManagementRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlActivateOvhManagementResponse" /> + + <wsdl:message name="telephonyClick2CallDoBySessionRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="calling" type="xsd:string" /> + <wsdl:part name="called" type="xsd:string" /> + <wsdl:part name="billingNumber" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallDoBySessionResponse" /> + + <wsdl:message name="prepaidGetThresholdRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="prepaidGetThresholdResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="abbreviatedNumber" type="xsd:string" /> + <wsdl:part name="relatedNumber" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberAddResponse" /> + + <wsdl:message name="domainWhoisObfuscatorUnsetAllRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorUnsetAllResponse" /> + + <wsdl:message name="multiFtpDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiFtpDelResponse" /> + + <wsdl:message name="sqlpriveMysqlGetPossibleDumpRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="directory" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlGetPossibleDumpResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSqlpriveGetPossibleDumpStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberOrderRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + <wsdl:part name="aliasNumber" type="xsd:string" /> + <wsdl:part name="prefix" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="streetName" type="xsd:string" /> + <wsdl:part name="streetNumber" type="xsd:string" /> + <wsdl:part name="address" type="xsd:string" /> + <wsdl:part name="zip" type="xsd:string" /> + <wsdl:part name="city" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="numberToReserve" type="xsd:string" /> + <wsdl:part name="procedureId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberOrderResponse"> + <wsdl:part name="return" type="typens:telephonyNumberOrderReturn" /> + </wsdl:message> + + <wsdl:message name="prepaidGetHistoryRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="page" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="prepaidGetHistoryResponse"> + <wsdl:part name="return" type="typens:prepaidGetHistoryReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberCityForZoneListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="zone" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyNumberCityForZoneListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyNumberCityForZoneStructType" /> + </wsdl:message> + + <wsdl:message name="redirectedEmailDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="redirected" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="redirectedEmailDelResponse" /> + + <wsdl:message name="dedicatedInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedInfoResponse"> + <wsdl:part name="return" type="typens:dedicatedInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupUpdateDateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="backupId" type="xsd:string" /> + <wsdl:part name="monday" type="xsd:string" /> + <wsdl:part name="tuesday" type="xsd:string" /> + <wsdl:part name="wednesday" type="xsd:string" /> + <wsdl:part name="thursday" type="xsd:string" /> + <wsdl:part name="friday" type="xsd:string" /> + <wsdl:part name="saturday" type="xsd:string" /> + <wsdl:part name="sunday" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedBackupUpdateDateResponse" /> + + <wsdl:message name="domainOperationListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainOperationListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfOperationStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyTonesOptionsModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="toneRingback" type="xsd:boolean" /> + <wsdl:part name="toneOnHold" type="xsd:boolean" /> + <wsdl:part name="toneOnClosure" type="xsd:boolean" /> + <wsdl:part name="toneOnCallWaiting" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="telephonyTonesOptionsModifyResponse" /> + + <wsdl:message name="popAttachMasterNicRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popAttachMasterNicResponse" /> + + <wsdl:message name="crontabInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="crontabInfoResponse"> + <wsdl:part name="return" type="typens:crontabInfoReturn" /> + </wsdl:message> + + <wsdl:message name="serviceGroupSetNameRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="newName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupSetNameResponse" /> + + <wsdl:message name="telephonyOfferInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyOfferInfoResponse"> + <wsdl:part name="return" type="typens:telephonyOfferInfoReturn" /> + </wsdl:message> + + <wsdl:message name="multiDomainAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="multidomain" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="ownLog" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="multiDomainAddResponse" /> + + <wsdl:message name="telephonyPhonebookDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookDelResponse" /> + + <wsdl:message name="redirectedEmailListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="redirectedEmailListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfEmailRedirectionStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserAddResponse" /> + + <wsdl:message name="nicUpdateITRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="sex" type="xsd:string" /> + <wsdl:part name="legalForm" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="legalName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + <wsdl:part name="birthDay" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="nationalIdentificationNumber" type="xsd:string" /> + <wsdl:part name="companyNationalIdentificationNumber" type="xsd:string" /> + <wsdl:part name="corporationType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicUpdateITResponse" /> + + <wsdl:message name="telephonySmsUserHistoryRequest"> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="smsId" type="xsd:int" /> + <wsdl:part name="user" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + <wsdl:part name="sortField" type="xsd:string" /> + <wsdl:part name="sortOrder" type="xsd:string" /> + <wsdl:part name="tag" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserHistoryResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonySmsHistoryStructType" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringStatusGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringStatusGetResponse"> + <wsdl:part name="return" type="typens:dedicatedMonitoringStatusReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="kernel" type="xsd:string" /> + <wsdl:part name="cpufamily" type="xsd:string" /> + <wsdl:part name="grsec" type="xsd:boolean" /> + <wsdl:part name="smp" type="xsd:boolean" /> + <wsdl:part name="ipv6" type="xsd:boolean" /> + <wsdl:part name="root" type="xsd:string" /> + <wsdl:part name="rescueEmail" type="xsd:string" /> + <wsdl:part name="hz" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedNetbootModifyResponse" /> + + <wsdl:message name="subDomainListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="subDomainListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSubDomainStructType" /> + </wsdl:message> + + <wsdl:message name="sqlpriveFtpPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveFtpPasswordResponse" /> + + <wsdl:message name="telephonyOfferModifyPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyOfferModifyPasswordResponse" /> + + <wsdl:message name="dedicatedFilterIrcClientRuleListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedFilterIrcClientRuleListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedFilterIrcRuleStructType" /> + </wsdl:message> + + <wsdl:message name="dnsUninstallRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dnsUninstallResponse" /> + + <wsdl:message name="telephonyPhonebookListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookStructType" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="keyNum" type="xsd:int" /> + <wsdl:part name="function" type="xsd:string" /> + <wsdl:part name="relatedNumber" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFunctionKeyAddResponse" /> + + <wsdl:message name="sqlpriveMysqlRootPasswordRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlRootPasswordResponse" /> + + <wsdl:message name="telephonySmsUserDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsUserDelResponse" /> + + <wsdl:message name="emailSetDomainMxFilteringRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="subdomain" type="xsd:string" /> + <wsdl:part name="type" type="xsd:string" /> + <wsdl:part name="mx" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="emailSetDomainMxFilteringResponse" /> + + <wsdl:message name="telephonyVoicemailMessagesStatusRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailMessagesStatusResponse"> + <wsdl:part name="return" type="typens:telephonyVoicemailMessagesStatusReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookModifyResponse" /> + + <wsdl:message name="nicUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="firstname" type="xsd:string" /> + <wsdl:part name="legalForm" type="xsd:string" /> + <wsdl:part name="organisation" type="xsd:string" /> + <wsdl:part name="legalName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="vat" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="nicUpdateResponse" /> + + <wsdl:message name="telephonyOfferModifyNameRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyOfferModifyNameResponse" /> + + <wsdl:message name="notepadFlushRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="notepadFlushResponse" /> + + <wsdl:message name="multiDomainModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="multidomain" type="xsd:string" /> + <wsdl:part name="target" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="ownLog" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="multiDomainModifyResponse" /> + + <wsdl:message name="languageRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="languageResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringSMSModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="id" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="phoneNumberTo" type="xsd:string" /> + <wsdl:part name="language" type="xsd:string" /> + <wsdl:part name="status" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringSMSModifyResponse" /> + + <wsdl:message name="telephonyPhonebookGroupListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyPhonebookGroupListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyPhonebookGroupStructType" /> + </wsdl:message> + + <wsdl:message name="logsAccessDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="user" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="logsAccessDelResponse" /> + + <wsdl:message name="logsAccessAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="user" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="logsAccessAddResponse" /> + + <wsdl:message name="multiDomainInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="multidomain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiDomainInfoResponse"> + <wsdl:part name="return" type="typens:multiDomainStruct" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainWhoisObfuscatorListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDomainWhoisObfuscatorStructType" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlProcessKillRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="process" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlProcessKillResponse" /> + + <wsdl:message name="telephonyBillingAccountInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountInfoResponse"> + <wsdl:part name="return" type="typens:telephonyBillingAccountInfoReturn" /> + </wsdl:message> + + <wsdl:message name="mailingListListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfMailingListStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsSenderAddResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyLineConsumptionCSVByMailRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="date" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineConsumptionCSVByMailResponse" /> + + <wsdl:message name="mailingListSubscriberListByEmailRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="ml" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="mailingListSubscriberListByEmailResponse" /> + + <wsdl:message name="supportCloseThreadsRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="threads" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="supportCloseThreadsResponse" /> + + <wsdl:message name="sqlpriveMysqlDatabaseSaveRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + <wsdl:part name="database" type="xsd:string" /> + <wsdl:part name="comment" type="xsd:string" /> + <wsdl:part name="compress" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="sqlpriveMysqlDatabaseSaveResponse"> + <wsdl:part name="return" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="telephonyListReversableCallsFromNumberRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="reversableDelay" type="xsd:string" /> + <wsdl:part name="pagingStart" type="xsd:int" /> + <wsdl:part name="pagingLimit" type="xsd:int" /> + <wsdl:part name="sortOrder" type="xsd:string" /> + <wsdl:part name="sortField" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyListReversableCallsFromNumberResponse"> + <wsdl:part name="return" type="typens:telephonyReversmentsDetailsStructReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyBillingAccountListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfTelephonyBillingAccountStructType" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetQuotaNotificationForUserRequest"> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonySmsGetQuotaNotificationForUserResponse"> + <wsdl:part name="return" type="typens:telephonyNotificationSmsUserStruct" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="id" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringDelResponse" /> + + <wsdl:message name="telephonyChangeNicModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nicNames" type="typens:MyArrayOfStringType" /> + <wsdl:part name="nicPasswords" type="typens:MyArrayOfStringType" /> + <wsdl:part name="nicTypes" type="typens:MyArrayOfStringType" /> + <wsdl:part name="changeTypes" type="typens:MyArrayOfStringType" /> + <wsdl:part name="changeElts" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyChangeNicModifyResponse" /> + + <wsdl:message name="dedicatedMonitoringServiceAddSMSRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="ip" type="xsd:string" /> + <wsdl:part name="port" type="xsd:int" /> + <wsdl:part name="protocol" type="xsd:string" /> + <wsdl:part name="period" type="xsd:string" /> + <wsdl:part name="string" type="xsd:string" /> + <wsdl:part name="url" type="xsd:string" /> + <wsdl:part name="smsAccount" type="xsd:string" /> + <wsdl:part name="phoneNumberTo" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringServiceAddSMSResponse"> + <wsdl:part name="return" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="prepaidGetBalanceRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="prepaidGetBalanceResponse"> + <wsdl:part name="return" type="xsd:float" /> + </wsdl:message> + + <wsdl:message name="dnsGeolocalizeHostingRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dnsGeolocalizeHostingResponse" /> + + <wsdl:message name="popAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + <wsdl:part name="description" type="xsd:string" /> + <wsdl:part name="nic" type="xsd:string" /> + <wsdl:part name="quota" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="popAddResponse" /> + + <wsdl:message name="telephonyClick2CallUserAddRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="login" type="xsd:string" /> + <wsdl:part name="password" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyClick2CallUserAddResponse" /> + + <wsdl:message name="domainHostInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="host" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="domainHostInfoResponse"> + <wsdl:part name="return" type="typens:domainHostInfoReturn" /> + </wsdl:message> + + <wsdl:message name="dedicatedListRequest"> + <wsdl:part name="session" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceOptionsModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="room" type="xsd:string" /> + <wsdl:part name="askName" type="xsd:boolean" /> + <wsdl:part name="tellMemberCount" type="xsd:boolean" /> + <wsdl:part name="announce_rcv" type="xsd:boolean" /> + <wsdl:part name="announce_snd" type="xsd:boolean" /> + <wsdl:part name="dtmfmenu" type="xsd:boolean" /> + <wsdl:part name="recordConf" type="xsd:boolean" /> + <wsdl:part name="recordDir" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyConferenceOptionsModifyResponse" /> + + <wsdl:message name="dedicatedGetAvailableIpFromNetworkRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + <wsdl:part name="network" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedGetAvailableIpFromNetworkResponse"> + <wsdl:part name="return" type="typens:MyArrayOfStringType" /> + </wsdl:message> + + <wsdl:message name="crontabModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="id" type="xsd:int" /> + <wsdl:part name="path" type="xsd:string" /> + <wsdl:part name="programLanguage" type="xsd:string" /> + <wsdl:part name="weekDay" type="xsd:string" /> + <wsdl:part name="days" type="xsd:string" /> + <wsdl:part name="hours" type="xsd:string" /> + <wsdl:part name="desc" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="otherEmail" type="xsd:string" /> + <wsdl:part name="enable" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="crontabModifyResponse" /> + + <wsdl:message name="sqlpriveCronGetRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="server" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="sqlpriveCronGetResponse"> + <wsdl:part name="return" type="typens:MyArrayOfSqlpriveCronStructType" /> + </wsdl:message> + + <wsdl:message name="supportReactivateThreadRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="threadId" type="xsd:int" /> + </wsdl:message> + + <wsdl:message name="supportReactivateThreadResponse" /> + + <wsdl:message name="zoneImportRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="zone" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="zoneImportResponse" /> + + <wsdl:message name="multiDomainDelRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="multidomain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="multiDomainDelResponse" /> + + <wsdl:message name="dedicatedMailinglistSubscribeRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="email" type="xsd:string" /> + <wsdl:part name="mailingList" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMailinglistSubscribeResponse" /> + + <wsdl:message name="serviceGroupInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupInfoResponse"> + <wsdl:part name="return" type="typens:serviceGroupStruct" /> + </wsdl:message> + + <wsdl:message name="automatedMailFlushRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="automatedMailFlushResponse" /> + + <wsdl:message name="managedServicesNameUpdateRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="storage" type="xsd:string" /> + <wsdl:part name="customName" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="managedServicesNameUpdateResponse" /> + + <wsdl:message name="popGetQuotaRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="pop" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="popGetQuotaResponse"> + <wsdl:part name="return" type="typens:popGetQuotaReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenOptionsModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="forwardUnconditionalNumber" type="xsd:string" /> + <wsdl:part name="mainVoicemail" type="xsd:string" /> + <wsdl:part name="forwardPolicyIndex" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyHuntingGenericScreenOptionsModifyResponse" /> + + <wsdl:message name="telephonyPlugAndPhoneInfoRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyPlugAndPhoneInfoResponse"> + <wsdl:part name="return" type="typens:telephonyPlugAndPhoneInfoReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyReversmentsRefundFromBillingAccountRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="billingAccount" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyReversmentsRefundFromBillingAccountResponse" /> + + <wsdl:message name="telephonyFaxCampaignDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="reference" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyFaxCampaignDeleteResponse" /> + + <wsdl:message name="telephonyVoicemailMessageDeleteRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="messageType" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyVoicemailMessageDeleteResponse" /> + + <wsdl:message name="dedicatedIpLoadBalancingNameModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="ipLoadBalancing" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedIpLoadBalancingNameModifyResponse" /> + + <wsdl:message name="telephonyLineOptionsListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyLineOptionsListResponse"> + <wsdl:part name="return" type="typens:telephonyLineOptionsListReturn" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberModifyRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="number" type="xsd:string" /> + <wsdl:part name="country" type="xsd:string" /> + <wsdl:part name="abbreviatedNumber" type="xsd:string" /> + <wsdl:part name="relatedNumber" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="surname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="telephonyAbbreviatedNumberModifyResponse" /> + + <wsdl:message name="dedicatedMonitoringServiceListRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="hostname" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="dedicatedMonitoringServiceListResponse"> + <wsdl:part name="return" type="typens:MyArrayOfDedicatedMonitoringServiceStructType" /> + </wsdl:message> + + <wsdl:message name="resellerDomainTransferRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="domain" type="xsd:string" /> + <wsdl:part name="authinfo" type="xsd:string" /> + <wsdl:part name="hosting" type="xsd:string" /> + <wsdl:part name="offer" type="xsd:string" /> + <wsdl:part name="profile" type="xsd:string" /> + <wsdl:part name="owo" type="xsd:string" /> + <wsdl:part name="owner" type="xsd:string" /> + <wsdl:part name="admin" type="xsd:string" /> + <wsdl:part name="tech" type="xsd:string" /> + <wsdl:part name="billing" type="xsd:string" /> + <wsdl:part name="dns1" type="xsd:string" /> + <wsdl:part name="dns2" type="xsd:string" /> + <wsdl:part name="dns3" type="xsd:string" /> + <wsdl:part name="dns4" type="xsd:string" /> + <wsdl:part name="dns5" type="xsd:string" /> + <wsdl:part name="method" type="xsd:string" /> + <wsdl:part name="legalName" type="xsd:string" /> + <wsdl:part name="legalNumber" type="xsd:string" /> + <wsdl:part name="afnicIdent" type="xsd:string" /> + <wsdl:part name="birthDate" type="xsd:string" /> + <wsdl:part name="birthCity" type="xsd:string" /> + <wsdl:part name="birthDepartement" type="xsd:string" /> + <wsdl:part name="birthCountry" type="xsd:string" /> + <wsdl:part name="dryRun" type="xsd:boolean" /> + </wsdl:message> + + <wsdl:message name="resellerDomainTransferResponse" /> + + <wsdl:message name="serviceGroupAddServiceRequest"> + <wsdl:part name="session" type="xsd:string" /> + <wsdl:part name="name" type="xsd:string" /> + <wsdl:part name="service" type="xsd:string" /> + <wsdl:part name="component" type="xsd:string" /> + </wsdl:message> + + <wsdl:message name="serviceGroupAddServiceResponse" /> + + <wsdl:message name="FailureMsg"> + <part name="error" type="typens:FailureType" /> + </wsdl:message> + + <wsdl:portType name="managerPortType"> + + <wsdl:operation name="telephonyConferenceDel"> + <wsdl:input message="wsdlns:telephonyConferenceDelRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListModeratorDel"> + <wsdl:input message="wsdlns:mailingListModeratorDelRequest"/> + <wsdl:output message="wsdlns:mailingListModeratorDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberInfo"> + <wsdl:input message="wsdlns:telephonyNumberInfoRequest"/> + <wsdl:output message="wsdlns:telephonyNumberInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlRestart"> + <wsdl:input message="wsdlns:sqlpriveMysqlRestartRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlRestartResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="logout"> + <wsdl:input message="wsdlns:logoutRequest"/> + <wsdl:output message="wsdlns:logoutResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiFtpChangeDirectory"> + <wsdl:input message="wsdlns:multiFtpChangeDirectoryRequest"/> + <wsdl:output message="wsdlns:multiFtpChangeDirectoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlVersion"> + <wsdl:input message="wsdlns:sqlpriveMysqlVersionRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlVersionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseDel"> + <wsdl:input message="wsdlns:dedicatedReverseDelRequest"/> + <wsdl:output message="wsdlns:dedicatedReverseDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedDelServiceMonitoringAlert"> + <wsdl:input message="wsdlns:dedicatedDelServiceMonitoringAlertRequest"/> + <wsdl:output message="wsdlns:dedicatedDelServiceMonitoringAlertResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailOptionsList"> + <wsdl:input message="wsdlns:telephonyVoicemailOptionsListRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailOptionsListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookSharePeerList"> + <wsdl:input message="wsdlns:telephonyPhonebookSharePeerListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookSharePeerListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupGetAllInfo"> + <wsdl:input message="wsdlns:serviceGroupGetAllInfoRequest"/> + <wsdl:output message="wsdlns:serviceGroupGetAllInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailAdd"> + <wsdl:input message="wsdlns:redirectedEmailAddRequest"/> + <wsdl:output message="wsdlns:redirectedEmailAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicModifyInfos"> + <wsdl:input message="wsdlns:nicModifyInfosRequest"/> + <wsdl:output message="wsdlns:nicModifyInfosResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyRedirectModify"> + <wsdl:input message="wsdlns:telephonyRedirectModifyRequest"/> + <wsdl:output message="wsdlns:telephonyRedirectModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseImportFromFile"> + <wsdl:input message="wsdlns:sqlpriveMysqlDatabaseImportFromFileRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlDatabaseImportFromFileResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberModify"> + <wsdl:input message="wsdlns:telephonyNumberModifyRequest"/> + <wsdl:output message="wsdlns:telephonyNumberModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedAddServiceMonitoringAlertSMS"> + <wsdl:input message="wsdlns:dedicatedAddServiceMonitoringAlertSMSRequest"/> + <wsdl:output message="wsdlns:dedicatedAddServiceMonitoringAlertSMSResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetVolumeHistory"> + <wsdl:input message="wsdlns:automatedMailGetVolumeHistoryRequest"/> + <wsdl:output message="wsdlns:automatedMailGetVolumeHistoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetTodo"> + <wsdl:input message="wsdlns:automatedMailGetTodoRequest"/> + <wsdl:output message="wsdlns:automatedMailGetTodoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingList"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingListRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupReinstallConfiguration"> + <wsdl:input message="wsdlns:dedicatedBackupReinstallConfigurationRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupReinstallConfigurationResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetHisto"> + <wsdl:input message="wsdlns:dedicatedBackupGetHistoRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupGetHistoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainHostUpdate"> + <wsdl:input message="wsdlns:domainHostUpdateRequest"/> + <wsdl:output message="wsdlns:domainHostUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupUpdate"> + <wsdl:input message="wsdlns:dedicatedBackupUpdateRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupList"> + <wsdl:input message="wsdlns:serviceGroupListRequest"/> + <wsdl:output message="wsdlns:serviceGroupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="databaseChangePassword"> + <wsdl:input message="wsdlns:databaseChangePasswordRequest"/> + <wsdl:output message="wsdlns:databaseChangePasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="billingInvoiceList"> + <wsdl:input message="wsdlns:billingInvoiceListRequest"/> + <wsdl:output message="wsdlns:billingInvoiceListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="globalAccessByNic"> + <wsdl:input message="wsdlns:globalAccessByNicRequest"/> + <wsdl:output message="wsdlns:globalAccessByNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootGetRescueEmail"> + <wsdl:input message="wsdlns:dedicatedNetbootGetRescueEmailRequest"/> + <wsdl:output message="wsdlns:dedicatedNetbootGetRescueEmailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketListIncidentsByDomain"> + <wsdl:input message="wsdlns:ticketListIncidentsByDomainRequest"/> + <wsdl:output message="wsdlns:ticketListIncidentsByDomainResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsMultiSend"> + <wsdl:input message="wsdlns:telephonySmsMultiSendRequest"/> + <wsdl:output message="wsdlns:telephonySmsMultiSendResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceListPaginated"> + <wsdl:input message="wsdlns:serviceListPaginatedRequest"/> + <wsdl:output message="wsdlns:serviceListPaginatedResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedRtmListBackdoor"> + <wsdl:input message="wsdlns:dedicatedRtmListBackdoorRequest"/> + <wsdl:output message="wsdlns:dedicatedRtmListBackdoorResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneEntryList"> + <wsdl:input message="wsdlns:zoneEntryListRequest"/> + <wsdl:output message="wsdlns:zoneEntryListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dnsDefaultInstallCustom"> + <wsdl:input message="wsdlns:dnsDefaultInstallCustomRequest"/> + <wsdl:output message="wsdlns:dnsDefaultInstallCustomResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxHistory"> + <wsdl:input message="wsdlns:telephonyFaxHistoryRequest"/> + <wsdl:output message="wsdlns:telephonyFaxHistoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiFtpChangePassword"> + <wsdl:input message="wsdlns:multiFtpChangePasswordRequest"/> + <wsdl:output message="wsdlns:multiFtpChangePasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlUserList"> + <wsdl:input message="wsdlns:sqlpriveMysqlUserListRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlUserListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainUnlock"> + <wsdl:input message="wsdlns:domainUnlockRequest"/> + <wsdl:output message="wsdlns:domainUnlockResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyRestrictionList"> + <wsdl:input message="wsdlns:telephonyRestrictionListRequest"/> + <wsdl:output message="wsdlns:telephonyRestrictionListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorSetAll"> + <wsdl:input message="wsdlns:domainWhoisObfuscatorSetAllRequest"/> + <wsdl:output message="wsdlns:domainWhoisObfuscatorSetAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popDetachMasterNic"> + <wsdl:input message="wsdlns:popDetachMasterNicRequest"/> + <wsdl:output message="wsdlns:popDetachMasterNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillList"> + <wsdl:input message="wsdlns:telephonyBillListRequest"/> + <wsdl:output message="wsdlns:telephonyBillListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberCustomList"> + <wsdl:input message="wsdlns:telephonyNumberCustomListRequest"/> + <wsdl:output message="wsdlns:telephonyNumberCustomListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPlugAndPhoneSkinModify"> + <wsdl:input message="wsdlns:telephonyPlugAndPhoneSkinModifyRequest"/> + <wsdl:output message="wsdlns:telephonyPlugAndPhoneSkinModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainList"> + <wsdl:input message="wsdlns:domainListRequest"/> + <wsdl:output message="wsdlns:domainListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxOptionsModify"> + <wsdl:input message="wsdlns:telephonyFaxOptionsModifyRequest"/> + <wsdl:output message="wsdlns:telephonyFaxOptionsModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountSummary"> + <wsdl:input message="wsdlns:telephonyBillingAccountSummaryRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountSummaryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="overquotaInfo"> + <wsdl:input message="wsdlns:overquotaInfoRequest"/> + <wsdl:output message="wsdlns:overquotaInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetErrors"> + <wsdl:input message="wsdlns:automatedMailGetErrorsRequest"/> + <wsdl:output message="wsdlns:automatedMailGetErrorsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserDel"> + <wsdl:input message="wsdlns:telephonyClick2CallUserDelRequest"/> + <wsdl:output message="wsdlns:telephonyClick2CallUserDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailGetCapabilities"> + <wsdl:input message="wsdlns:emailGetCapabilitiesRequest"/> + <wsdl:output message="wsdlns:emailGetCapabilitiesResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsAccountList"> + <wsdl:input message="wsdlns:telephonySmsAccountListRequest"/> + <wsdl:output message="wsdlns:telephonySmsAccountListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountConsumptionCSVByMail"> + <wsdl:input message="wsdlns:telephonyBillingAccountConsumptionCSVByMailRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountConsumptionCSVByMailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationVoicemail"> + <wsdl:input message="wsdlns:telephonyFMHuntingModificationVoicemailRequest"/> + <wsdl:output message="wsdlns:telephonyFMHuntingModificationVoicemailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupList"> + <wsdl:input message="wsdlns:dedicatedBackupListRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyOrdersFollowingUp"> + <wsdl:input message="wsdlns:telephonyOrdersFollowingUpRequest"/> + <wsdl:output message="wsdlns:telephonyOrdersFollowingUpResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactAdd"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupContactAddRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupContactAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ortDomainDel"> + <wsdl:input message="wsdlns:ortDomainDelRequest"/> + <wsdl:output message="wsdlns:ortDomainDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListModeratorList"> + <wsdl:input message="wsdlns:mailingListModeratorListRequest"/> + <wsdl:output message="wsdlns:mailingListModeratorListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillDetailsCSV"> + <wsdl:input message="wsdlns:telephonyBillDetailsCSVRequest"/> + <wsdl:output message="wsdlns:telephonyBillDetailsCSVResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popList"> + <wsdl:input message="wsdlns:popListRequest"/> + <wsdl:output message="wsdlns:popListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlRamUsed"> + <wsdl:input message="wsdlns:sqlpriveMysqlRamUsedRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlRamUsedResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsCreditLeft"> + <wsdl:input message="wsdlns:telephonySmsCreditLeftRequest"/> + <wsdl:output message="wsdlns:telephonySmsCreditLeftResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidDomainCreate"> + <wsdl:input message="wsdlns:prepaidDomainCreateRequest"/> + <wsdl:output message="wsdlns:prepaidDomainCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryPJCode"> + <wsdl:input message="wsdlns:telephonyDirectoryPJCodeRequest"/> + <wsdl:output message="wsdlns:telephonyDirectoryPJCodeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyListSummationCallsFromBillingAccount"> + <wsdl:input message="wsdlns:telephonyListSummationCallsFromBillingAccountRequest"/> + <wsdl:output message="wsdlns:telephonyListSummationCallsFromBillingAccountResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="rpsMigrationGetProgressStatus"> + <wsdl:input message="wsdlns:rpsMigrationGetProgressStatusRequest"/> + <wsdl:output message="wsdlns:rpsMigrationGetProgressStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootGetAll"> + <wsdl:input message="wsdlns:dedicatedNetbootGetAllRequest"/> + <wsdl:output message="wsdlns:dedicatedNetbootGetAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailDomainListByMasterNic"> + <wsdl:input message="wsdlns:emailDomainListByMasterNicRequest"/> + <wsdl:output message="wsdlns:emailDomainListByMasterNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceMailReportModify"> + <wsdl:input message="wsdlns:telephonyConferenceMailReportModifyRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceMailReportModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberDel"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberDelRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainTransferIT"> + <wsdl:input message="wsdlns:resellerDomainTransferITRequest"/> + <wsdl:output message="wsdlns:resellerDomainTransferITResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpAvailableGetList"> + <wsdl:input message="wsdlns:dedicatedVirtualMacIpAvailableGetListRequest"/> + <wsdl:output message="wsdlns:dedicatedVirtualMacIpAvailableGetListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxOptionsList"> + <wsdl:input message="wsdlns:telephonyFaxOptionsListRequest"/> + <wsdl:output message="wsdlns:telephonyFaxOptionsListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketListIncidents"> + <wsdl:input message="wsdlns:ticketListIncidentsRequest"/> + <wsdl:output message="wsdlns:ticketListIncidentsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="infrastructureReverseModify"> + <wsdl:input message="wsdlns:infrastructureReverseModifyRequest"/> + <wsdl:output message="wsdlns:infrastructureReverseModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlDel"> + <wsdl:input message="wsdlns:telephonyVxmlDelRequest"/> + <wsdl:output message="wsdlns:telephonyVxmlDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringSMSCreate"> + <wsdl:input message="wsdlns:dedicatedMonitoringSMSCreateRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringSMSCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="responderEmailList"> + <wsdl:input message="wsdlns:responderEmailListRequest"/> + <wsdl:output message="wsdlns:responderEmailListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountSet"> + <wsdl:input message="wsdlns:telephonyBillingAccountSetRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDepositMovementModify"> + <wsdl:input message="wsdlns:telephonyDepositMovementModifyRequest"/> + <wsdl:output message="wsdlns:telephonyDepositMovementModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallDo"> + <wsdl:input message="wsdlns:telephonyClick2CallDoRequest"/> + <wsdl:output message="wsdlns:telephonyClick2CallDoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlInfo"> + <wsdl:input message="wsdlns:telephonyVxmlInfoRequest"/> + <wsdl:output message="wsdlns:telephonyVxmlInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySpecialNumberOrder"> + <wsdl:input message="wsdlns:telephonySpecialNumberOrderRequest"/> + <wsdl:output message="wsdlns:telephonySpecialNumberOrderResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailOptionsModify"> + <wsdl:input message="wsdlns:telephonyVoicemailOptionsModifyRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailOptionsModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOldOffer"> + <wsdl:input message="wsdlns:telephonyLineSwitchOldOfferRequest"/> + <wsdl:output message="wsdlns:telephonyLineSwitchOldOfferResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneEntryAddCustom"> + <wsdl:input message="wsdlns:zoneEntryAddCustomRequest"/> + <wsdl:output message="wsdlns:zoneEntryAddCustomResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorInfo"> + <wsdl:input message="wsdlns:domainWhoisObfuscatorInfoRequest"/> + <wsdl:output message="wsdlns:domainWhoisObfuscatorInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactDel"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupContactDelRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupContactDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketReopen"> + <wsdl:input message="wsdlns:ticketReopenRequest"/> + <wsdl:output message="wsdlns:ticketReopenResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupFtpPassword"> + <wsdl:input message="wsdlns:dedicatedBackupFtpPasswordRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupFtpPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="hostingAccessByNic"> + <wsdl:input message="wsdlns:hostingAccessByNicRequest"/> + <wsdl:output message="wsdlns:hostingAccessByNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceModeratorCallNumberModify"> + <wsdl:input message="wsdlns:telephonyConferenceModeratorCallNumberModifyRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceModeratorCallNumberModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveAlertInfo"> + <wsdl:input message="wsdlns:sqlpriveAlertInfoRequest"/> + <wsdl:output message="wsdlns:sqlpriveAlertInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferSimultaneousLinesAdd"> + <wsdl:input message="wsdlns:telephonyOfferSimultaneousLinesAddRequest"/> + <wsdl:output message="wsdlns:telephonyOfferSimultaneousLinesAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListFullInfo"> + <wsdl:input message="wsdlns:mailingListFullInfoRequest"/> + <wsdl:output message="wsdlns:mailingListFullInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedRtmBackdoorUpdateAlert"> + <wsdl:input message="wsdlns:dedicatedRtmBackdoorUpdateAlertRequest"/> + <wsdl:output message="wsdlns:dedicatedRtmBackdoorUpdateAlertResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="responderEmailInfo"> + <wsdl:input message="wsdlns:responderEmailInfoRequest"/> + <wsdl:output message="wsdlns:responderEmailInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyToneRemoteUpload"> + <wsdl:input message="wsdlns:telephonyToneRemoteUploadRequest"/> + <wsdl:output message="wsdlns:telephonyToneRemoteUploadResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSAdd"> + <wsdl:input message="wsdlns:dedicatedSecondaryDNSAddRequest"/> + <wsdl:output message="wsdlns:dedicatedSecondaryDNSAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popUpgradeQuota"> + <wsdl:input message="wsdlns:popUpgradeQuotaRequest"/> + <wsdl:output message="wsdlns:popUpgradeQuotaResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationMode"> + <wsdl:input message="wsdlns:telephonyFMHuntingModificationModeRequest"/> + <wsdl:output message="wsdlns:telephonyFMHuntingModificationModeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveList"> + <wsdl:input message="wsdlns:sqlpriveListRequest"/> + <wsdl:output message="wsdlns:sqlpriveListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dnsInstall"> + <wsdl:input message="wsdlns:dnsInstallRequest"/> + <wsdl:output message="wsdlns:dnsInstallResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAliasToSipOffer"> + <wsdl:input message="wsdlns:telephonyAliasToSipOfferRequest"/> + <wsdl:output message="wsdlns:telephonyAliasToSipOfferResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="hostingSummary"> + <wsdl:input message="wsdlns:hostingSummaryRequest"/> + <wsdl:output message="wsdlns:hostingSummaryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailDomainSummary"> + <wsdl:input message="wsdlns:emailDomainSummaryRequest"/> + <wsdl:output message="wsdlns:emailDomainSummaryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedRtmGetStatus"> + <wsdl:input message="wsdlns:dedicatedRtmGetStatusRequest"/> + <wsdl:output message="wsdlns:dedicatedRtmGetStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceList"> + <wsdl:input message="wsdlns:telephonyConferenceListRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionQuotaUsed"> + <wsdl:input message="wsdlns:managedServicesPartitionQuotaUsedRequest"/> + <wsdl:output message="wsdlns:managedServicesPartitionQuotaUsedResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootGetAvailable"> + <wsdl:input message="wsdlns:dedicatedNetbootGetAvailableRequest"/> + <wsdl:output message="wsdlns:dedicatedNetbootGetAvailableResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserMultiSend"> + <wsdl:input message="wsdlns:telephonySmsUserMultiSendRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserMultiSendResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsHistory"> + <wsdl:input message="wsdlns:telephonySmsHistoryRequest"/> + <wsdl:output message="wsdlns:telephonySmsHistoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneEntryModify"> + <wsdl:input message="wsdlns:zoneEntryModifyRequest"/> + <wsdl:output message="wsdlns:zoneEntryModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketListContact"> + <wsdl:input message="wsdlns:ticketListContactRequest"/> + <wsdl:output message="wsdlns:ticketListContactResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMailinglistGetAllowed"> + <wsdl:input message="wsdlns:dedicatedMailinglistGetAllowedRequest"/> + <wsdl:output message="wsdlns:dedicatedMailinglistGetAllowedResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupInfo"> + <wsdl:input message="wsdlns:dedicatedBackupInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupModify"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberOnGroupModifyRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberOnGroupModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="accountSummary"> + <wsdl:input message="wsdlns:accountSummaryRequest"/> + <wsdl:output message="wsdlns:accountSummaryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="subDomainDel"> + <wsdl:input message="wsdlns:subDomainDelRequest"/> + <wsdl:output message="wsdlns:subDomainDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenList"> + <wsdl:input message="wsdlns:telephonyHuntingGenericScreenListRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGenericScreenListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterAdd"> + <wsdl:input message="wsdlns:emailFilterAddRequest"/> + <wsdl:output message="wsdlns:emailFilterAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenStatus"> + <wsdl:input message="wsdlns:telephonyHuntingGenericScreenStatusRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGenericScreenStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationMembers"> + <wsdl:input message="wsdlns:telephonyHuntingModificationMembersRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingModificationMembersResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="rpsMigrationStatus"> + <wsdl:input message="wsdlns:rpsMigrationStatusRequest"/> + <wsdl:output message="wsdlns:rpsMigrationStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dnsReset"> + <wsdl:input message="wsdlns:dnsResetRequest"/> + <wsdl:output message="wsdlns:dnsResetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportGetNicDomains"> + <wsdl:input message="wsdlns:supportGetNicDomainsRequest"/> + <wsdl:output message="wsdlns:supportGetNicDomainsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignCreation"> + <wsdl:input message="wsdlns:telephonyFaxCampaignCreationRequest"/> + <wsdl:output message="wsdlns:telephonyFaxCampaignCreationResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportGetThreads"> + <wsdl:input message="wsdlns:supportGetThreadsRequest"/> + <wsdl:output message="wsdlns:supportGetThreadsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListDel"> + <wsdl:input message="wsdlns:mailingListDelRequest"/> + <wsdl:output message="wsdlns:mailingListDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeAdd"> + <wsdl:input message="wsdlns:dedicatedFailoverRipeAddRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverRipeAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberAdd"> + <wsdl:input message="wsdlns:mailingListSubscriberAddRequest"/> + <wsdl:output message="wsdlns:mailingListSubscriberAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcClientRuleAdd"> + <wsdl:input message="wsdlns:dedicatedFilterIrcClientRuleAddRequest"/> + <wsdl:output message="wsdlns:dedicatedFilterIrcClientRuleAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetCalendar"> + <wsdl:input message="wsdlns:dedicatedBackupGetCalendarRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupGetCalendarResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationMembers"> + <wsdl:input message="wsdlns:telephonyFMHuntingModificationMembersRequest"/> + <wsdl:output message="wsdlns:telephonyFMHuntingModificationMembersResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookAdd"> + <wsdl:input message="wsdlns:telephonyPhonebookAddRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyRestrictionModify"> + <wsdl:input message="wsdlns:telephonyRestrictionModifyRequest"/> + <wsdl:output message="wsdlns:telephonyRestrictionModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="crontabDel"> + <wsdl:input message="wsdlns:crontabDelRequest"/> + <wsdl:output message="wsdlns:crontabDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenOptions"> + <wsdl:input message="wsdlns:telephonyHuntingGenericScreenOptionsRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGenericScreenOptionsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountAdd"> + <wsdl:input message="wsdlns:telephonyBillingAccountAddRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesIpAccessChange"> + <wsdl:input message="wsdlns:managedServicesIpAccessChangeRequest"/> + <wsdl:output message="wsdlns:managedServicesIpAccessChangeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="accountHistory"> + <wsdl:input message="wsdlns:accountHistoryRequest"/> + <wsdl:output message="wsdlns:accountHistoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingServerDel"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingServerDelRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingServerDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainCheck"> + <wsdl:input message="wsdlns:domainCheckRequest"/> + <wsdl:output message="wsdlns:domainCheckResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidDomainTransfer"> + <wsdl:input message="wsdlns:prepaidDomainTransferRequest"/> + <wsdl:output message="wsdlns:prepaidDomainTransferResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedEditServiceMonitoringItem"> + <wsdl:input message="wsdlns:dedicatedEditServiceMonitoringItemRequest"/> + <wsdl:output message="wsdlns:dedicatedEditServiceMonitoringItemResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="password"> + <wsdl:input message="wsdlns:passwordRequest"/> + <wsdl:output message="wsdlns:passwordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderValidate"> + <wsdl:input message="wsdlns:telephonySmsSenderValidateRequest"/> + <wsdl:output message="wsdlns:telephonySmsSenderValidateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationSimultaneousCalls"> + <wsdl:input message="wsdlns:telephonyHuntingModificationSimultaneousCallsRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingModificationSimultaneousCallsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupCreate"> + <wsdl:input message="wsdlns:serviceGroupCreateRequest"/> + <wsdl:output message="wsdlns:serviceGroupCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="orderTelephonySmsCredit"> + <wsdl:input message="wsdlns:orderTelephonySmsCreditRequest"/> + <wsdl:output message="wsdlns:orderTelephonySmsCreditResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupSet"> + <wsdl:input message="wsdlns:dedicatedBackupSetRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpDelete"> + <wsdl:input message="wsdlns:dedicatedVirtualMacIpDeleteRequest"/> + <wsdl:output message="wsdlns:dedicatedVirtualMacIpDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeSplit"> + <wsdl:input message="wsdlns:dedicatedFailoverRipeSplitRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverRipeSplitResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseInfo"> + <wsdl:input message="wsdlns:dedicatedReverseInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedReverseInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedCapabilitiesGetAll"> + <wsdl:input message="wsdlns:dedicatedCapabilitiesGetAllRequest"/> + <wsdl:output message="wsdlns:dedicatedCapabilitiesGetAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nic"> + <wsdl:input message="wsdlns:nicRequest"/> + <wsdl:output message="wsdlns:nicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignList"> + <wsdl:input message="wsdlns:telephonyFaxCampaignListRequest"/> + <wsdl:output message="wsdlns:telephonyFaxCampaignListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupIncludeAdd"> + <wsdl:input message="wsdlns:dedicatedBackupIncludeAddRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupIncludeAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketGet"> + <wsdl:input message="wsdlns:ticketGetRequest"/> + <wsdl:output message="wsdlns:ticketGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportSendMessage"> + <wsdl:input message="wsdlns:supportSendMessageRequest"/> + <wsdl:output message="wsdlns:supportSendMessageResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="notepadSet"> + <wsdl:input message="wsdlns:notepadSetRequest"/> + <wsdl:output message="wsdlns:notepadSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeList"> + <wsdl:input message="wsdlns:dedicatedFailoverRipeListRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverRipeListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetUserQuotaForUser"> + <wsdl:input message="wsdlns:telephonySmsGetUserQuotaForUserRequest"/> + <wsdl:output message="wsdlns:telephonySmsGetUserQuotaForUserResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceAdd"> + <wsdl:input message="wsdlns:dedicatedMonitoringServiceAddRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringServiceAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedHardRebootDo"> + <wsdl:input message="wsdlns:dedicatedHardRebootDoRequest"/> + <wsdl:output message="wsdlns:dedicatedHardRebootDoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseList"> + <wsdl:input message="wsdlns:dedicatedReverseListRequest"/> + <wsdl:output message="wsdlns:dedicatedReverseListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorSet"> + <wsdl:input message="wsdlns:domainWhoisObfuscatorSetRequest"/> + <wsdl:output message="wsdlns:domainWhoisObfuscatorSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="rpsMigrationTodo"> + <wsdl:input message="wsdlns:rpsMigrationTodoRequest"/> + <wsdl:output message="wsdlns:rpsMigrationTodoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyModify"> + <wsdl:input message="wsdlns:telephonyFunctionKeyModifyRequest"/> + <wsdl:output message="wsdlns:telephonyFunctionKeyModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicTldEligibility"> + <wsdl:input message="wsdlns:nicTldEligibilityRequest"/> + <wsdl:output message="wsdlns:nicTldEligibilityResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetState"> + <wsdl:input message="wsdlns:automatedMailGetStateRequest"/> + <wsdl:output message="wsdlns:automatedMailGetStateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberList"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberListRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlLogs"> + <wsdl:input message="wsdlns:sqlpriveMysqlLogsRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlLogsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxModifyPassword"> + <wsdl:input message="wsdlns:telephonyFaxModifyPasswordRequest"/> + <wsdl:output message="wsdlns:telephonyFaxModifyPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupFtpAdd"> + <wsdl:input message="wsdlns:dedicatedBackupFtpAddRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupFtpAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="databaseDump"> + <wsdl:input message="wsdlns:databaseDumpRequest"/> + <wsdl:output message="wsdlns:databaseDumpResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsDelete"> + <wsdl:input message="wsdlns:telephonySmsDeleteRequest"/> + <wsdl:output message="wsdlns:telephonySmsDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryModifyPublication"> + <wsdl:input message="wsdlns:telephonyDirectoryModifyPublicationRequest"/> + <wsdl:output message="wsdlns:telephonyDirectoryModifyPublicationResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainResellerSet"> + <wsdl:input message="wsdlns:domainResellerSetRequest"/> + <wsdl:output message="wsdlns:domainResellerSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="crontabList"> + <wsdl:input message="wsdlns:crontabListRequest"/> + <wsdl:output message="wsdlns:crontabListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupAdd"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupAddRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpUsedGetList"> + <wsdl:input message="wsdlns:dedicatedVirtualMacIpUsedGetListRequest"/> + <wsdl:output message="wsdlns:dedicatedVirtualMacIpUsedGetListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOfferPossibility"> + <wsdl:input message="wsdlns:telephonyLineSwitchOfferPossibilityRequest"/> + <wsdl:output message="wsdlns:telephonyLineSwitchOfferPossibilityResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderList"> + <wsdl:input message="wsdlns:telephonySmsSenderListRequest"/> + <wsdl:output message="wsdlns:telephonySmsSenderListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainRestore"> + <wsdl:input message="wsdlns:resellerDomainRestoreRequest"/> + <wsdl:output message="wsdlns:resellerDomainRestoreResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketAnswer"> + <wsdl:input message="wsdlns:ticketAnswerRequest"/> + <wsdl:output message="wsdlns:ticketAnswerResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveCronSet"> + <wsdl:input message="wsdlns:sqlpriveCronSetRequest"/> + <wsdl:output message="wsdlns:sqlpriveCronSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyList"> + <wsdl:input message="wsdlns:telephonyFunctionKeyListRequest"/> + <wsdl:output message="wsdlns:telephonyFunctionKeyListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootInfo"> + <wsdl:input message="wsdlns:dedicatedNetbootInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedNetbootInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainOperationRelaunch"> + <wsdl:input message="wsdlns:domainOperationRelaunchRequest"/> + <wsdl:output message="wsdlns:domainOperationRelaunchResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOffer"> + <wsdl:input message="wsdlns:telephonyLineSwitchOfferRequest"/> + <wsdl:output message="wsdlns:telephonyLineSwitchOfferResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailModifyPassword"> + <wsdl:input message="wsdlns:telephonyVoicemailModifyPasswordRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailModifyPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceRoomModify"> + <wsdl:input message="wsdlns:telephonyConferenceRoomModifyRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceRoomModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookShare"> + <wsdl:input message="wsdlns:telephonyPhonebookShareRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookShareResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSetUserQuota"> + <wsdl:input message="wsdlns:telephonySmsSetUserQuotaRequest"/> + <wsdl:output message="wsdlns:telephonySmsSetUserQuotaResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="cmsInstall"> + <wsdl:input message="wsdlns:cmsInstallRequest"/> + <wsdl:output message="wsdlns:cmsInstallResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingAdd"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingAddRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportGetAllVisibleCategories"> + <wsdl:input message="wsdlns:supportGetAllVisibleCategoriesRequest"/> + <wsdl:output message="wsdlns:supportGetAllVisibleCategoriesResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlValidate"> + <wsdl:input message="wsdlns:telephonyVxmlValidateRequest"/> + <wsdl:output message="wsdlns:telephonyVxmlValidateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupList"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberOnGroupListRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberOnGroupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineLogs"> + <wsdl:input message="wsdlns:telephonyLineLogsRequest"/> + <wsdl:output message="wsdlns:telephonyLineLogsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiFtpList"> + <wsdl:input message="wsdlns:multiFtpListRequest"/> + <wsdl:output message="wsdlns:multiFtpListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiFtpAdd"> + <wsdl:input message="wsdlns:multiFtpAddRequest"/> + <wsdl:output message="wsdlns:multiFtpAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabasePrivilegeList"> + <wsdl:input message="wsdlns:sqlpriveMysqlDatabasePrivilegeListRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlDatabasePrivilegeListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailAccessByNic"> + <wsdl:input message="wsdlns:emailAccessByNicRequest"/> + <wsdl:output message="wsdlns:emailAccessByNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserList"> + <wsdl:input message="wsdlns:telephonyClick2CallUserListRequest"/> + <wsdl:output message="wsdlns:telephonyClick2CallUserListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneEntryDel"> + <wsdl:input message="wsdlns:zoneEntryDelRequest"/> + <wsdl:output message="wsdlns:zoneEntryDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidSetThreshold"> + <wsdl:input message="wsdlns:prepaidSetThresholdRequest"/> + <wsdl:output message="wsdlns:prepaidSetThresholdResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMailboxList"> + <wsdl:input message="wsdlns:telephonyVoicemailMailboxListRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailMailboxListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainRenew"> + <wsdl:input message="wsdlns:resellerDomainRenewRequest"/> + <wsdl:output message="wsdlns:resellerDomainRenewResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popDel"> + <wsdl:input message="wsdlns:popDelRequest"/> + <wsdl:output message="wsdlns:popDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignDetails"> + <wsdl:input message="wsdlns:telephonyFaxCampaignDetailsRequest"/> + <wsdl:output message="wsdlns:telephonyFaxCampaignDetailsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterRuleDel"> + <wsdl:input message="wsdlns:emailFilterRuleDelRequest"/> + <wsdl:output message="wsdlns:emailFilterRuleDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupDel"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupDelRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupList"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySpecialNumberCustomList"> + <wsdl:input message="wsdlns:telephonySpecialNumberCustomListRequest"/> + <wsdl:output message="wsdlns:telephonySpecialNumberCustomListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceDel"> + <wsdl:input message="wsdlns:dedicatedMonitoringServiceDelRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringServiceDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationSimultaneousCalls"> + <wsdl:input message="wsdlns:telephonyFMHuntingModificationSimultaneousCallsRequest"/> + <wsdl:output message="wsdlns:telephonyFMHuntingModificationSimultaneousCallsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterPriority"> + <wsdl:input message="wsdlns:emailFilterPriorityRequest"/> + <wsdl:output message="wsdlns:emailFilterPriorityResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="accountAlertThresholdSet"> + <wsdl:input message="wsdlns:accountAlertThresholdSetRequest"/> + <wsdl:output message="wsdlns:accountAlertThresholdSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterDel"> + <wsdl:input message="wsdlns:emailFilterDelRequest"/> + <wsdl:output message="wsdlns:emailFilterDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreate"> + <wsdl:input message="wsdlns:resellerDomainCreateRequest"/> + <wsdl:output message="wsdlns:resellerDomainCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesSnapshotUpdate"> + <wsdl:input message="wsdlns:managedServicesSnapshotUpdateRequest"/> + <wsdl:output message="wsdlns:managedServicesSnapshotUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportGetThreadTree"> + <wsdl:input message="wsdlns:supportGetThreadTreeRequest"/> + <wsdl:output message="wsdlns:supportGetThreadTreeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailSetDomainCatchAll"> + <wsdl:input message="wsdlns:emailSetDomainCatchAllRequest"/> + <wsdl:output message="wsdlns:emailSetDomainCatchAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainCapabilities"> + <wsdl:input message="wsdlns:domainCapabilitiesRequest"/> + <wsdl:output message="wsdlns:domainCapabilitiesResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingServerStateModify"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingServerStateModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingServerStateModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMailboxDownload"> + <wsdl:input message="wsdlns:telephonyVoicemailMailboxDownloadRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailMailboxDownloadResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseModify"> + <wsdl:input message="wsdlns:dedicatedReverseModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedReverseModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyReversmentsRefundIsPending"> + <wsdl:input message="wsdlns:telephonyReversmentsRefundIsPendingRequest"/> + <wsdl:output message="wsdlns:telephonyReversmentsRefundIsPendingResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceModifyContact"> + <wsdl:input message="wsdlns:serviceModifyContactRequest"/> + <wsdl:output message="wsdlns:serviceModifyContactResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListInfoModify"> + <wsdl:input message="wsdlns:telephonyScreenListInfoModifyRequest"/> + <wsdl:output message="wsdlns:telephonyScreenListInfoModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainDnsList"> + <wsdl:input message="wsdlns:domainDnsListRequest"/> + <wsdl:output message="wsdlns:domainDnsListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverList"> + <wsdl:input message="wsdlns:dedicatedFailoverListRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailDomainMxList"> + <wsdl:input message="wsdlns:emailDomainMxListRequest"/> + <wsdl:output message="wsdlns:emailDomainMxListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSInfo"> + <wsdl:input message="wsdlns:dedicatedSecondaryDNSInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedSecondaryDNSInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesHostMasterIpGet"> + <wsdl:input message="wsdlns:managedServicesHostMasterIpGetRequest"/> + <wsdl:output message="wsdlns:managedServicesHostMasterIpGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ortDomainList"> + <wsdl:input message="wsdlns:ortDomainListRequest"/> + <wsdl:output message="wsdlns:ortDomainListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenStatusModify"> + <wsdl:input message="wsdlns:telephonyHuntingGenericScreenStatusModifyRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGenericScreenStatusModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactAdd"> + <wsdl:input message="wsdlns:telephonyPhonebookContactAddRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookContactAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainOperationInfo"> + <wsdl:input message="wsdlns:domainOperationInfoRequest"/> + <wsdl:output message="wsdlns:domainOperationInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetAvailableNetworkFromCountry"> + <wsdl:input message="wsdlns:dedicatedGetAvailableNetworkFromCountryRequest"/> + <wsdl:output message="wsdlns:dedicatedGetAvailableNetworkFromCountryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPortabilityOrderSpecialNumber"> + <wsdl:input message="wsdlns:telephonyPortabilityOrderSpecialNumberRequest"/> + <wsdl:output message="wsdlns:telephonyPortabilityOrderSpecialNumberResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="billingGetReferencesToExpired"> + <wsdl:input message="wsdlns:billingGetReferencesToExpiredRequest"/> + <wsdl:output message="wsdlns:billingGetReferencesToExpiredResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverAdd"> + <wsdl:input message="wsdlns:dedicatedFailoverAddRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidGetSummary"> + <wsdl:input message="wsdlns:prepaidGetSummaryRequest"/> + <wsdl:output message="wsdlns:prepaidGetSummaryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainDnsUpdate"> + <wsdl:input message="wsdlns:domainDnsUpdateRequest"/> + <wsdl:output message="wsdlns:domainDnsUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterRuleAdd"> + <wsdl:input message="wsdlns:emailFilterRuleAddRequest"/> + <wsdl:output message="wsdlns:emailFilterRuleAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainResellerDel"> + <wsdl:input message="wsdlns:domainResellerDelRequest"/> + <wsdl:output message="wsdlns:domainResellerDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupModify"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupModifyRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOldOfferPossibility"> + <wsdl:input message="wsdlns:telephonyLineSwitchOldOfferPossibilityRequest"/> + <wsdl:output message="wsdlns:telephonyLineSwitchOldOfferPossibilityResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreateIT"> + <wsdl:input message="wsdlns:resellerDomainCreateITRequest"/> + <wsdl:output message="wsdlns:resellerDomainCreateITResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="notepadGet"> + <wsdl:input message="wsdlns:notepadGetRequest"/> + <wsdl:output message="wsdlns:notepadGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationAnonymousCallRejection"> + <wsdl:input message="wsdlns:telephonyHuntingModificationAnonymousCallRejectionRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingModificationAnonymousCallRejectionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcServerRuleList"> + <wsdl:input message="wsdlns:dedicatedFilterIrcServerRuleListRequest"/> + <wsdl:output message="wsdlns:dedicatedFilterIrcServerRuleListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberGetBillingAccount"> + <wsdl:input message="wsdlns:telephonyNumberGetBillingAccountRequest"/> + <wsdl:output message="wsdlns:telephonyNumberGetBillingAccountResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionDelete"> + <wsdl:input message="wsdlns:managedServicesPartitionDeleteRequest"/> + <wsdl:output message="wsdlns:managedServicesPartitionDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyTonesOptionsList"> + <wsdl:input message="wsdlns:telephonyTonesOptionsListRequest"/> + <wsdl:output message="wsdlns:telephonyTonesOptionsListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportReportAnswerProblem"> + <wsdl:input message="wsdlns:supportReportAnswerProblemRequest"/> + <wsdl:output message="wsdlns:supportReportAnswerProblemResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiDomainList"> + <wsdl:input message="wsdlns:multiDomainListRequest"/> + <wsdl:output message="wsdlns:multiDomainListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketClose"> + <wsdl:input message="wsdlns:ticketCloseRequest"/> + <wsdl:output message="wsdlns:ticketCloseResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyListSummationCallsFromNumber"> + <wsdl:input message="wsdlns:telephonyListSummationCallsFromNumberRequest"/> + <wsdl:output message="wsdlns:telephonyListSummationCallsFromNumberResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactModify"> + <wsdl:input message="wsdlns:telephonyPhonebookContactModifyRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookContactModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainDnsGetOvhDefault"> + <wsdl:input message="wsdlns:domainDnsGetOvhDefaultRequest"/> + <wsdl:output message="wsdlns:domainDnsGetOvhDefaultResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineList"> + <wsdl:input message="wsdlns:telephonyLineListRequest"/> + <wsdl:output message="wsdlns:telephonyLineListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="databaseCreate"> + <wsdl:input message="wsdlns:databaseCreateRequest"/> + <wsdl:output message="wsdlns:databaseCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="billingGetAccessByNic"> + <wsdl:input message="wsdlns:billingGetAccessByNicRequest"/> + <wsdl:output message="wsdlns:billingGetAccessByNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupExcludeAdd"> + <wsdl:input message="wsdlns:dedicatedBackupExcludeAddRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupExcludeAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceModifyOwner"> + <wsdl:input message="wsdlns:serviceModifyOwnerRequest"/> + <wsdl:output message="wsdlns:serviceModifyOwnerResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineOptionsModify"> + <wsdl:input message="wsdlns:telephonyLineOptionsModifyRequest"/> + <wsdl:output message="wsdlns:telephonyLineOptionsModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveCronDel"> + <wsdl:input message="wsdlns:sqlpriveCronDelRequest"/> + <wsdl:output message="wsdlns:sqlpriveCronDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlAdd"> + <wsdl:input message="wsdlns:telephonyVxmlAddRequest"/> + <wsdl:output message="wsdlns:telephonyVxmlAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenSet"> + <wsdl:input message="wsdlns:telephonyHuntingGenericScreenSetRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGenericScreenSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignStartStop"> + <wsdl:input message="wsdlns:telephonyFaxCampaignStartStopRequest"/> + <wsdl:output message="wsdlns:telephonyFaxCampaignStartStopResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcServerRuleDel"> + <wsdl:input message="wsdlns:dedicatedFilterIrcServerRuleDelRequest"/> + <wsdl:output message="wsdlns:dedicatedFilterIrcServerRuleDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="hostingGetCapabilities"> + <wsdl:input message="wsdlns:hostingGetCapabilitiesRequest"/> + <wsdl:output message="wsdlns:hostingGetCapabilitiesResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorUnset"> + <wsdl:input message="wsdlns:domainWhoisObfuscatorUnsetRequest"/> + <wsdl:output message="wsdlns:domainWhoisObfuscatorUnsetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainHostDel"> + <wsdl:input message="wsdlns:domainHostDelRequest"/> + <wsdl:output message="wsdlns:domainHostDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeModify"> + <wsdl:input message="wsdlns:dedicatedFailoverRipeModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverRipeModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="responderEmailDel"> + <wsdl:input message="wsdlns:responderEmailDelRequest"/> + <wsdl:output message="wsdlns:responderEmailDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringList"> + <wsdl:input message="wsdlns:dedicatedMonitoringListRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryModifyAddress"> + <wsdl:input message="wsdlns:telephonyDirectoryModifyAddressRequest"/> + <wsdl:output message="wsdlns:telephonyDirectoryModifyAddressResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionStatusCheck"> + <wsdl:input message="wsdlns:managedServicesPartitionStatusCheckRequest"/> + <wsdl:output message="wsdlns:managedServicesPartitionStatusCheckResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="cmsAvailableList"> + <wsdl:input message="wsdlns:cmsAvailableListRequest"/> + <wsdl:output message="wsdlns:cmsAvailableListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySecurityDepositCredit"> + <wsdl:input message="wsdlns:telephonySecurityDepositCreditRequest"/> + <wsdl:output message="wsdlns:telephonySecurityDepositCreditResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicModifyLanguage"> + <wsdl:input message="wsdlns:nicModifyLanguageRequest"/> + <wsdl:output message="wsdlns:nicModifyLanguageResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineOrder"> + <wsdl:input message="wsdlns:telephonyLineOrderRequest"/> + <wsdl:output message="wsdlns:telephonyLineOrderResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupExcludeDel"> + <wsdl:input message="wsdlns:dedicatedBackupExcludeDelRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupExcludeDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailUnlock"> + <wsdl:input message="wsdlns:automatedMailUnlockRequest"/> + <wsdl:output message="wsdlns:automatedMailUnlockResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="login"> + <wsdl:input message="wsdlns:loginRequest"/> + <wsdl:output message="wsdlns:loginResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popListByMasterNic"> + <wsdl:input message="wsdlns:popListByMasterNicRequest"/> + <wsdl:output message="wsdlns:popListByMasterNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyDel"> + <wsdl:input message="wsdlns:telephonyFunctionKeyDelRequest"/> + <wsdl:output message="wsdlns:telephonyFunctionKeyDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceModifyOwnerInfos"> + <wsdl:input message="wsdlns:serviceModifyOwnerInfosRequest"/> + <wsdl:output message="wsdlns:serviceModifyOwnerInfosResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedHardRebootStatus"> + <wsdl:input message="wsdlns:dedicatedHardRebootStatusRequest"/> + <wsdl:output message="wsdlns:dedicatedHardRebootStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainInfo"> + <wsdl:input message="wsdlns:domainInfoRequest"/> + <wsdl:output message="wsdlns:domainInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetServiceMonitoringItem"> + <wsdl:input message="wsdlns:dedicatedGetServiceMonitoringItemRequest"/> + <wsdl:output message="wsdlns:dedicatedGetServiceMonitoringItemResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserCreditLeft"> + <wsdl:input message="wsdlns:telephonySmsUserCreditLeftRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserCreditLeftResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPortabilityOrder"> + <wsdl:input message="wsdlns:telephonyPortabilityOrderRequest"/> + <wsdl:output message="wsdlns:telephonyPortabilityOrderResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicCreate"> + <wsdl:input message="wsdlns:nicCreateRequest"/> + <wsdl:output message="wsdlns:nicCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="cmsRemove"> + <wsdl:input message="wsdlns:cmsRemoveRequest"/> + <wsdl:output message="wsdlns:cmsRemoveResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMailboxDelete"> + <wsdl:input message="wsdlns:telephonyVoicemailMailboxDeleteRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailMailboxDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseImportFromHost"> + <wsdl:input message="wsdlns:sqlpriveMysqlDatabaseImportFromHostRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlDatabaseImportFromHostResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="billingInvoiceInfo"> + <wsdl:input message="wsdlns:billingInvoiceInfoRequest"/> + <wsdl:output message="wsdlns:billingInvoiceInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountDel"> + <wsdl:input message="wsdlns:telephonyBillingAccountDelRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="version"> + <wsdl:input message="wsdlns:versionRequest"/> + <wsdl:output message="wsdlns:versionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="orderAccountCredit"> + <wsdl:input message="wsdlns:orderAccountCreditRequest"/> + <wsdl:output message="wsdlns:orderAccountCreditResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberClean"> + <wsdl:input message="wsdlns:telephonyNumberCleanRequest"/> + <wsdl:output message="wsdlns:telephonyNumberCleanResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseAdd"> + <wsdl:input message="wsdlns:dedicatedReverseAddRequest"/> + <wsdl:output message="wsdlns:dedicatedReverseAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetFreePlanning"> + <wsdl:input message="wsdlns:dedicatedBackupGetFreePlanningRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupGetFreePlanningResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallAllowedDistributionGet"> + <wsdl:input message="wsdlns:dedicatedInstallAllowedDistributionGetRequest"/> + <wsdl:output message="wsdlns:dedicatedInstallAllowedDistributionGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="subDomainModify"> + <wsdl:input message="wsdlns:subDomainModifyRequest"/> + <wsdl:output message="wsdlns:subDomainModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPlugAndPhoneOperation"> + <wsdl:input message="wsdlns:telephonyPlugAndPhoneOperationRequest"/> + <wsdl:output message="wsdlns:telephonyPlugAndPhoneOperationResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicInfo"> + <wsdl:input message="wsdlns:nicInfoRequest"/> + <wsdl:output message="wsdlns:nicInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="anonymousFtpInfo"> + <wsdl:input message="wsdlns:anonymousFtpInfoRequest"/> + <wsdl:output message="wsdlns:anonymousFtpInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedCapabilitiesGet"> + <wsdl:input message="wsdlns:dedicatedCapabilitiesGetRequest"/> + <wsdl:output message="wsdlns:dedicatedCapabilitiesGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="cmsList"> + <wsdl:input message="wsdlns:cmsListRequest"/> + <wsdl:output message="wsdlns:cmsListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSetQuotaNotification"> + <wsdl:input message="wsdlns:telephonySmsSetQuotaNotificationRequest"/> + <wsdl:output message="wsdlns:telephonySmsSetQuotaNotificationResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringSMSDel"> + <wsdl:input message="wsdlns:dedicatedMonitoringSMSDelRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringSMSDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserList"> + <wsdl:input message="wsdlns:telephonySmsUserListRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="logsAccessList"> + <wsdl:input message="wsdlns:logsAccessListRequest"/> + <wsdl:output message="wsdlns:logsAccessListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringAdd"> + <wsdl:input message="wsdlns:dedicatedMonitoringAddRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingInfo"> + <wsdl:input message="wsdlns:telephonyHuntingInfoRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactList"> + <wsdl:input message="wsdlns:telephonyPhonebookContactListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookContactListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainTransferASIA"> + <wsdl:input message="wsdlns:resellerDomainTransferASIARequest"/> + <wsdl:output message="wsdlns:resellerDomainTransferASIAResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceLanguageModify"> + <wsdl:input message="wsdlns:telephonyConferenceLanguageModifyRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceLanguageModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserPassword"> + <wsdl:input message="wsdlns:telephonySmsUserPasswordRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainHostList"> + <wsdl:input message="wsdlns:domainHostListRequest"/> + <wsdl:output message="wsdlns:domainHostListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="hostingChangeMainDomain"> + <wsdl:input message="wsdlns:hostingChangeMainDomainRequest"/> + <wsdl:output message="wsdlns:hostingChangeMainDomainResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineGetOfferPrices"> + <wsdl:input message="wsdlns:telephonyLineGetOfferPricesRequest"/> + <wsdl:output message="wsdlns:telephonyLineGetOfferPricesResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetQuotaNotification"> + <wsdl:input message="wsdlns:telephonySmsGetQuotaNotificationRequest"/> + <wsdl:output message="wsdlns:telephonySmsGetQuotaNotificationResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationMode"> + <wsdl:input message="wsdlns:telephonyHuntingModificationModeRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingModificationModeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListBlackWhiteChoice"> + <wsdl:input message="wsdlns:telephonyScreenListBlackWhiteChoiceRequest"/> + <wsdl:output message="wsdlns:telephonyScreenListBlackWhiteChoiceResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberZoneAndPrefixList"> + <wsdl:input message="wsdlns:telephonyNumberZoneAndPrefixListRequest"/> + <wsdl:output message="wsdlns:telephonyNumberZoneAndPrefixListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupDelete"> + <wsdl:input message="wsdlns:serviceGroupDeleteRequest"/> + <wsdl:output message="wsdlns:serviceGroupDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedOperationList"> + <wsdl:input message="wsdlns:dedicatedOperationListRequest"/> + <wsdl:output message="wsdlns:dedicatedOperationListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceAdd"> + <wsdl:input message="wsdlns:telephonyConferenceAddRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListModeratorAdd"> + <wsdl:input message="wsdlns:mailingListModeratorAddRequest"/> + <wsdl:output message="wsdlns:mailingListModeratorAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactList"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupContactListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupContactListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="anonymousFtpActivate"> + <wsdl:input message="wsdlns:anonymousFtpActivateRequest"/> + <wsdl:output message="wsdlns:anonymousFtpActivateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDeleteLine"> + <wsdl:input message="wsdlns:telephonyDeleteLineRequest"/> + <wsdl:output message="wsdlns:telephonyDeleteLineResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicModifyInfosIT"> + <wsdl:input message="wsdlns:nicModifyInfosITRequest"/> + <wsdl:output message="wsdlns:nicModifyInfosITResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ortDomainAdd"> + <wsdl:input message="wsdlns:ortDomainAddRequest"/> + <wsdl:output message="wsdlns:ortDomainAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicPublicInfo"> + <wsdl:input message="wsdlns:nicPublicInfoRequest"/> + <wsdl:output message="wsdlns:nicPublicInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveAlertSet"> + <wsdl:input message="wsdlns:sqlpriveAlertSetRequest"/> + <wsdl:output message="wsdlns:sqlpriveAlertSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupIncludeDel"> + <wsdl:input message="wsdlns:dedicatedBackupIncludeDelRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupIncludeDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBandwidthSwitching"> + <wsdl:input message="wsdlns:dedicatedBandwidthSwitchingRequest"/> + <wsdl:output message="wsdlns:dedicatedBandwidthSwitchingResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingDel"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingDelRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlOvhMyAdmin"> + <wsdl:input message="wsdlns:sqlpriveMysqlOvhMyAdminRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlOvhMyAdminResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ftpInfo"> + <wsdl:input message="wsdlns:ftpInfoRequest"/> + <wsdl:output message="wsdlns:ftpInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="hostingList"> + <wsdl:input message="wsdlns:hostingListRequest"/> + <wsdl:output message="wsdlns:hostingListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="orderEmailMxPlan"> + <wsdl:input message="wsdlns:orderEmailMxPlanRequest"/> + <wsdl:output message="wsdlns:orderEmailMxPlanResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPortabilityStatus"> + <wsdl:input message="wsdlns:telephonyPortabilityStatusRequest"/> + <wsdl:output message="wsdlns:telephonyPortabilityStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberList"> + <wsdl:input message="wsdlns:mailingListSubscriberListRequest"/> + <wsdl:output message="wsdlns:mailingListSubscriberListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberDel"> + <wsdl:input message="wsdlns:mailingListSubscriberDelRequest"/> + <wsdl:output message="wsdlns:mailingListSubscriberDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainLockStatus"> + <wsdl:input message="wsdlns:domainLockStatusRequest"/> + <wsdl:output message="wsdlns:domainLockStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidDomainRenew"> + <wsdl:input message="wsdlns:prepaidDomainRenewRequest"/> + <wsdl:output message="wsdlns:prepaidDomainRenewResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="orderEmailMxLarge"> + <wsdl:input message="wsdlns:orderEmailMxLargeRequest"/> + <wsdl:output message="wsdlns:orderEmailMxLargeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterActive"> + <wsdl:input message="wsdlns:emailFilterActiveRequest"/> + <wsdl:output message="wsdlns:emailFilterActiveResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySecurityDepositInfo"> + <wsdl:input message="wsdlns:telephonySecurityDepositInfoRequest"/> + <wsdl:output message="wsdlns:telephonySecurityDepositInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="databaseList"> + <wsdl:input message="wsdlns:databaseListRequest"/> + <wsdl:output message="wsdlns:databaseListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingServerAdd"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingServerAddRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingServerAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreateCAT"> + <wsdl:input message="wsdlns:resellerDomainCreateCATRequest"/> + <wsdl:output message="wsdlns:resellerDomainCreateCATResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ftpChangePassword"> + <wsdl:input message="wsdlns:ftpChangePasswordRequest"/> + <wsdl:output message="wsdlns:ftpChangePasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="orderDedicatedFailover"> + <wsdl:input message="wsdlns:orderDedicatedFailoverRequest"/> + <wsdl:output message="wsdlns:orderDedicatedFailoverResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="rpsGetIoStats"> + <wsdl:input message="wsdlns:rpsGetIoStatsRequest"/> + <wsdl:output message="wsdlns:rpsGetIoStatsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlModify"> + <wsdl:input message="wsdlns:telephonyVxmlModifyRequest"/> + <wsdl:output message="wsdlns:telephonyVxmlModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="cmsRenewAdminPassword"> + <wsdl:input message="wsdlns:cmsRenewAdminPasswordRequest"/> + <wsdl:output message="wsdlns:cmsRenewAdminPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceAnnounceDelete"> + <wsdl:input message="wsdlns:telephonyConferenceAnnounceDeleteRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceAnnounceDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootModifyById"> + <wsdl:input message="wsdlns:dedicatedNetbootModifyByIdRequest"/> + <wsdl:output message="wsdlns:dedicatedNetbootModifyByIdResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListInfo"> + <wsdl:input message="wsdlns:telephonyScreenListInfoRequest"/> + <wsdl:output message="wsdlns:telephonyScreenListInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineLogsOnGroup"> + <wsdl:input message="wsdlns:telephonyLineLogsOnGroupRequest"/> + <wsdl:output message="wsdlns:telephonyLineLogsOnGroupResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="databaseDelete"> + <wsdl:input message="wsdlns:databaseDeleteRequest"/> + <wsdl:output message="wsdlns:databaseDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceAnnouncesStatus"> + <wsdl:input message="wsdlns:telephonyConferenceAnnouncesStatusRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceAnnouncesStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreateASIA"> + <wsdl:input message="wsdlns:resellerDomainCreateASIARequest"/> + <wsdl:output message="wsdlns:resellerDomainCreateASIAResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicChangePassword"> + <wsdl:input message="wsdlns:nicChangePasswordRequest"/> + <wsdl:output message="wsdlns:nicChangePasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactDel"> + <wsdl:input message="wsdlns:telephonyPhonebookContactDelRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookContactDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="ticketCreate"> + <wsdl:input message="wsdlns:ticketCreateRequest"/> + <wsdl:output message="wsdlns:ticketCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="notepadAdd"> + <wsdl:input message="wsdlns:notepadAddRequest"/> + <wsdl:output message="wsdlns:notepadAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="subDomainAdd"> + <wsdl:input message="wsdlns:subDomainAddRequest"/> + <wsdl:output message="wsdlns:subDomainAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetDate"> + <wsdl:input message="wsdlns:dedicatedBackupGetDateRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupGetDateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSDel"> + <wsdl:input message="wsdlns:dedicatedSecondaryDNSDelRequest"/> + <wsdl:output message="wsdlns:dedicatedSecondaryDNSDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainLock"> + <wsdl:input message="wsdlns:domainLockRequest"/> + <wsdl:output message="wsdlns:domainLockResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailFilterList"> + <wsdl:input message="wsdlns:emailFilterListRequest"/> + <wsdl:output message="wsdlns:emailFilterListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneEntryAdd"> + <wsdl:input message="wsdlns:zoneEntryAddRequest"/> + <wsdl:output message="wsdlns:zoneEntryAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSGetAll"> + <wsdl:input message="wsdlns:dedicatedSecondaryDNSGetAllRequest"/> + <wsdl:output message="wsdlns:dedicatedSecondaryDNSGetAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="infrastructureIpListGet"> + <wsdl:input message="wsdlns:infrastructureIpListGetRequest"/> + <wsdl:output message="wsdlns:infrastructureIpListGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListInfo"> + <wsdl:input message="wsdlns:mailingListInfoRequest"/> + <wsdl:output message="wsdlns:mailingListInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceList"> + <wsdl:input message="wsdlns:serviceListRequest"/> + <wsdl:output message="wsdlns:serviceListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupSetComment"> + <wsdl:input message="wsdlns:serviceGroupSetCommentRequest"/> + <wsdl:output message="wsdlns:serviceGroupSetCommentResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicCreateIT"> + <wsdl:input message="wsdlns:nicCreateITRequest"/> + <wsdl:output message="wsdlns:nicCreateITResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainOperationCancel"> + <wsdl:input message="wsdlns:domainOperationCancelRequest"/> + <wsdl:output message="wsdlns:domainOperationCancelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationAnonymousCallRejection"> + <wsdl:input message="wsdlns:telephonyFMHuntingModificationAnonymousCallRejectionRequest"/> + <wsdl:output message="wsdlns:telephonyFMHuntingModificationAnonymousCallRejectionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBandwidthManagementGet"> + <wsdl:input message="wsdlns:dedicatedBandwidthManagementGetRequest"/> + <wsdl:output message="wsdlns:dedicatedBandwidthManagementGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDdiModify"> + <wsdl:input message="wsdlns:telephonyDdiModifyRequest"/> + <wsdl:output message="wsdlns:telephonyDdiModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringStatusUpdate"> + <wsdl:input message="wsdlns:dedicatedMonitoringStatusUpdateRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringStatusUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyRedirectInfo"> + <wsdl:input message="wsdlns:telephonyRedirectInfoRequest"/> + <wsdl:output message="wsdlns:telephonyRedirectInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="anonymousFtpChangePassword"> + <wsdl:input message="wsdlns:anonymousFtpChangePasswordRequest"/> + <wsdl:output message="wsdlns:anonymousFtpChangePasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSend"> + <wsdl:input message="wsdlns:telephonySmsSendRequest"/> + <wsdl:output message="wsdlns:telephonySmsSendResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailLock"> + <wsdl:input message="wsdlns:automatedMailLockRequest"/> + <wsdl:output message="wsdlns:automatedMailLockResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeGetIp"> + <wsdl:input message="wsdlns:dedicatedFailoverRipeGetIpRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverRipeGetIpResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="responderEmailModify"> + <wsdl:input message="wsdlns:responderEmailModifyRequest"/> + <wsdl:output message="wsdlns:responderEmailModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallBasic"> + <wsdl:input message="wsdlns:dedicatedInstallBasicRequest"/> + <wsdl:output message="wsdlns:dedicatedInstallBasicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailGetDomainMxFiltering"> + <wsdl:input message="wsdlns:emailGetDomainMxFilteringRequest"/> + <wsdl:output message="wsdlns:emailGetDomainMxFilteringResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionCreate"> + <wsdl:input message="wsdlns:managedServicesPartitionCreateRequest"/> + <wsdl:output message="wsdlns:managedServicesPartitionCreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicModifyEmail"> + <wsdl:input message="wsdlns:nicModifyEmailRequest"/> + <wsdl:output message="wsdlns:nicModifyEmailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyToneDelete"> + <wsdl:input message="wsdlns:telephonyToneDeleteRequest"/> + <wsdl:output message="wsdlns:telephonyToneDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallReset"> + <wsdl:input message="wsdlns:dedicatedInstallResetRequest"/> + <wsdl:output message="wsdlns:dedicatedInstallResetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="orderDedicatedFailoverRipe"> + <wsdl:input message="wsdlns:orderDedicatedFailoverRipeRequest"/> + <wsdl:output message="wsdlns:orderDedicatedFailoverRipeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactModify"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupContactModifyRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupContactModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupRemoveService"> + <wsdl:input message="wsdlns:serviceGroupRemoveServiceRequest"/> + <wsdl:output message="wsdlns:serviceGroupRemoveServiceResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListBlackWhiteChoiceModify"> + <wsdl:input message="wsdlns:telephonyScreenListBlackWhiteChoiceModifyRequest"/> + <wsdl:output message="wsdlns:telephonyScreenListBlackWhiteChoiceModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcClientRuleDel"> + <wsdl:input message="wsdlns:dedicatedFilterIrcClientRuleDelRequest"/> + <wsdl:output message="wsdlns:dedicatedFilterIrcClientRuleDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainHostAdd"> + <wsdl:input message="wsdlns:domainHostAddRequest"/> + <wsdl:output message="wsdlns:domainHostAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popModifyDescription"> + <wsdl:input message="wsdlns:popModifyDescriptionRequest"/> + <wsdl:output message="wsdlns:popModifyDescriptionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="crontabAdd"> + <wsdl:input message="wsdlns:crontabAddRequest"/> + <wsdl:output message="wsdlns:crontabAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderDescription"> + <wsdl:input message="wsdlns:telephonySmsSenderDescriptionRequest"/> + <wsdl:output message="wsdlns:telephonySmsSenderDescriptionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupDel"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberOnGroupDelRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberOnGroupDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListModify"> + <wsdl:input message="wsdlns:mailingListModifyRequest"/> + <wsdl:output message="wsdlns:mailingListModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionGet"> + <wsdl:input message="wsdlns:managedServicesPartitionGetRequest"/> + <wsdl:output message="wsdlns:managedServicesPartitionGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailDelMasterNic"> + <wsdl:input message="wsdlns:emailDelMasterNicRequest"/> + <wsdl:output message="wsdlns:emailDelMasterNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailModify"> + <wsdl:input message="wsdlns:redirectedEmailModifyRequest"/> + <wsdl:output message="wsdlns:redirectedEmailModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popInfo"> + <wsdl:input message="wsdlns:popInfoRequest"/> + <wsdl:output message="wsdlns:popInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneExport"> + <wsdl:input message="wsdlns:zoneExportRequest"/> + <wsdl:output message="wsdlns:zoneExportResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMrtgInfo"> + <wsdl:input message="wsdlns:dedicatedMrtgInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedMrtgInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupReinstallData"> + <wsdl:input message="wsdlns:dedicatedBackupReinstallDataRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupReinstallDataResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceFreedomList"> + <wsdl:input message="wsdlns:serviceFreedomListRequest"/> + <wsdl:output message="wsdlns:serviceFreedomListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportGetFullMessage"> + <wsdl:input message="wsdlns:supportGetFullMessageRequest"/> + <wsdl:output message="wsdlns:supportGetFullMessageResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailGetDomainCatchAll"> + <wsdl:input message="wsdlns:emailGetDomainCatchAllRequest"/> + <wsdl:output message="wsdlns:emailGetDomainCatchAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserSend"> + <wsdl:input message="wsdlns:telephonySmsUserSendRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserSendResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListAdd"> + <wsdl:input message="wsdlns:mailingListAddRequest"/> + <wsdl:output message="wsdlns:mailingListAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupFtpInfo"> + <wsdl:input message="wsdlns:dedicatedBackupFtpInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupFtpInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupGroupList"> + <wsdl:input message="wsdlns:telephonyPhonebookOnGroupGroupListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookOnGroupGroupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserPassword"> + <wsdl:input message="wsdlns:telephonyClick2CallUserPasswordRequest"/> + <wsdl:output message="wsdlns:telephonyClick2CallUserPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringModify"> + <wsdl:input message="wsdlns:dedicatedMonitoringModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="momVersion"> + <wsdl:input message="wsdlns:momVersionRequest"/> + <wsdl:output message="wsdlns:momVersionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailSetMasterNic"> + <wsdl:input message="wsdlns:emailSetMasterNicRequest"/> + <wsdl:output message="wsdlns:emailSetMasterNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseList"> + <wsdl:input message="wsdlns:sqlpriveMysqlDatabaseListRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlDatabaseListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailReturnSet"> + <wsdl:input message="wsdlns:automatedMailReturnSetRequest"/> + <wsdl:output message="wsdlns:automatedMailReturnSetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="databaseRecreate"> + <wsdl:input message="wsdlns:databaseRecreateRequest"/> + <wsdl:output message="wsdlns:databaseRecreateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popModifyPassword"> + <wsdl:input message="wsdlns:popModifyPasswordRequest"/> + <wsdl:output message="wsdlns:popModifyPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="responderEmailAdd"> + <wsdl:input message="wsdlns:responderEmailAddRequest"/> + <wsdl:output message="wsdlns:responderEmailAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlProcessList"> + <wsdl:input message="wsdlns:sqlpriveMysqlProcessListRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlProcessListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetUserQuota"> + <wsdl:input message="wsdlns:telephonySmsGetUserQuotaRequest"/> + <wsdl:output message="wsdlns:telephonySmsGetUserQuotaResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetRandomAvailableIpFromCountry"> + <wsdl:input message="wsdlns:dedicatedGetRandomAvailableIpFromCountryRequest"/> + <wsdl:output message="wsdlns:dedicatedGetRandomAvailableIpFromCountryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderDelete"> + <wsdl:input message="wsdlns:telephonySmsSenderDeleteRequest"/> + <wsdl:output message="wsdlns:telephonySmsSenderDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyToneStatus"> + <wsdl:input message="wsdlns:telephonyToneStatusRequest"/> + <wsdl:output message="wsdlns:telephonyToneStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDdiInfo"> + <wsdl:input message="wsdlns:telephonyDdiInfoRequest"/> + <wsdl:output message="wsdlns:telephonyDdiInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallBasicProgress"> + <wsdl:input message="wsdlns:dedicatedInstallBasicProgressRequest"/> + <wsdl:output message="wsdlns:dedicatedInstallBasicProgressResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedAddServiceMonitoringAlertEmail"> + <wsdl:input message="wsdlns:dedicatedAddServiceMonitoringAlertEmailRequest"/> + <wsdl:output message="wsdlns:dedicatedAddServiceMonitoringAlertEmailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverUpdate"> + <wsdl:input message="wsdlns:dedicatedFailoverUpdateRequest"/> + <wsdl:output message="wsdlns:dedicatedFailoverUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGroupList"> + <wsdl:input message="wsdlns:telephonyHuntingGroupListRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGroupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryListWayType"> + <wsdl:input message="wsdlns:telephonyDirectoryListWayTypeRequest"/> + <wsdl:output message="wsdlns:telephonyDirectoryListWayTypeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyCallList"> + <wsdl:input message="wsdlns:telephonyCallListRequest"/> + <wsdl:output message="wsdlns:telephonyCallListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionUpdate"> + <wsdl:input message="wsdlns:managedServicesPartitionUpdateRequest"/> + <wsdl:output message="wsdlns:managedServicesPartitionUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="TelephonySipToAliasOffer"> + <wsdl:input message="wsdlns:TelephonySipToAliasOfferRequest"/> + <wsdl:output message="wsdlns:TelephonySipToAliasOfferResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcServerRuleAdd"> + <wsdl:input message="wsdlns:dedicatedFilterIrcServerRuleAddRequest"/> + <wsdl:output message="wsdlns:dedicatedFilterIrcServerRuleAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpAdd"> + <wsdl:input message="wsdlns:dedicatedVirtualMacIpAddRequest"/> + <wsdl:output message="wsdlns:dedicatedVirtualMacIpAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAliasToSipPossibilities"> + <wsdl:input message="wsdlns:telephonyAliasToSipPossibilitiesRequest"/> + <wsdl:output message="wsdlns:telephonyAliasToSipPossibilitiesResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupAdd"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberOnGroupAddRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberOnGroupAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationQueue"> + <wsdl:input message="wsdlns:telephonyHuntingModificationQueueRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingModificationQueueResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillDetails"> + <wsdl:input message="wsdlns:telephonyBillDetailsRequest"/> + <wsdl:output message="wsdlns:telephonyBillDetailsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryInfo"> + <wsdl:input message="wsdlns:telephonyDirectoryInfoRequest"/> + <wsdl:output message="wsdlns:telephonyDirectoryInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dnsInstallCustom"> + <wsdl:input message="wsdlns:dnsInstallCustomRequest"/> + <wsdl:output message="wsdlns:dnsInstallCustomResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlActivateOvhManagement"> + <wsdl:input message="wsdlns:sqlpriveMysqlActivateOvhManagementRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlActivateOvhManagementResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallDoBySession"> + <wsdl:input message="wsdlns:telephonyClick2CallDoBySessionRequest"/> + <wsdl:output message="wsdlns:telephonyClick2CallDoBySessionResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidGetThreshold"> + <wsdl:input message="wsdlns:prepaidGetThresholdRequest"/> + <wsdl:output message="wsdlns:prepaidGetThresholdResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberAdd"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberAddRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorUnsetAll"> + <wsdl:input message="wsdlns:domainWhoisObfuscatorUnsetAllRequest"/> + <wsdl:output message="wsdlns:domainWhoisObfuscatorUnsetAllResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiFtpDel"> + <wsdl:input message="wsdlns:multiFtpDelRequest"/> + <wsdl:output message="wsdlns:multiFtpDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlGetPossibleDump"> + <wsdl:input message="wsdlns:sqlpriveMysqlGetPossibleDumpRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlGetPossibleDumpResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberOrder"> + <wsdl:input message="wsdlns:telephonyNumberOrderRequest"/> + <wsdl:output message="wsdlns:telephonyNumberOrderResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidGetHistory"> + <wsdl:input message="wsdlns:prepaidGetHistoryRequest"/> + <wsdl:output message="wsdlns:prepaidGetHistoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberCityForZoneList"> + <wsdl:input message="wsdlns:telephonyNumberCityForZoneListRequest"/> + <wsdl:output message="wsdlns:telephonyNumberCityForZoneListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailDel"> + <wsdl:input message="wsdlns:redirectedEmailDelRequest"/> + <wsdl:output message="wsdlns:redirectedEmailDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedInfo"> + <wsdl:input message="wsdlns:dedicatedInfoRequest"/> + <wsdl:output message="wsdlns:dedicatedInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupUpdateDate"> + <wsdl:input message="wsdlns:dedicatedBackupUpdateDateRequest"/> + <wsdl:output message="wsdlns:dedicatedBackupUpdateDateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainOperationList"> + <wsdl:input message="wsdlns:domainOperationListRequest"/> + <wsdl:output message="wsdlns:domainOperationListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyTonesOptionsModify"> + <wsdl:input message="wsdlns:telephonyTonesOptionsModifyRequest"/> + <wsdl:output message="wsdlns:telephonyTonesOptionsModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popAttachMasterNic"> + <wsdl:input message="wsdlns:popAttachMasterNicRequest"/> + <wsdl:output message="wsdlns:popAttachMasterNicResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="crontabInfo"> + <wsdl:input message="wsdlns:crontabInfoRequest"/> + <wsdl:output message="wsdlns:crontabInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupSetName"> + <wsdl:input message="wsdlns:serviceGroupSetNameRequest"/> + <wsdl:output message="wsdlns:serviceGroupSetNameResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferInfo"> + <wsdl:input message="wsdlns:telephonyOfferInfoRequest"/> + <wsdl:output message="wsdlns:telephonyOfferInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiDomainAdd"> + <wsdl:input message="wsdlns:multiDomainAddRequest"/> + <wsdl:output message="wsdlns:multiDomainAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookDel"> + <wsdl:input message="wsdlns:telephonyPhonebookDelRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailList"> + <wsdl:input message="wsdlns:redirectedEmailListRequest"/> + <wsdl:output message="wsdlns:redirectedEmailListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserAdd"> + <wsdl:input message="wsdlns:telephonySmsUserAddRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicUpdateIT"> + <wsdl:input message="wsdlns:nicUpdateITRequest"/> + <wsdl:output message="wsdlns:nicUpdateITResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserHistory"> + <wsdl:input message="wsdlns:telephonySmsUserHistoryRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserHistoryResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringStatusGet"> + <wsdl:input message="wsdlns:dedicatedMonitoringStatusGetRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringStatusGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootModify"> + <wsdl:input message="wsdlns:dedicatedNetbootModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedNetbootModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="subDomainList"> + <wsdl:input message="wsdlns:subDomainListRequest"/> + <wsdl:output message="wsdlns:subDomainListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveFtpPassword"> + <wsdl:input message="wsdlns:sqlpriveFtpPasswordRequest"/> + <wsdl:output message="wsdlns:sqlpriveFtpPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferModifyPassword"> + <wsdl:input message="wsdlns:telephonyOfferModifyPasswordRequest"/> + <wsdl:output message="wsdlns:telephonyOfferModifyPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcClientRuleList"> + <wsdl:input message="wsdlns:dedicatedFilterIrcClientRuleListRequest"/> + <wsdl:output message="wsdlns:dedicatedFilterIrcClientRuleListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dnsUninstall"> + <wsdl:input message="wsdlns:dnsUninstallRequest"/> + <wsdl:output message="wsdlns:dnsUninstallResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookList"> + <wsdl:input message="wsdlns:telephonyPhonebookListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyAdd"> + <wsdl:input message="wsdlns:telephonyFunctionKeyAddRequest"/> + <wsdl:output message="wsdlns:telephonyFunctionKeyAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlRootPassword"> + <wsdl:input message="wsdlns:sqlpriveMysqlRootPasswordRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlRootPasswordResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserDel"> + <wsdl:input message="wsdlns:telephonySmsUserDelRequest"/> + <wsdl:output message="wsdlns:telephonySmsUserDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="emailSetDomainMxFiltering"> + <wsdl:input message="wsdlns:emailSetDomainMxFilteringRequest"/> + <wsdl:output message="wsdlns:emailSetDomainMxFilteringResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMessagesStatus"> + <wsdl:input message="wsdlns:telephonyVoicemailMessagesStatusRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailMessagesStatusResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookModify"> + <wsdl:input message="wsdlns:telephonyPhonebookModifyRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="nicUpdate"> + <wsdl:input message="wsdlns:nicUpdateRequest"/> + <wsdl:output message="wsdlns:nicUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferModifyName"> + <wsdl:input message="wsdlns:telephonyOfferModifyNameRequest"/> + <wsdl:output message="wsdlns:telephonyOfferModifyNameResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="notepadFlush"> + <wsdl:input message="wsdlns:notepadFlushRequest"/> + <wsdl:output message="wsdlns:notepadFlushResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiDomainModify"> + <wsdl:input message="wsdlns:multiDomainModifyRequest"/> + <wsdl:output message="wsdlns:multiDomainModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="language"> + <wsdl:input message="wsdlns:languageRequest"/> + <wsdl:output message="wsdlns:languageResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringSMSModify"> + <wsdl:input message="wsdlns:dedicatedMonitoringSMSModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringSMSModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookGroupList"> + <wsdl:input message="wsdlns:telephonyPhonebookGroupListRequest"/> + <wsdl:output message="wsdlns:telephonyPhonebookGroupListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="logsAccessDel"> + <wsdl:input message="wsdlns:logsAccessDelRequest"/> + <wsdl:output message="wsdlns:logsAccessDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="logsAccessAdd"> + <wsdl:input message="wsdlns:logsAccessAddRequest"/> + <wsdl:output message="wsdlns:logsAccessAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiDomainInfo"> + <wsdl:input message="wsdlns:multiDomainInfoRequest"/> + <wsdl:output message="wsdlns:multiDomainInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorList"> + <wsdl:input message="wsdlns:domainWhoisObfuscatorListRequest"/> + <wsdl:output message="wsdlns:domainWhoisObfuscatorListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlProcessKill"> + <wsdl:input message="wsdlns:sqlpriveMysqlProcessKillRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlProcessKillResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountInfo"> + <wsdl:input message="wsdlns:telephonyBillingAccountInfoRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListList"> + <wsdl:input message="wsdlns:mailingListListRequest"/> + <wsdl:output message="wsdlns:mailingListListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderAdd"> + <wsdl:input message="wsdlns:telephonySmsSenderAddRequest"/> + <wsdl:output message="wsdlns:telephonySmsSenderAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineConsumptionCSVByMail"> + <wsdl:input message="wsdlns:telephonyLineConsumptionCSVByMailRequest"/> + <wsdl:output message="wsdlns:telephonyLineConsumptionCSVByMailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberListByEmail"> + <wsdl:input message="wsdlns:mailingListSubscriberListByEmailRequest"/> + <wsdl:output message="wsdlns:mailingListSubscriberListByEmailResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportCloseThreads"> + <wsdl:input message="wsdlns:supportCloseThreadsRequest"/> + <wsdl:output message="wsdlns:supportCloseThreadsResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseSave"> + <wsdl:input message="wsdlns:sqlpriveMysqlDatabaseSaveRequest"/> + <wsdl:output message="wsdlns:sqlpriveMysqlDatabaseSaveResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyListReversableCallsFromNumber"> + <wsdl:input message="wsdlns:telephonyListReversableCallsFromNumberRequest"/> + <wsdl:output message="wsdlns:telephonyListReversableCallsFromNumberResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountList"> + <wsdl:input message="wsdlns:telephonyBillingAccountListRequest"/> + <wsdl:output message="wsdlns:telephonyBillingAccountListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetQuotaNotificationForUser"> + <wsdl:input message="wsdlns:telephonySmsGetQuotaNotificationForUserRequest"/> + <wsdl:output message="wsdlns:telephonySmsGetQuotaNotificationForUserResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringDel"> + <wsdl:input message="wsdlns:dedicatedMonitoringDelRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyChangeNicModify"> + <wsdl:input message="wsdlns:telephonyChangeNicModifyRequest"/> + <wsdl:output message="wsdlns:telephonyChangeNicModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceAddSMS"> + <wsdl:input message="wsdlns:dedicatedMonitoringServiceAddSMSRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringServiceAddSMSResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="prepaidGetBalance"> + <wsdl:input message="wsdlns:prepaidGetBalanceRequest"/> + <wsdl:output message="wsdlns:prepaidGetBalanceResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dnsGeolocalizeHosting"> + <wsdl:input message="wsdlns:dnsGeolocalizeHostingRequest"/> + <wsdl:output message="wsdlns:dnsGeolocalizeHostingResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popAdd"> + <wsdl:input message="wsdlns:popAddRequest"/> + <wsdl:output message="wsdlns:popAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserAdd"> + <wsdl:input message="wsdlns:telephonyClick2CallUserAddRequest"/> + <wsdl:output message="wsdlns:telephonyClick2CallUserAddResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="domainHostInfo"> + <wsdl:input message="wsdlns:domainHostInfoRequest"/> + <wsdl:output message="wsdlns:domainHostInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedList"> + <wsdl:input message="wsdlns:dedicatedListRequest"/> + <wsdl:output message="wsdlns:dedicatedListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceOptionsModify"> + <wsdl:input message="wsdlns:telephonyConferenceOptionsModifyRequest"/> + <wsdl:output message="wsdlns:telephonyConferenceOptionsModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetAvailableIpFromNetwork"> + <wsdl:input message="wsdlns:dedicatedGetAvailableIpFromNetworkRequest"/> + <wsdl:output message="wsdlns:dedicatedGetAvailableIpFromNetworkResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="crontabModify"> + <wsdl:input message="wsdlns:crontabModifyRequest"/> + <wsdl:output message="wsdlns:crontabModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="sqlpriveCronGet"> + <wsdl:input message="wsdlns:sqlpriveCronGetRequest"/> + <wsdl:output message="wsdlns:sqlpriveCronGetResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="supportReactivateThread"> + <wsdl:input message="wsdlns:supportReactivateThreadRequest"/> + <wsdl:output message="wsdlns:supportReactivateThreadResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="zoneImport"> + <wsdl:input message="wsdlns:zoneImportRequest"/> + <wsdl:output message="wsdlns:zoneImportResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="multiDomainDel"> + <wsdl:input message="wsdlns:multiDomainDelRequest"/> + <wsdl:output message="wsdlns:multiDomainDelResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMailinglistSubscribe"> + <wsdl:input message="wsdlns:dedicatedMailinglistSubscribeRequest"/> + <wsdl:output message="wsdlns:dedicatedMailinglistSubscribeResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupInfo"> + <wsdl:input message="wsdlns:serviceGroupInfoRequest"/> + <wsdl:output message="wsdlns:serviceGroupInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="automatedMailFlush"> + <wsdl:input message="wsdlns:automatedMailFlushRequest"/> + <wsdl:output message="wsdlns:automatedMailFlushResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="managedServicesNameUpdate"> + <wsdl:input message="wsdlns:managedServicesNameUpdateRequest"/> + <wsdl:output message="wsdlns:managedServicesNameUpdateResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="popGetQuota"> + <wsdl:input message="wsdlns:popGetQuotaRequest"/> + <wsdl:output message="wsdlns:popGetQuotaResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenOptionsModify"> + <wsdl:input message="wsdlns:telephonyHuntingGenericScreenOptionsModifyRequest"/> + <wsdl:output message="wsdlns:telephonyHuntingGenericScreenOptionsModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyPlugAndPhoneInfo"> + <wsdl:input message="wsdlns:telephonyPlugAndPhoneInfoRequest"/> + <wsdl:output message="wsdlns:telephonyPlugAndPhoneInfoResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyReversmentsRefundFromBillingAccount"> + <wsdl:input message="wsdlns:telephonyReversmentsRefundFromBillingAccountRequest"/> + <wsdl:output message="wsdlns:telephonyReversmentsRefundFromBillingAccountResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignDelete"> + <wsdl:input message="wsdlns:telephonyFaxCampaignDeleteRequest"/> + <wsdl:output message="wsdlns:telephonyFaxCampaignDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMessageDelete"> + <wsdl:input message="wsdlns:telephonyVoicemailMessageDeleteRequest"/> + <wsdl:output message="wsdlns:telephonyVoicemailMessageDeleteResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingNameModify"> + <wsdl:input message="wsdlns:dedicatedIpLoadBalancingNameModifyRequest"/> + <wsdl:output message="wsdlns:dedicatedIpLoadBalancingNameModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyLineOptionsList"> + <wsdl:input message="wsdlns:telephonyLineOptionsListRequest"/> + <wsdl:output message="wsdlns:telephonyLineOptionsListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberModify"> + <wsdl:input message="wsdlns:telephonyAbbreviatedNumberModifyRequest"/> + <wsdl:output message="wsdlns:telephonyAbbreviatedNumberModifyResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceList"> + <wsdl:input message="wsdlns:dedicatedMonitoringServiceListRequest"/> + <wsdl:output message="wsdlns:dedicatedMonitoringServiceListResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="resellerDomainTransfer"> + <wsdl:input message="wsdlns:resellerDomainTransferRequest"/> + <wsdl:output message="wsdlns:resellerDomainTransferResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + <wsdl:operation name="serviceGroupAddService"> + <wsdl:input message="wsdlns:serviceGroupAddServiceRequest"/> + <wsdl:output message="wsdlns:serviceGroupAddServiceResponse"/> + <wsdl:fault name="failure" message="wsdlns:FailureMsg" /> + </wsdl:operation> + + </wsdl:portType> + + <wsdl:binding name="managerBinding" type="wsdlns:managerPortType"> + <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> + + <wsdl:operation name="telephonyConferenceDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListModeratorDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListModeratorDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlRestart"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlRestart" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="logout"> + <soap:operation soapAction="http://soapi.ovh.com/manager#logout" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiFtpChangeDirectory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiFtpChangeDirectory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlVersion"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlVersion" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedReverseDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedDelServiceMonitoringAlert"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedDelServiceMonitoringAlert" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailOptionsList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailOptionsList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookSharePeerList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookSharePeerList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupGetAllInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupGetAllInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#redirectedEmailAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicModifyInfos"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicModifyInfos" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyRedirectModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyRedirectModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseImportFromFile"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlDatabaseImportFromFile" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedAddServiceMonitoringAlertSMS"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedAddServiceMonitoringAlertSMS" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetVolumeHistory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailGetVolumeHistory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetTodo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailGetTodo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupReinstallConfiguration"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupReinstallConfiguration" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetHisto"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupGetHisto" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainHostUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainHostUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="databaseChangePassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#databaseChangePassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="billingInvoiceList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#billingInvoiceList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="globalAccessByNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#globalAccessByNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootGetRescueEmail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedNetbootGetRescueEmail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketListIncidentsByDomain"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketListIncidentsByDomain" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsMultiSend"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsMultiSend" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceListPaginated"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceListPaginated" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedRtmListBackdoor"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedRtmListBackdoor" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneEntryList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneEntryList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dnsDefaultInstallCustom"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dnsDefaultInstallCustom" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxHistory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxHistory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiFtpChangePassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiFtpChangePassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlUserList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlUserList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainUnlock"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainUnlock" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyRestrictionList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyRestrictionList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorSetAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainWhoisObfuscatorSetAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popDetachMasterNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popDetachMasterNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberCustomList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberCustomList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPlugAndPhoneSkinModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPlugAndPhoneSkinModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxOptionsModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxOptionsModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountSummary"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountSummary" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="overquotaInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#overquotaInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetErrors"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailGetErrors" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyClick2CallUserDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailGetCapabilities"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailGetCapabilities" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsAccountList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsAccountList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountConsumptionCSVByMail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountConsumptionCSVByMail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationVoicemail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFMHuntingModificationVoicemail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyOrdersFollowingUp"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyOrdersFollowingUp" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupContactAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ortDomainDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ortDomainDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListModeratorList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListModeratorList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillDetailsCSV"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillDetailsCSV" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlRamUsed"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlRamUsed" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsCreditLeft"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsCreditLeft" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidDomainCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidDomainCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryPJCode"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDirectoryPJCode" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyListSummationCallsFromBillingAccount"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyListSummationCallsFromBillingAccount" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="rpsMigrationGetProgressStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#rpsMigrationGetProgressStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootGetAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedNetbootGetAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailDomainListByMasterNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailDomainListByMasterNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceMailReportModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceMailReportModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainTransferIT"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainTransferIT" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpAvailableGetList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedVirtualMacIpAvailableGetList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxOptionsList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxOptionsList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketListIncidents"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketListIncidents" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="infrastructureReverseModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#infrastructureReverseModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVxmlDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringSMSCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringSMSCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="responderEmailList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#responderEmailList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDepositMovementModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDepositMovementModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallDo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyClick2CallDo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVxmlInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySpecialNumberOrder"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySpecialNumberOrder" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailOptionsModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailOptionsModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOldOffer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineSwitchOldOffer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneEntryAddCustom"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneEntryAddCustom" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainWhoisObfuscatorInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupContactDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketReopen"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketReopen" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupFtpPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupFtpPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="hostingAccessByNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#hostingAccessByNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceModeratorCallNumberModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceModeratorCallNumberModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveAlertInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveAlertInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferSimultaneousLinesAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyOfferSimultaneousLinesAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListFullInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListFullInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedRtmBackdoorUpdateAlert"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedRtmBackdoorUpdateAlert" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="responderEmailInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#responderEmailInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyToneRemoteUpload"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyToneRemoteUpload" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedSecondaryDNSAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popUpgradeQuota"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popUpgradeQuota" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationMode"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFMHuntingModificationMode" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dnsInstall"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dnsInstall" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAliasToSipOffer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAliasToSipOffer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="hostingSummary"> + <soap:operation soapAction="http://soapi.ovh.com/manager#hostingSummary" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailDomainSummary"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailDomainSummary" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedRtmGetStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedRtmGetStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionQuotaUsed"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesPartitionQuotaUsed" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootGetAvailable"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedNetbootGetAvailable" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserMultiSend"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserMultiSend" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsHistory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsHistory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneEntryModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneEntryModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketListContact"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketListContact" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMailinglistGetAllowed"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMailinglistGetAllowed" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberOnGroupModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="accountSummary"> + <soap:operation soapAction="http://soapi.ovh.com/manager#accountSummary" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="subDomainDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#subDomainDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGenericScreenList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGenericScreenStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationMembers"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingModificationMembers" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="rpsMigrationStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#rpsMigrationStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dnsReset"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dnsReset" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportGetNicDomains"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportGetNicDomains" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignCreation"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxCampaignCreation" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportGetThreads"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportGetThreads" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverRipeAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListSubscriberAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcClientRuleAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFilterIrcClientRuleAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetCalendar"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupGetCalendar" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationMembers"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFMHuntingModificationMembers" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyRestrictionModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyRestrictionModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="crontabDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#crontabDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenOptions"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGenericScreenOptions" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesIpAccessChange"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesIpAccessChange" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="accountHistory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#accountHistory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingServerDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingServerDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainCheck"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainCheck" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidDomainTransfer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidDomainTransfer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedEditServiceMonitoringItem"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedEditServiceMonitoringItem" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="password"> + <soap:operation soapAction="http://soapi.ovh.com/manager#password" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderValidate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSenderValidate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationSimultaneousCalls"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingModificationSimultaneousCalls" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="orderTelephonySmsCredit"> + <soap:operation soapAction="http://soapi.ovh.com/manager#orderTelephonySmsCredit" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedVirtualMacIpDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeSplit"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverRipeSplit" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedReverseInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedCapabilitiesGetAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedCapabilitiesGetAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxCampaignList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupIncludeAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupIncludeAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportSendMessage"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportSendMessage" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="notepadSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#notepadSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverRipeList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetUserQuotaForUser"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsGetUserQuotaForUser" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringServiceAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedHardRebootDo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedHardRebootDo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedReverseList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainWhoisObfuscatorSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="rpsMigrationTodo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#rpsMigrationTodo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFunctionKeyModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicTldEligibility"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicTldEligibility" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailGetState"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailGetState" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlLogs"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlLogs" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxModifyPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxModifyPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupFtpAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupFtpAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="databaseDump"> + <soap:operation soapAction="http://soapi.ovh.com/manager#databaseDump" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryModifyPublication"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDirectoryModifyPublication" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainResellerSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainResellerSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="crontabList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#crontabList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpUsedGetList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedVirtualMacIpUsedGetList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOfferPossibility"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineSwitchOfferPossibility" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSenderList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainRestore"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainRestore" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketAnswer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketAnswer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveCronSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveCronSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFunctionKeyList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedNetbootInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainOperationRelaunch"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainOperationRelaunch" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOffer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineSwitchOffer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailModifyPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailModifyPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceRoomModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceRoomModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookShare"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookShare" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSetUserQuota"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSetUserQuota" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="cmsInstall"> + <soap:operation soapAction="http://soapi.ovh.com/manager#cmsInstall" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportGetAllVisibleCategories"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportGetAllVisibleCategories" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlValidate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVxmlValidate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberOnGroupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineLogs"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineLogs" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiFtpList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiFtpList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiFtpAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiFtpAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabasePrivilegeList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlDatabasePrivilegeList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailAccessByNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailAccessByNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyClick2CallUserList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneEntryDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneEntryDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidSetThreshold"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidSetThreshold" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMailboxList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailMailboxList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainRenew"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainRenew" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignDetails"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxCampaignDetails" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterRuleDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterRuleDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySpecialNumberCustomList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySpecialNumberCustomList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringServiceDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationSimultaneousCalls"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFMHuntingModificationSimultaneousCalls" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterPriority"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterPriority" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="accountAlertThresholdSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#accountAlertThresholdSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesSnapshotUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesSnapshotUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportGetThreadTree"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportGetThreadTree" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailSetDomainCatchAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailSetDomainCatchAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainCapabilities"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainCapabilities" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingServerStateModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingServerStateModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMailboxDownload"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailMailboxDownload" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedReverseModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyReversmentsRefundIsPending"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyReversmentsRefundIsPending" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceModifyContact"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceModifyContact" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListInfoModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyScreenListInfoModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainDnsList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainDnsList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailDomainMxList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailDomainMxList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedSecondaryDNSInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesHostMasterIpGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesHostMasterIpGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ortDomainList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ortDomainList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenStatusModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGenericScreenStatusModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookContactAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainOperationInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainOperationInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetAvailableNetworkFromCountry"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedGetAvailableNetworkFromCountry" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPortabilityOrderSpecialNumber"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPortabilityOrderSpecialNumber" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="billingGetReferencesToExpired"> + <soap:operation soapAction="http://soapi.ovh.com/manager#billingGetReferencesToExpired" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidGetSummary"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidGetSummary" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainDnsUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainDnsUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterRuleAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterRuleAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainResellerDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainResellerDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineSwitchOldOfferPossibility"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineSwitchOldOfferPossibility" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreateIT"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainCreateIT" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="notepadGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#notepadGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationAnonymousCallRejection"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingModificationAnonymousCallRejection" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcServerRuleList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFilterIrcServerRuleList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberGetBillingAccount"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberGetBillingAccount" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesPartitionDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyTonesOptionsList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyTonesOptionsList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportReportAnswerProblem"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportReportAnswerProblem" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiDomainList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiDomainList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketClose"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketClose" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyListSummationCallsFromNumber"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyListSummationCallsFromNumber" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookContactModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainDnsGetOvhDefault"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainDnsGetOvhDefault" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="databaseCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#databaseCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="billingGetAccessByNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#billingGetAccessByNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupExcludeAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupExcludeAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceModifyOwner"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceModifyOwner" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineOptionsModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineOptionsModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveCronDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveCronDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVxmlAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGenericScreenSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignStartStop"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxCampaignStartStop" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcServerRuleDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFilterIrcServerRuleDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="hostingGetCapabilities"> + <soap:operation soapAction="http://soapi.ovh.com/manager#hostingGetCapabilities" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorUnset"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainWhoisObfuscatorUnset" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainHostDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainHostDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverRipeModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="responderEmailDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#responderEmailDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryModifyAddress"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDirectoryModifyAddress" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionStatusCheck"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesPartitionStatusCheck" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="cmsAvailableList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#cmsAvailableList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySecurityDepositCredit"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySecurityDepositCredit" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicModifyLanguage"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicModifyLanguage" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineOrder"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineOrder" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupExcludeDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupExcludeDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailUnlock"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailUnlock" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="login"> + <soap:operation soapAction="http://soapi.ovh.com/manager#login" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popListByMasterNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popListByMasterNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFunctionKeyDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceModifyOwnerInfos"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceModifyOwnerInfos" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedHardRebootStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedHardRebootStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetServiceMonitoringItem"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedGetServiceMonitoringItem" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserCreditLeft"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserCreditLeft" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPortabilityOrder"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPortabilityOrder" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="cmsRemove"> + <soap:operation soapAction="http://soapi.ovh.com/manager#cmsRemove" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMailboxDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailMailboxDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseImportFromHost"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlDatabaseImportFromHost" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="billingInvoiceInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#billingInvoiceInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="version"> + <soap:operation soapAction="http://soapi.ovh.com/manager#version" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="orderAccountCredit"> + <soap:operation soapAction="http://soapi.ovh.com/manager#orderAccountCredit" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberClean"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberClean" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedReverseAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedReverseAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetFreePlanning"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupGetFreePlanning" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallAllowedDistributionGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedInstallAllowedDistributionGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="subDomainModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#subDomainModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPlugAndPhoneOperation"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPlugAndPhoneOperation" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="anonymousFtpInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#anonymousFtpInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedCapabilitiesGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedCapabilitiesGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="cmsList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#cmsList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSetQuotaNotification"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSetQuotaNotification" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringSMSDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringSMSDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="logsAccessList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#logsAccessList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookContactList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainTransferASIA"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainTransferASIA" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceLanguageModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceLanguageModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainHostList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainHostList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="hostingChangeMainDomain"> + <soap:operation soapAction="http://soapi.ovh.com/manager#hostingChangeMainDomain" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineGetOfferPrices"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineGetOfferPrices" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetQuotaNotification"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsGetQuotaNotification" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationMode"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingModificationMode" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListBlackWhiteChoice"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyScreenListBlackWhiteChoice" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberZoneAndPrefixList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberZoneAndPrefixList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedOperationList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedOperationList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListModeratorAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListModeratorAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupContactList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="anonymousFtpActivate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#anonymousFtpActivate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDeleteLine"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDeleteLine" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicModifyInfosIT"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicModifyInfosIT" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ortDomainAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ortDomainAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicPublicInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicPublicInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveAlertSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveAlertSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupIncludeDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupIncludeDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBandwidthSwitching"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBandwidthSwitching" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlOvhMyAdmin"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlOvhMyAdmin" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ftpInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ftpInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="hostingList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#hostingList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="orderEmailMxPlan"> + <soap:operation soapAction="http://soapi.ovh.com/manager#orderEmailMxPlan" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPortabilityStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPortabilityStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListSubscriberList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListSubscriberDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainLockStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainLockStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidDomainRenew"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidDomainRenew" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="orderEmailMxLarge"> + <soap:operation soapAction="http://soapi.ovh.com/manager#orderEmailMxLarge" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterActive"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterActive" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySecurityDepositInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySecurityDepositInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="databaseList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#databaseList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingServerAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingServerAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreateCAT"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainCreateCAT" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ftpChangePassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ftpChangePassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="orderDedicatedFailover"> + <soap:operation soapAction="http://soapi.ovh.com/manager#orderDedicatedFailover" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="rpsGetIoStats"> + <soap:operation soapAction="http://soapi.ovh.com/manager#rpsGetIoStats" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVxmlModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVxmlModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="cmsRenewAdminPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#cmsRenewAdminPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceAnnounceDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceAnnounceDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootModifyById"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedNetbootModifyById" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyScreenListInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineLogsOnGroup"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineLogsOnGroup" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="databaseDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#databaseDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceAnnouncesStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceAnnouncesStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainCreateASIA"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainCreateASIA" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicChangePassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicChangePassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookContactDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookContactDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="ticketCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#ticketCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="notepadAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#notepadAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="subDomainAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#subDomainAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupGetDate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupGetDate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedSecondaryDNSDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainLock"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainLock" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailFilterList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailFilterList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneEntryAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneEntryAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedSecondaryDNSGetAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedSecondaryDNSGetAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="infrastructureIpListGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#infrastructureIpListGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupSetComment"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupSetComment" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicCreateIT"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicCreateIT" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainOperationCancel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainOperationCancel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFMHuntingModificationAnonymousCallRejection"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFMHuntingModificationAnonymousCallRejection" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBandwidthManagementGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBandwidthManagementGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDdiModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDdiModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringStatusUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringStatusUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyRedirectInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyRedirectInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="anonymousFtpChangePassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#anonymousFtpChangePassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSend"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSend" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailLock"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailLock" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverRipeGetIp"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverRipeGetIp" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="responderEmailModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#responderEmailModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallBasic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedInstallBasic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailGetDomainMxFiltering"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailGetDomainMxFiltering" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionCreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesPartitionCreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicModifyEmail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicModifyEmail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyToneDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyToneDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallReset"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedInstallReset" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="orderDedicatedFailoverRipe"> + <soap:operation soapAction="http://soapi.ovh.com/manager#orderDedicatedFailoverRipe" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupContactModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupContactModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupRemoveService"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupRemoveService" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyScreenListBlackWhiteChoiceModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyScreenListBlackWhiteChoiceModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcClientRuleDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFilterIrcClientRuleDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainHostAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainHostAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popModifyDescription"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popModifyDescription" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="crontabAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#crontabAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderDescription"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSenderDescription" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberOnGroupDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesPartitionGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailDelMasterNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailDelMasterNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#redirectedEmailModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneExport"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneExport" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMrtgInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMrtgInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupReinstallData"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupReinstallData" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceFreedomList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceFreedomList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportGetFullMessage"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportGetFullMessage" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailGetDomainCatchAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailGetDomainCatchAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserSend"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserSend" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupFtpInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupFtpInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookOnGroupGroupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookOnGroupGroupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyClick2CallUserPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="momVersion"> + <soap:operation soapAction="http://soapi.ovh.com/manager#momVersion" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailSetMasterNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailSetMasterNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlDatabaseList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailReturnSet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailReturnSet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="databaseRecreate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#databaseRecreate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popModifyPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popModifyPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="responderEmailAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#responderEmailAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlProcessList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlProcessList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetUserQuota"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsGetUserQuota" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetRandomAvailableIpFromCountry"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedGetRandomAvailableIpFromCountry" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSenderDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyToneStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyToneStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDdiInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDdiInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedInstallBasicProgress"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedInstallBasicProgress" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedAddServiceMonitoringAlertEmail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedAddServiceMonitoringAlertEmail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFailoverUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFailoverUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGroupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGroupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryListWayType"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDirectoryListWayType" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyCallList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyCallList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesPartitionUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesPartitionUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="TelephonySipToAliasOffer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#TelephonySipToAliasOffer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcServerRuleAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFilterIrcServerRuleAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedVirtualMacIpAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedVirtualMacIpAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAliasToSipPossibilities"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAliasToSipPossibilities" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberOnGroupAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberOnGroupAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingModificationQueue"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingModificationQueue" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillDetails"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillDetails" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyDirectoryInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyDirectoryInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dnsInstallCustom"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dnsInstallCustom" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlActivateOvhManagement"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlActivateOvhManagement" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallDoBySession"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyClick2CallDoBySession" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidGetThreshold"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidGetThreshold" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorUnsetAll"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainWhoisObfuscatorUnsetAll" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiFtpDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiFtpDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlGetPossibleDump"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlGetPossibleDump" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberOrder"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberOrder" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidGetHistory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidGetHistory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyNumberCityForZoneList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyNumberCityForZoneList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#redirectedEmailDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedBackupUpdateDate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedBackupUpdateDate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainOperationList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainOperationList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyTonesOptionsModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyTonesOptionsModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popAttachMasterNic"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popAttachMasterNic" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="crontabInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#crontabInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupSetName"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupSetName" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyOfferInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiDomainAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiDomainAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="redirectedEmailList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#redirectedEmailList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicUpdateIT"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicUpdateIT" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserHistory"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserHistory" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringStatusGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringStatusGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedNetbootModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedNetbootModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="subDomainList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#subDomainList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveFtpPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveFtpPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferModifyPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyOfferModifyPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedFilterIrcClientRuleList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedFilterIrcClientRuleList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dnsUninstall"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dnsUninstall" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFunctionKeyAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFunctionKeyAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlRootPassword"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlRootPassword" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsUserDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsUserDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="emailSetDomainMxFiltering"> + <soap:operation soapAction="http://soapi.ovh.com/manager#emailSetDomainMxFiltering" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMessagesStatus"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailMessagesStatus" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="nicUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#nicUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyOfferModifyName"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyOfferModifyName" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="notepadFlush"> + <soap:operation soapAction="http://soapi.ovh.com/manager#notepadFlush" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiDomainModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiDomainModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="language"> + <soap:operation soapAction="http://soapi.ovh.com/manager#language" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringSMSModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringSMSModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPhonebookGroupList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPhonebookGroupList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="logsAccessDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#logsAccessDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="logsAccessAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#logsAccessAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiDomainInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiDomainInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainWhoisObfuscatorList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainWhoisObfuscatorList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlProcessKill"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlProcessKill" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsSenderAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsSenderAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineConsumptionCSVByMail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineConsumptionCSVByMail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="mailingListSubscriberListByEmail"> + <soap:operation soapAction="http://soapi.ovh.com/manager#mailingListSubscriberListByEmail" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportCloseThreads"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportCloseThreads" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveMysqlDatabaseSave"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveMysqlDatabaseSave" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyListReversableCallsFromNumber"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyListReversableCallsFromNumber" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyBillingAccountList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyBillingAccountList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonySmsGetQuotaNotificationForUser"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonySmsGetQuotaNotificationForUser" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyChangeNicModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyChangeNicModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceAddSMS"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringServiceAddSMS" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="prepaidGetBalance"> + <soap:operation soapAction="http://soapi.ovh.com/manager#prepaidGetBalance" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dnsGeolocalizeHosting"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dnsGeolocalizeHosting" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyClick2CallUserAdd"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyClick2CallUserAdd" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="domainHostInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#domainHostInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyConferenceOptionsModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyConferenceOptionsModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedGetAvailableIpFromNetwork"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedGetAvailableIpFromNetwork" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="crontabModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#crontabModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="sqlpriveCronGet"> + <soap:operation soapAction="http://soapi.ovh.com/manager#sqlpriveCronGet" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="supportReactivateThread"> + <soap:operation soapAction="http://soapi.ovh.com/manager#supportReactivateThread" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="zoneImport"> + <soap:operation soapAction="http://soapi.ovh.com/manager#zoneImport" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="multiDomainDel"> + <soap:operation soapAction="http://soapi.ovh.com/manager#multiDomainDel" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMailinglistSubscribe"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMailinglistSubscribe" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="automatedMailFlush"> + <soap:operation soapAction="http://soapi.ovh.com/manager#automatedMailFlush" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="managedServicesNameUpdate"> + <soap:operation soapAction="http://soapi.ovh.com/manager#managedServicesNameUpdate" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="popGetQuota"> + <soap:operation soapAction="http://soapi.ovh.com/manager#popGetQuota" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyHuntingGenericScreenOptionsModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyHuntingGenericScreenOptionsModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyPlugAndPhoneInfo"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyPlugAndPhoneInfo" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyReversmentsRefundFromBillingAccount"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyReversmentsRefundFromBillingAccount" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyFaxCampaignDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyFaxCampaignDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyVoicemailMessageDelete"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyVoicemailMessageDelete" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedIpLoadBalancingNameModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedIpLoadBalancingNameModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyLineOptionsList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyLineOptionsList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="telephonyAbbreviatedNumberModify"> + <soap:operation soapAction="http://soapi.ovh.com/manager#telephonyAbbreviatedNumberModify" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="dedicatedMonitoringServiceList"> + <soap:operation soapAction="http://soapi.ovh.com/manager#dedicatedMonitoringServiceList" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="resellerDomainTransfer"> + <soap:operation soapAction="http://soapi.ovh.com/manager#resellerDomainTransfer" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + <wsdl:operation name="serviceGroupAddService"> + <soap:operation soapAction="http://soapi.ovh.com/manager#serviceGroupAddService" /> + <wsdl:input> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:input> + <wsdl:output> + <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://soapi.ovh.com/manager" /> + </wsdl:output> + <wsdl:fault name="failure"> + <soap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="failure" use="encoded" /> + </wsdl:fault> + </wsdl:operation> + + </wsdl:binding> + + <wsdl:service name="managerService"> + <wsdl:port name="managerPort" binding="wsdlns:managerBinding"> + <soap:address location="https://www.ovh.com:1664" /> + </wsdl:port> + </wsdl:service> + +</wsdl:definitions> diff --git a/ovh/soapi/zoneEntryAdd b/ovh/soapi/zoneEntryAdd new file mode 100755 index 00000000..bf1f4a92 --- /dev/null +++ b/ovh/soapi/zoneEntryAdd @@ -0,0 +1,33 @@ +#!/usr/bin/python + +from os import environ +from os.path import dirname, realpath +from SOAPpy import WSDL +from sys import argv +from json import dumps, JSONEncoder + +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] +domain = argv[2] +subdomain = argv[3] +fieldtype = argv[4] +target = argv[5] + +session = soap.login(username, password, 'de', 0) + +result = soap.zoneEntryAdd(session, domain, subdomain, fieldtype, target) +print dumps(result, sort_keys=True, indent=2, default=default) + +soap.logout(session) diff --git a/ovh/soapi/zoneEntryDel b/ovh/soapi/zoneEntryDel new file mode 100755 index 00000000..c8137fc1 --- /dev/null +++ b/ovh/soapi/zoneEntryDel @@ -0,0 +1,33 @@ +#!/usr/bin/python + +from os import environ +from os.path import dirname, realpath +from SOAPpy import WSDL +from sys import argv +from json import dumps, JSONEncoder + +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] +domain = argv[2] +subdomain = argv[3] +fieldtype = argv[4] +target = argv[5] + +session = soap.login(username, password, 'de', 0) + +result = soap.zoneEntryDel(session, domain, subdomain, fieldtype, target) +print dumps(result, sort_keys=True, indent=2, default=default) + +soap.logout(session) diff --git a/ovh/soapi/zoneEntryList b/ovh/soapi/zoneEntryList index 7c032462..af37c112 100755 --- a/ovh/soapi/zoneEntryList +++ b/ovh/soapi/zoneEntryList @@ -1,24 +1,28 @@ #!/usr/bin/python from os import environ -import pprint +from os.path import dirname, realpath from SOAPpy import WSDL +from json import dumps, JSONEncoder -soap = WSDL.Proxy('https://www.ovh.com/soapi/soapi-re-1.24.wsdl') +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) username = environ['KREBS_OVH_USER'] password = environ['KREBS_OVH_PASS'] -#login session = soap.login(username, password, 'de', 0) -print "login successfull" -#zoneEntryList result = soap.zoneEntryList(session, 'krebsco.de') -print "zoneEntryList successfull" -pp = pprint.PrettyPrinter(indent=4) -pp.pprint(result) # your code here ... +print dumps(result, sort_keys=True, indent=2, default=default) -#logout soap.logout(session) -print "logout successfull" diff --git a/ovh/soapi/zoneExport b/ovh/soapi/zoneExport new file mode 100755 index 00000000..7659d647 --- /dev/null +++ b/ovh/soapi/zoneExport @@ -0,0 +1,28 @@ +#!/usr/bin/python + +from os import environ +from os.path import dirname, realpath +from SOAPpy import WSDL +from json import dumps, JSONEncoder + +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +session = soap.login(username, password, 'de', 0) + +result = soap.zoneExport(session, 'krebsco.de') +print result + +soap.logout(session) diff --git a/ovh/soapi/zoneImport b/ovh/soapi/zoneImport new file mode 100755 index 00000000..141fb4a2 --- /dev/null +++ b/ovh/soapi/zoneImport @@ -0,0 +1,32 @@ +#!/usr/bin/python + +from os import environ +from os.path import dirname, realpath +from SOAPpy import WSDL +from sys import argv, stdin +from string import join +from json import dumps, JSONEncoder + +def default(o): + try: + iterable = iter(o) + except TypeError: + pass + else: + return list(iterable) + return JSONEncoder.default(o) + +wsdl = dirname(realpath(__file__)) + '/soapi-re-1.24.wsdl' +soap = WSDL.Proxy(wsdl) + +username = environ['KREBS_OVH_USER'] +password = environ['KREBS_OVH_PASS'] + +zone = join(stdin.readlines(),'') + +session = soap.login(username, password, 'en', 0) + +result = soap.zoneImport(session, 'krebsco.de', zone) +print result + +soap.logout(session) |