AXL-Client-Simple
view release on metacpan or search on metacpan
share/AXLSoap.xsd view on Meta::CPAN
</xsd:element>
<xsd:element name="descFieldName" type="axlapi:Name50"/>
<xsd:element name="Multikey" type="xsd:boolean"/>
<xsd:element name="filter" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="XDateRule">
<xsd:annotation>
<xsd:documentation>Directs the rule processor to validate the input as a date. Valid date formats are Any, Long (March 15, 2001), Short-US (the default, 03/15/01), and Short-EU (15/03/01).</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="dateFormat" default="Short-US" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Any"/>
<xsd:enumeration value="Long"/>
<xsd:enumeration value="Short-US"/>
<xsd:enumeration value="Short-EU"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:choice minOccurs="0">
<xsd:annotation>
<xsd:documentation>The default is either a specific date (default), or automatically defaulted to today (defaultNow).</xsd:documentation>
</xsd:annotation>
<xsd:element name="default" type="xsd:date"/>
<xsd:element name="defaultNow" type="xsd:boolean"/>
</xsd:choice>
<xsd:element name="min" type="xsd:date" minOccurs="0"/>
<xsd:element name="max" type="xsd:date" minOccurs="0"/>
<xsd:element name="restrictTo" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Should the rule make sure that the date is not in the future?</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Past"/>
<xsd:enumeration value="Future"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="XBooleanRule">
<xsd:sequence>
<xsd:element name="default" type="xsd:boolean"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="XScriptRule">
<xsd:annotation>
<xsd:documentation>The input is evaluated by a fragment of JavaScript.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="comment" type="xsd:string"/>
<xsd:element name="script">
<xsd:annotation>
<xsd:documentation>The JavaScript fragment used to evaluate the input. The fragment should be cordoned off by CDATA tags. The fragment must contain a entry-point function with the following prototype:
Array AXLScriptRuleEntryPoint(String inputString)
The output is an Array of two values. Array[0] is a boolean value and indicates success (true) or failure (false). Array[1] contains the result of the script. If successful, it should contain a copy of the inputString or other valid return value. If ...
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:whiteSpace value="preserve"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="XURIRule">
<xsd:annotation>
<xsd:documentation>The URI rule determines if a value is a valid URI.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="default" type="xsd:anyURI" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="XRuleError">
<xsd:annotation>
<xsd:documentation>The XML format for a rule error that might be thrown by a rule processor.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="invalidValue" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Contains the value of the original input.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ruleBroken" type="xsd:Name">
<xsd:annotation>
<xsd:documentation>The name of the rule broken.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="errorCode" type="xsd:integer" default="0">
<xsd:annotation>
<xsd:documentation>An integer error code.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="errorText" type="xsd:string">
<xsd:annotation>
<xsd:documentation>Error message generated by rule.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- *********************************************************** -->
<!-- Service Dependency objects -->
<!-- *********************************************************** -->
<xsd:complexType name="XServiceDependency">
<xsd:annotation>
<xsd:documentation>This lists what services that the specified service is dependent on.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="name" type="xsd:anyURI">
<xsd:annotation>
<xsd:documentation>The URI of this service dependency. For example: xmldi://cisco.com/serviceDependency/0. The last part of the URI is the enum value of this service.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="dependencies">
<xsd:annotation>
<xsd:documentation>A list of zero or more services that this service depends on.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="dependency" type="xsd:nonNegativeInteger" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>This is the value of the 'enum' column from the TypeService table.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="help" type="axlapi:String1024" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Help text. Optional.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="warning" type="axlapi:String1024" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The warning message. Optional</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="service" type="xsd:nonNegativeInteger" use="required">
<xsd:annotation>
<xsd:documentation>This is the service we are listing dependencies for.</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!-- *********************************************************** -->
<!-- Simple String/Name Restrictions -->
<!-- *********************************************************** -->
<xsd:simpleType name="Name50">
<xsd:restriction base="xsd:Name">
<xsd:maxLength value="50"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="Name128">
<xsd:restriction base="xsd:Name">
share/AXLSoap.xsd view on Meta::CPAN
</xsd:restriction>
</xsd:simpleType>
<!-- AXLEnums.xsd -->
<xsd:simpleType name="XASN1RoseOidEncoding">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="No Changes"/>
<xsd:enumeration value="Use Local Value"/>
<xsd:enumeration value="Use Global Value ISO"/>
<xsd:enumeration value="Use Global Value ECMA"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XAdminBoolean">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="FALSE"/>
<xsd:enumeration value="TRUE"/>
<xsd:enumeration value="DEFAULT"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XAdminError">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Success"/>
<xsd:enumeration value="Failure"/>
<xsd:enumeration value="Invalid range for directory numbers"/>
<xsd:enumeration value="Not yet implemented. See log for more detail"/>
<xsd:enumeration value="Model and class are not compatible. See log for more detail"/>
<xsd:enumeration value="Missing/invalid parameters. See log for more detail"/>
<xsd:enumeration value="Device does not suppport MLPP"/>
<xsd:enumeration value="Device does not support preemption"/>
<xsd:enumeration value="User is not a valid end user or application user"/>
<xsd:enumeration value="Missing default phone template"/>
<xsd:enumeration value="Encountered unexpected database datatype. See log for more detail"/>
<xsd:enumeration value="Updated failed. A required item was not found in the database"/>
<xsd:enumeration value="The Cisco CallManager Group cannot be deleted because it is used by related records. Click Dependency Records to view related records and remove this Cisco CallManager Group from any item that is using it then try aga...
<xsd:enumeration value="One or more Cisco CallManager Groups could not be deleted because it is used by related records. Select a Cisco CallManager Group and click the Dependancy Records link on the Cisco CallManager Configuration page to se...
<xsd:enumeration value="Cannot create DNs or duplicate DNs for the ports. Please check if a DN range is available."/>
<xsd:enumeration value="Partition name cannot be empty string."/>
<xsd:enumeration value="Change failed - Current Password is incorrect."/>
<xsd:enumeration value="Change failed - New Password does not match Confirm Password."/>
<xsd:enumeration value="Change failed - Current PIN is incorrect."/>
<xsd:enumeration value="Change failed - New PIN does not match Confirm PIN."/>
<xsd:enumeration value="Fastdials index already in use. Please choose another index."/>
<xsd:enumeration value="Fastdials phone number already in use. Please choose another phone number."/>
<xsd:enumeration value="Cisco Unity Connection Server returned a SQL Exception. Please check the log file."/>
<xsd:enumeration value="Unable to delete user account from Cisco Unity Connection Server. Please check the log file."/>
<xsd:enumeration value="File uploaded does not have extension .lic. Please upload a license file with extension .lic."/>
<xsd:enumeration value="A file with this name already exists in the license file directory. Please upload a file with a different name."/>
<xsd:enumeration value="Unable to obtain certificate for this IP address/Port. SRST reference has been changed to non-secured. Please disable the security services on the gateway if you do not use the security feature."/>
<xsd:enumeration value="DN/Route Pattern must be the last search parameter when using the Search Within Results option."/>
<xsd:enumeration value="Route Group Name and Directory Number are not allowed in the same search."/>
<xsd:enumeration value="user is not member of super user group. Cannot add to groups the roles which are only accessible to super users"/>
<xsd:enumeration value="Only super users can update members of super user groups"/>
<xsd:enumeration value="Users who are not super users cannot add him/herself to groups"/>
<xsd:enumeration value="Propagation failed for some devices. See log for a list of failed devices."/>
<xsd:enumeration value="Change failed - Credential locked. Please contact your administrator."/>
<xsd:enumeration value="Change failed - Credential locked due to inactivity. Please contact your administrator."/>
<xsd:enumeration value="Unknown credential validation error. Please contact your administrator."/>
<xsd:enumeration value="Wrong Credential."/>
<xsd:enumeration value="Administrative Lock."/>
<xsd:enumeration value="Hack Lock."/>
<xsd:enumeration value="Inactive Lock."/>
<xsd:enumeration value="Expired Lock."/>
<xsd:enumeration value="Expired Lock (with ability to change)."/>
<xsd:enumeration value="End user status is INACTIVE in LDAP."/>
<xsd:enumeration value="LDAP authentication enabled. UpdateCredential failure."/>
<xsd:enumeration value="Invalid credential length."/>
<xsd:enumeration value="Trivial credential."/>
<xsd:enumeration value="Duplicate credential."/>
<xsd:enumeration value="Too recently used Credential."/>
<xsd:enumeration value="User does not have permission to change this credential."/>
<xsd:enumeration value="There is no credential value for the given credential name."/>
<xsd:enumeration value="There is no credential type for the given credential name."/>
<xsd:enumeration value="LDAP communication error. Please check log file."/>
<xsd:enumeration value="User type not defined. Please check log file."/>
<xsd:enumeration value="Failed to update Credential. Please check log file."/>
<xsd:enumeration value="Not a valid application user. Please check log file."/>
<xsd:enumeration value="Database communication error. Please check log file."/>
<xsd:enumeration value="Invalid credential information. Please check log file."/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XAlarmSeverity">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Emergency"/>
<xsd:enumeration value="Alert"/>
<xsd:enumeration value="Critical"/>
<xsd:enumeration value="Error"/>
<xsd:enumeration value="Warning"/>
<xsd:enumeration value="Notice"/>
<xsd:enumeration value="Informational"/>
<xsd:enumeration value="Debug"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XAppOrDeviceReroute">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Redirect to App"/>
<xsd:enumeration value="Redirect to Device"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XAppServer">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Cisco Unity Voice Mail 4.x or later"/>
<xsd:enumeration value="Cisco Unity Connection"/>
<xsd:enumeration value="Cisco Unified Presence Server"/>
<xsd:enumeration value="CUMA Provisioning Server"/>
<xsd:enumeration value="CER Location Management"/>
<xsd:enumeration value="Cisco Web Dialer"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XAppServerContent">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="UNITY KUBRIK"/>
<xsd:enumeration value="UNITY PRE KUBRIK"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XApplication">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Cisco Call Manager Administration"/>
<xsd:enumeration value="Cisco Call Manager Serviceability"/>
<xsd:enumeration value="Cisco Computer Telephone Interface (CTI)"/>
<xsd:enumeration value="Cisco Call Manager AXL Database"/>
<xsd:enumeration value="Cisco Extension Mobility"/>
<xsd:enumeration value="Cisco Call Manager End User"/>
<xsd:enumeration value="Cisco Unified Reporting"/>
<xsd:enumeration value="Cisco Call Manager Dialed Number Analyser"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XApplicationDialRule">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Original Dial Rule"/>
<xsd:enumeration value="Directory Dial Rule"/>
</xsd:restriction>
share/AXLSoap.xsd view on Meta::CPAN
<xsd:enumeration value="The Prefix Digits must be less than 24 digits for Directed Call Park"/>
<xsd:enumeration value="Intercom feature is not supported for this device"/>
<xsd:enumeration value="Cannot insert or update pattern. A Entry already exists with same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Call Park already exists with same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Conferance exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A DN exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Translation exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Call Pick Up Group exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Route exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Message Waiting exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Hunt Pilot exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Voice Mail Port exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Route Domain exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A IPAddress exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Device Template exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Directed Call Park exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Device Intercom exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Translation Intercom exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Translation Calling Party exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Mobility Handoff exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Mobility DTMF exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Mobility IVR exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Device Intercom Template exists with the same pattern and partition."/>
<xsd:enumeration value="Cannot insert or update pattern. A Transformation Called Party Number exists with the same pattern and partition."/>
<xsd:enumeration value="\+ may only be used at the start of a DN. It is not valid after the first digit. Slash (\) is only allowed as part of \+ at the beginning of a DN."/>
<xsd:enumeration value="Cannot have duplicate IPv6 patterns in the same partition."/>
<xsd:enumeration value="Brackets need to be in pair."/>
<xsd:enumeration value="A Cisco CallManager Group may not contain more than 3 Cisco CallManagers"/>
<xsd:enumeration value="Slot value is not supported for this gateway"/>
<xsd:enumeration value="This Slot Module is not allowed at the current slot position for this gateway"/>
<xsd:enumeration value="This VIC card is not allowed for this gateway, under specified slot position and SlotModule"/>
<xsd:enumeration value="The specified slot and subunit are already defined for this MGCP gateway."/>
<xsd:enumeration value="AppUser Name already exists as an EndUser Userid. AppUser Name cannot be the same as an EndUser's userid"/>
<xsd:enumeration value="EndUser userid already exists as an AppUser Name. EndUser userid cannot be the same as an AppUsers name."/>
<xsd:enumeration value="EndUser cannot be inserted because Corporate LDAP directory is the sync master. Add users in the corporate directory."/>
<xsd:enumeration value="EndUser cannot be deleted because Corporate LDAP directory is the sync master. Remove users from the corporate directory."/>
<xsd:enumeration value="Cannot reduce Remote Destination Limit below the number of currently configured Remote Destinations for the EndUser."/>
<xsd:enumeration value="The encrypted form of the password is too large to be stored. Use a shorter or less complex password."/>
<xsd:enumeration value="Only one application server per type can be configured with the localdomain definition."/>
<xsd:enumeration value="The .localdomain suffix is required and cannot be removed from Cisco Unity Connection AppServer name."/>
<xsd:enumeration value="Another Application Server with this name already exists. Please check the Application Server Find/List page to verify your entry does not exist or use a different name."/>
<xsd:enumeration value="A Server with this name already exists as Cisco UCM Server. Please check the Server Find/List page to verify your entry does not exist or use a different name."/>
<xsd:enumeration value="Cannot have more than 100 IP Phone Service subscriptions on a device"/>
<xsd:enumeration value="Cannot subscribe to IP Phone Service that is an Enterprise Subscription service"/>
<xsd:enumeration value="Duplicate Number Plan entries for this Pilot record"/>
<xsd:enumeration value="If NumPlan is null, then PilotUser and DeviceLine must contain values"/>
<xsd:enumeration value="If NumPlan is not null, then PilotUser and DeviceLine must not contain entries"/>
<xsd:enumeration value="PilotUser, device line index, and pilot must be unique"/>
<xsd:enumeration value="Only one record with alwaysroute true is allowed for a particular fkpilot"/>
<xsd:enumeration value="Only Phones and VoiceMail Port usage are allowed"/>
<xsd:enumeration value="Attempt to delete default MLPP Domain record not allowed"/>
<xsd:enumeration value="Cannot have more than one default MLPP Domain record."/>
<xsd:enumeration value="Attempt to update a record that is not user-modifiable"/>
<xsd:enumeration value="Attempt to update MediaResourceList clause failed"/>
<xsd:enumeration value="Attempt to insert value into LicenseDistributionUsed triggered by insert into LicenseInfo table failed"/>
<xsd:enumeration value="Attempt to delete from LicenseDistributionUsed failed because used count, distributed count or both were non-zero"/>
<xsd:enumeration value="Cannot make an active licensed device inactive (IsActive cannot change from true to false)"/>
<xsd:enumeration value="Request unsuccessful to license manager(Please check the Licensing logs for further details) "/>
<xsd:enumeration value="Cannot connect to License Manager"/>
<xsd:enumeration value="Datastore exception in licensing"/>
<xsd:enumeration value="Internal licensing error (check the log file for details)"/>
<xsd:enumeration value="All licenses in use for this feature. Please upload additional licenses (a new license file) and try activating the feature again."/>
<xsd:enumeration value="No licensing support for the requested feature"/>
<xsd:enumeration value="Can't connect to datastore for licensing"/>
<xsd:enumeration value="License file not loaded"/>
<xsd:enumeration value="Licenses not available for the required version"/>
<xsd:enumeration value="All the allocated licenses to this node are consumed. Please upload additional licenses (a new license file) and try again."/>
<xsd:enumeration value="Licensing checkin failed (checkin count is greater than checked out count)"/>
<xsd:enumeration value="License Server not serving licenses on this node"/>
<xsd:enumeration value="All license servers down"/>
<xsd:enumeration value="Unexpected message from license server"/>
<xsd:enumeration value="Request Failed and some License Servers down"/>
<xsd:enumeration value="License File Version Mismatch"/>
<xsd:enumeration value="License File MAC Address Mismatch"/>
<xsd:enumeration value="Invalid or tampered License File"/>
<xsd:enumeration value="License loader parameters file error"/>
<xsd:enumeration value="License File Exception"/>
<xsd:enumeration value="License File Already Loaded"/>
<xsd:enumeration value="License File Format Error"/>
<xsd:enumeration value="Approaching license limit warning"/>
<xsd:enumeration value="Allocated licenses consumed by used and pending. Please upload additional licenses (a new license file) and try again."/>
<xsd:enumeration value="Allocated licenses consumed by used. Please upload additional licenses (a new license file) and try again."/>
<xsd:enumeration value="AllocatedLicenseUnits is reserved for future use. It must be set to 0 and cannot be updated"/>
<xsd:enumeration value="Only characters A-Z, a-z, 0-9 are allowed in prompt name"/>
<xsd:enumeration value="Invalid IP address"/>
<xsd:enumeration value="There cannot be more than 8 NTP entries for the same Date Time Group"/>
<xsd:enumeration value="IP address out of range; addresses must be less than 255.255.255.255"/>
<xsd:enumeration value="7905/12 Dial Rule Pattern contains invalid characters."/>
<xsd:enumeration value="7960/40/Other Dial Rule Pattern contains invalid characters."/>
<xsd:enumeration value="Not a valid parameter for 7905/12 Dial Rule (only patterns allowed)"/>
<xsd:enumeration value="The specified SIP Realm already exists."/>
<xsd:enumeration value="This instance is configured as a service parameter and cannot be deleted"/>
<xsd:enumeration value="This Instance ID already exists in Application or End User CAPF mapping"/>
<xsd:enumeration value="Cannot delete the last Application User from the Standard CCM Super Users group. This group must contain at least one Application User."/>
<xsd:enumeration value="Cannot remove the last Application User from the Standard CCM Super Users group. This group must contain at least one Application User."/>
<xsd:enumeration value="Roles for a standard user group cannot be added, modified or deleted."/>
<xsd:enumeration value="The Resources for a standard role cannot be added, modified or deleted."/>
<xsd:enumeration value="Model/device protocol does not support security encryption"/>
<xsd:enumeration value="Model/device protocol does not support authentication"/>
<xsd:enumeration value="TLS and UDP/TCP ports cannot be shared"/>
<xsd:enumeration value="Phone Security Profiles cannot be nonsecure and use TLS"/>
<xsd:enumeration value="Phone Security Profiles that are Authenticated or Encrypted must use TLS"/>
<xsd:enumeration value="Trunk Security Profiles Incoming Transport Type must use TLS or TCP+UDP"/>
<xsd:enumeration value="Trunk Security Profiles Outgoing Transport Type must use TCP or UDP or TLS"/>
<xsd:enumeration value="Incoming Port in Trunk Security Profile cannot be the same as CallManager SIP Port if Incoming Transport Type is TLS"/>
<xsd:enumeration value="Incoming Port in Trunk Security Profile cannot be the same as CallManager SIP Secured Port if Incoming Transport Type is TCP+UDP"/>
<xsd:enumeration value="Non-secured SCCP phones must use TCP Transport Type"/>
<xsd:enumeration value="Secured phones must use TLS Transport Type"/>
<xsd:enumeration value="Model/device protocol supports TCP therefore Transport Type cannot be TLS"/>
<xsd:enumeration value="Model/device protocol does not support TCP therefore Transport Type must be UDP"/>
<xsd:enumeration value="The value for Exclude Digest Credentials must be set to false"/>
<xsd:enumeration value="The value for Enable Digest Authentication must be set to false"/>
<xsd:enumeration value="The value for TFTP Encrypted must be set to false"/>
<xsd:enumeration value="The value for Model Type must be configured"/>
<xsd:enumeration value="The value for Protocol Type must be configured"/>
<xsd:enumeration value="The Security Profile must be Encrypted and TLS because another device is using this profile which has SRTP enabled"/>
<xsd:enumeration value="Only 1 CUMA Server SecurityProfile is allowed"/>
<xsd:enumeration value="Device security Mode is required for CUMA security profile."/>
<xsd:enumeration value="CUMA security profile incoming transport type must use TCP for non secure mode."/>
<xsd:enumeration value="CUMA security profile transport type must use TLS for secure mode."/>
<xsd:enumeration value="X.509 subject name can not be empty if transport type use TLS."/>
<xsd:enumeration value="The URL needs to begin with either http:// or https://"/>
<xsd:enumeration value="The URL hostname should be a valid hostname or IP address, with an optional port value"/>
<xsd:enumeration value="Cannot add parameters to an IP Phone Service that is an EnterpriseSubscription service. Include all parameters in the Service URL"/>
<xsd:enumeration value="Remote Destination can not be empty."/>
<xsd:enumeration value="Remote Destination must be a phone number or URI."/>
<xsd:enumeration value="Cannot use a Blocked type list for fkCallerFilterList_Allowed"/>
<xsd:enumeration value="Cannot use an Allowed type list for fkCallerFilterList_Blocked"/>
<xsd:enumeration value="Check the type of device specified in fkDevice_DualMode. Remote Destionations other than Dual Mode must use fkDevice_RemoteDestinationTemplate."/>
<xsd:enumeration value="The specified Remote Destination already exists."/>
<xsd:enumeration value="CallerFilterList must belong to same EndUser as the Remote Destination."/>
<xsd:enumeration value="A Dual Mode remote destination already exists for this device."/>
<xsd:enumeration value="Remote Destination must reference a Remote Destionation Profile or Dual Mode device."/>
<xsd:enumeration value="Remote Destination cannot be added because there is no associated EndUser for this dual-mode phone, Remote Destination Profile or MobileSmartClient."/>
<xsd:enumeration value="Remote Destination cannot be added because the associated EndUser does not have Mobilty Enabled."/>
<xsd:enumeration value="Remote Destination cannot be added because the Remote Destination Limit set by Administrator for this EndUser account has already been reached."/>
share/AXLSoap.xsd view on Meta::CPAN
<xsd:enumeration value="Off"/>
<xsd:enumeration value="On"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="XZzuserInfo">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="None"/>
<xsd:enumeration value="Phone"/>
<xsd:enumeration value="IP"/>
</xsd:restriction>
</xsd:simpleType>
<!-- AxlMessage.xsd -->
<!-- These types are not used by anything, so they are commented out
<xsd:element name="axl" type="axlapi:Envelope">
<xsd:annotation>
<xsd:documentation>The abstract AXL envelope.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="Envelope" abstract="true" block="restriction">
<xsd:annotation>
<xsd:documentation>Abstract</xsd:documentation>
</xsd:annotation>
<xsd:all>
<xsd:element name="asynchronous" type="xsd:boolean" minOccurs="0">
<xsd:annotation>
<xsd:documentation>If defined, the client wishes the response returned asynchrously.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="asynchResponsePort" type="xsd:nonNegativeInteger" minOccurs="0">
<xsd:annotation>
<xsd:documentation>If defined and asynchronous is true, then return the response to this port (otherwise, use the system default).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="securityInfo" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Carries the security information of the envelope.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="userid" type="xsd:string"/>
<xsd:element name="password" type="xsd:string"/>
<xsd:element name="publicKey" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:all>
<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
</xsd:complexType>
<xsd:complexType name="Response" abstract="false">
<xsd:complexContent>
<xsd:extension base="axlapi:Envelope">
<xsd:choice>
<xsd:element name="response" type="axlapi:APIResponse">
<xsd:annotation>
<xsd:documentation>Completely abstracted, specific response payloads must be defined.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="error" type="axlapi:Error"/>
</xsd:choice>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="Request" abstract="false">
<xsd:complexContent>
<xsd:extension base="axlapi:Envelope">
<xsd:all>
<xsd:element name="request" type="axlapi:APIRequest">
<xsd:annotation>
<xsd:documentation>Completely abstracted, the request payload must be defined.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:all>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
-->
<xsd:complexType name="APIRequest" abstract="true">
<xsd:annotation>
<xsd:documentation>All requests must extend abstractRequest.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
</xsd:complexType>
<xsd:complexType name="APIResponse" abstract="true">
<xsd:annotation>
<xsd:documentation>All responses must extend abstractResponse.</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="sequence" type="xsd:unsignedLong" use="optional"/>
</xsd:complexType>
<xsd:complexType name="Error">
<xsd:sequence>
<xsd:element name="code" type="xsd:long">
<xsd:annotation>
<xsd:documentation>The error code.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="message" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Optional text message sent with error code.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="request" type="xsd:string" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Optional reference to original request.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="url" type="xsd:anyURI" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Optional URL to link for more information.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- axlsoap.xsd -->
<xsd:complexType name="AddCommonPhoneConfigReq">
<xsd:annotation>
<xsd:documentation>Adds a new Common Phone Profile to the database.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="axlapi:APIRequest">
<xsd:sequence>
<xsd:element name="newCommonPhoneConfig" type="axlapi:XCommonPhoneConfig" nillable="false"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="addCommonPhoneConfig" type="axlapi:AddCommonPhoneConfigReq"/>
<xsd:element name="addCommonPhoneConfigResponse" type="axlapi:StandardResponse"/>
<xsd:complexType name="CommonPhoneConfigReq">
<xsd:complexContent>
<xsd:extension base="axlapi:APIRequest">
<xsd:sequence>
<xsd:choice>
<xsd:element name="name" type="axlapi:String100"/>
<xsd:element name="uuid" type="axlapi:XUUID"/>
</xsd:choice>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="getCommonPhoneConfig" type="axlapi:CommonPhoneConfigReq"/>
<xsd:complexType name="GetCommonPhoneConfigRes">
<xsd:annotation>
<xsd:documentation>Contains the Common Phone Profile that was specified by the request.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="axlapi:APIResponse">
<xsd:sequence>
<xsd:element name="return">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="CommonPhoneConfig" type="axlapi:XCommonPhoneConfig"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
share/AXLSoap.xsd view on Meta::CPAN
<xsd:sequence>
<xsd:choice>
<xsd:element name="uuid" type="axlapi:XUUID">
<xsd:annotation>
<xsd:documentation>The pkid of the service parameter in the ProcessConfig table.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:sequence>
<xsd:element name="name" type="axlapi:String50">
<xsd:annotation>
<xsd:documentation>Name of the service parameter. Not nullable.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:choice>
<xsd:annotation>
<xsd:documentation>The process Node that this the service parameter belongs to. Not nullable.</xsd:documentation>
</xsd:annotation>
<xsd:element name="processNodeId" type="axlapi:XUUID"/>
<xsd:element name="processNodeName" type="axlapi:String50"/>
</xsd:choice>
<xsd:element name="service" type="xsd:string"><!--This field is of the type axl:XService in AXLEnums.xsd-->
<xsd:annotation>
<xsd:documentation>The service that this service parameter belongs to.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:choice>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="getServiceParameter" type="axlapi:GetServiceParameterReq"/>
<xsd:complexType name="GetServiceParameterRes">
<xsd:annotation>
<xsd:documentation>Contains the service parameter specified by the request.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="axlapi:APIResponse">
<xsd:sequence>
<xsd:element name="return">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="serviceParameter" type="axlapi:XProcessConfig"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="getServiceParameterResponse" type="axlapi:GetServiceParameterRes"/>
<xsd:complexType name="UpdateServiceParameterReq">
<xsd:annotation>
<xsd:documentation>Modifies an existing service parameter's value.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="axlapi:GetServiceParameterReq">
<xsd:sequence>
<xsd:element name="newValue" type="axlapi:String1024" nillable="true">
<xsd:annotation>
<xsd:documentation>The new value of the service parameter. Nullable in some cases. Must be a valid value for this service parameter's data type or an error will be returned.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="updateServiceParameter" type="axlapi:UpdateServiceParameterReq"/>
<xsd:element name="updateServiceParameterResponse" type="axlapi:StandardResponse">
<xsd:annotation>
<xsd:documentation>Would return either the GUID of the object that was altered, or return true if the operation was successful. Whichever is possible for this request.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="AddLocationReq" abstract="false" final="#all">
<xsd:annotation>
<xsd:documentation>Adds a new Location to the database.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="axlapi:APIRequest">
<xsd:sequence>
<xsd:element name="location" type="axlapi:XLocation" nillable="false"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="addLocation" type="axlapi:AddLocationReq"/>
<xsd:element name="addLocationResponse" type="axlapi:StandardResponse"/>
<xsd:complexType name="UpdateLocationReq" abstract="false" final="#all">
<xsd:annotation>
<xsd:documentation>Update an existing Location in the database.</xsd:documentation>
</xsd:annotation>
<xsd:complexContent>
<xsd:extension base="axlapi:NameAndGUIDRequest">
<xsd:sequence>
<xsd:element name="newName" type="axlapi:String50" nillable="false" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Not nullable.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="kbits" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Not nullable.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="videoKbits" type="xsd:nonNegativeInteger" nillable="false" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Not nullable.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="relatedLocations" minOccurs="0">
<xsd:complexType>
<xsd:sequence minOccurs="0">
<xsd:element name="relatedLocation" type="axlapi:XLocationRelationship" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="updateLocation" type="axlapi:UpdateLocationReq"/>
share/AXLSoap.xsd view on Meta::CPAN
<xsd:sequence>
<xsd:element name="member" type="axlapi:XMediaResourceGroupMember" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="updateMediaResourceGroup" type="axlapi:UpdateMediaResourceGroupReq"/>
<xsd:element name="updateMediaResourceGroupResponse" type="axlapi:StandardResponse"/>
<xsd:complexType name="AddUserGroupReq">
<xsd:complexContent>
<xsd:extension base="axlapi:APIRequest">
<xsd:sequence>
<xsd:element name="userGroup" type="axlapi:XUserGroup"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="addUserGroup" type="axlapi:AddUserGroupReq"/>
<xsd:element name="addUserGroupResponse" type="axlapi:StandardResponse"/>
<xsd:element name="getUserGroup" type="axlapi:NameAndGUIDRequest"/>
<xsd:complexType name="GetUserGroupRes">
<xsd:complexContent>
<xsd:extension base="axlapi:APIResponse">
<xsd:sequence>
<xsd:element name="return">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="userGroup" type="axlapi:XUserGroup"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="getUserGroupResponse" type="axlapi:GetUserGroupRes"/>
<xsd:element name="removeUserGroup" type="axlapi:NameAndGUIDRequest"/>
<xsd:element name="removeUserGroupResponse" type="axlapi:StandardResponse"/>
<xsd:complexType name="UpdateUserGroupReq">
<xsd:complexContent>
<xsd:extension base="axlapi:NameAndGUIDRequest">
<xsd:sequence>
<xsd:element name="newName" type="axlapi:String128" nillable="false" minOccurs="0"/>
<xsd:choice minOccurs="0">
<xsd:element name="members" nillable="true" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The new members of this User Group. If this element is null, then all members are removed from this user group. Note: If the "members" element is present, then all existing members are removed and replaced with the "member"...
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:sequence minOccurs="0">
<xsd:element name="addMembers" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Add new members to the User Group. It doesn't delete old members. Note: If the member is already added to the User Group an error will be thrown.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="removeMembers" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Remove members from the UserGroup. Note: Only members already associated with this User Group can be deleted.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="member" type="axlapi:XUserGroupMember" nillable="false" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:choice>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="updateUserGroup" type="axlapi:UpdateUserGroupReq"/>
<xsd:element name="updateUserGroupResponse" type="axlapi:StandardResponse"/>
<xsd:element name="listLocationByName" type="axlapi:ListBySearchString"/>
<xsd:complexType name="ListLocationRes">
<xsd:complexContent>
<xsd:extension base="axlapi:APIResponse">
<xsd:sequence>
<xsd:element name="return">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="location" type="axlapi:XLocation" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:element name="listLocationByNameResponse" type="axlapi:ListLocationRes"/>
<xsd:element name="listAARGroupByName" type="axlapi:ListBySearchString">
<xsd:annotation>
<xsd:documentation>List all AAR Groups that match the specified name pattern.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="ListAARGroupRes">
<xsd:complexContent>
<xsd:extension base="axlapi:APIResponse">
<xsd:sequence>
<xsd:element name="return">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="aarGroup" type="axlapi:XAARNeighborhood" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:extension>
( run in 0.559 second using v1.01-cache-2.11-cpan-c966e8aa7e8 )