Documentation
¶
Index ¶
- Constants
- Variables
- func CreateHttpRequest[T ResourceReader](client *Client, req *Request[T]) (*http.Request, error)
- func GetNitroTags[T ResourceReader]() (map[string]Tag, error)
- type Action
- type Client
- type ConnectionSettings
- type Credentials
- type Error
- type Request
- func (r *Request[T]) GetResourceTypeName() string
- func (r *Request[T]) GetUrlPathAndQuery() (string, error)
- func (r *Request[T]) ValidateArguments() error
- func (r *Request[T]) ValidateAttributes() error
- func (r *Request[T]) ValidateData(reader io.Reader) error
- func (r *Request[T]) ValidateFilter() error
- func (r *Request[T]) ValidateResourceType() error
- type ResourceReader
- type ResourceType
- type Response
- type SettingsReader
- type Tag
- type UrlQueryType
Constants ¶
View Source
const ( NSGO_CLIENT_DEFAULT_ACCEPT_HEADER = "application/json" NSGO_CLIENT_DEFAULT_CONTENTTYPE_HEADER = "application/json" )
View Source
const ( NSGO_CONNECTIONSETTINGS_DEFAULT_TIMEOUT = 5 NSGO_CONNECTIONSETTINGS_DEFAULT_USERAGENT = "netscaleradc-nitro-go" )
View Source
const ( NSGO_CLIENT_ERROR_CODE errorCode = 10000000 NSGO_CLIENT_ERROR_MESSAGE string = "Client error" NSGO_CLIENT_CREATE_ERROR_CODE errorCode = 10000001 NSGO_CLIENT_CREATE_ERROR_MESSAGE string = "Error creating client" NSGO_CLIENT_CREATEHTTPREQUEST_ERROR_CODE errorCode = 10000002 NSGO_CLIENT_CREATEHTTPREQUEST_ERROR_MESSAGE string = "Error creating http request" NSGO_CLIENT_EXECUTEREQUEST_ERROR_CODE errorCode = 10000003 NSGO_CLIENT_EXECUTEREQUEST_ERROR_MESSAGE string = "Error executing nitro request" NSGO_CLIENT_LOGIN_ERROR_CODE errorCode = 10000004 NSGO_CLIENT_LOGIN_ERROR_MESSAGE string = "Login error" NSGO_CLIENT_LOGOUT_ERROR_CODE errorCode = 10000005 NSGO_CLIENT_LOGOUT_ERROR_MESSAGE string = "Logout error" NSGO_CLIENT_CONNECTIONSETTINGS_ERROR_CODE errorCode = 10000006 NSGO_CLIENT_CONNECTIONSETTINGS_ERROR_MESSAGE string = "Error in connection settings" NSGO_CLIENT_SAVECONFIG_ERROR_CODE errorCode = 10000007 NSGO_CLIENT_SAVECONFIG_ERROR_MESSAGE string = "Error saving config" NSGO_RESOURCE_ERROR_CODE errorCode = 40000000 NSGO_RESOURCE_ERROR_MESSAGE string = "Resource error" NSGO_RESOURCE_VALIDATION_ERROR_CODE errorCode = 20000001 NSGO_RESOURCE_VALIDATION_ERROR_MESSAGE string = "Validation error" NSGO_RESOURCE_INVALIDTYPE_ERROR_CODE errorCode = 20000002 NSGO_RESOURCE_INVALIDTYPE_ERROR_MESSAGE string = "Invalid Resource Type" NSGO_RESOURCE_INVALIDFIELD_ERROR_CODE errorCode = 20000003 NSGO_RESOURCE_INVALIDFIELD_ERROR_MESSAGE string = "Invalid field" NSGO_RESOURCE_SERIALIZATION_ERROR_CODE errorCode = 20000004 NSGO_RESOURCE_SERIALIZATION_ERROR_MESSAGE string = "Serialization error" NSGO_RESOURCE_DESERIALIZATION_ERROR_CODE errorCode = 20000005 NSGO_RESOURCE_DESERIALIZATION_ERROR_MESSAGE string = "Deserialization error" NSGO_RESOURCE_EXTRACTION_ERROR_CODE errorCode = 20000006 NSGO_RESOURCE_EXTRACTION_ERROR_MESSAGE string = "Data extraction error" NSGO_RESOURCE_TAG_ERROR_CODE errorCode = 20000007 NSGO_RESOURCE_TAG_ERROR_MESSAGE string = "Tag error" NSGO_CONTROLLER_ERROR_CODE errorCode = 30000000 NSGO_CONTROLLER_ERROR_MESSAGE string = "Controller Error" NSGO_CONTROLLER_OPERATION_NOTIMPLEMENTED_ERROR_CODE errorCode = 30000001 NSGO_CONTROLLER_OPERATION_NOTIMPLEMENTED_ERROR_MESSAGE string = "Operation not implemented" NSGO_API_ERROR_CODE errorCode = 40000000 NSGO_API_ERROR_MESSAGE string = "Nitro API specific error" )
View Source
const ( // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#0x300-errors NSERR_RNAT_INV_ERROR_CODE errorCode = 769 NSERR_RNAT_INV_ERROR_MESSAGE string = "Reverse NAT not applicable for default route." NSERR_INVALID_IF_ERROR_CODE errorCode = 770 NSERR_INVALID_IF_ERROR_MESSAGE string = "Invalid interface name/number." NSERR_MGRLIMIT_REACHED_ERROR_CODE errorCode = 771 NSERR_MGRLIMIT_REACHED_ERROR_MESSAGE string = "Maximum manager limit reached." NSERR_SP_INVALD_TABLE_ERROR_CODE errorCode = 772 NSERR_SP_INVALD_TABLE_ERROR_MESSAGE string = "SP table entries should be in increasing order." NSERR_RNAT_NATIP_EXISTS_ERROR_CODE errorCode = 773 NSERR_RNAT_NATIP_EXISTS_ERROR_MESSAGE string = "RNAT to the target network with specified NAT IP already exists." NSERR_RNAT_EXISTS_ERROR_CODE errorCode = 774 NSERR_RNAT_EXISTS_ERROR_MESSAGE string = "ACL or NETWORK based RNAT rule already exists." NSERR_RNAT_NOT_EXISTS_ERROR_CODE errorCode = 775 NSERR_RNAT_NOT_EXISTS_ERROR_MESSAGE string = "ACL or NETWORK based RNAT rule does not exist." NSERR_RNAT_NATIP_NOT_EXISTS_ERROR_CODE errorCode = 776 NSERR_RNAT_NATIP_NOT_EXISTS_ERROR_MESSAGE string = "RNAT to the target network with specified NAT IP doesn't exist." NSERR_RNAT_INVALID_NATIP_ERROR_CODE errorCode = 777 NSERR_RNAT_INVALID_NATIP_ERROR_MESSAGE string = "NAT IP is not valid." NSERR_RNAT_XACLWITHTTL_ERROR_CODE errorCode = 778 NSERR_RNAT_XACLWITHTTL_ERROR_MESSAGE string = "Acl with ttl can not be used in NAT64/RNAT/RNAT6/ForwardingSession/LSN rule." NSERR_ARP_DISABLED_ERROR_CODE errorCode = 784 NSERR_ARP_DISABLED_ERROR_MESSAGE string = "IP has arp disabled." NSERR_ARP_SEC_NOT_OWNEDIP_ERROR_CODE errorCode = 785 NSERR_ARP_SEC_NOT_OWNEDIP_ERROR_MESSAGE string = "Secondary can not arp for this IP." NSERR_CPE_RULE_INVAL_ERROR_CODE errorCode = 786 NSERR_CPE_RULE_INVAL_ERROR_MESSAGE string = "Invalid rule." NSERR_INVAL_FLOWTYPE_ERROR_CODE errorCode = 787 NSERR_INVAL_FLOWTYPE_ERROR_MESSAGE string = "Only authorization, audit, VPN session and traffic policies can be bound to aaa user or group." NSERR_INVAL_POLICY_TYPE_ERROR_CODE errorCode = 788 NSERR_INVAL_POLICY_TYPE_ERROR_MESSAGE string = "Response rule is invalid in an authorization policy." NSERR_CPE_RULE_ACTION_INVAL_ERROR_CODE errorCode = 789 NSERR_CPE_RULE_ACTION_INVAL_ERROR_MESSAGE string = "Request action is valid only for request rule." NSERR_CPE_DEF_SET_INVAL_ERROR_CODE errorCode = 790 NSERR_CPE_DEF_SET_INVAL_ERROR_MESSAGE string = "Default policy cannot be set." NSERR_INVAL_FORCECLEANUP_ERROR_CODE errorCode = 791 NSERR_INVAL_FORCECLEANUP_ERROR_MESSAGE string = "Invalid forcecleanup value." NSERR_INVAL_AAA_GROUP_ERROR_CODE errorCode = 792 NSERR_INVAL_AAA_GROUP_ERROR_MESSAGE string = "Invalid authorizationgroup value." NSERR_INVAL_PROXY_ERROR_CODE errorCode = 793 NSERR_INVAL_PROXY_ERROR_MESSAGE string = "Invalid allprotocolproxy value." NSERR_INVAL_HTTTPPROXY_ERROR_CODE errorCode = 800 NSERR_INVAL_HTTTPPROXY_ERROR_MESSAGE string = "Invalid HTTP proxy value." NSERR_INVAL_FTPPROXY_ERROR_CODE errorCode = 801 NSERR_INVAL_FTPPROXY_ERROR_MESSAGE string = "Invalid FTP proxy value." NSERR_INVAL_SOCKPROXY_ERROR_CODE errorCode = 802 NSERR_INVAL_SOCKPROXY_ERROR_MESSAGE string = "Invalid SOCKS proxy value." NSERR_INVAL_GOPHERPROXY_ERROR_CODE errorCode = 803 NSERR_INVAL_GOPHERPROXY_ERROR_MESSAGE string = "Invalid GOPHER proxy value." NSERR_INVAL_SSLPROXY_ERROR_CODE errorCode = 804 NSERR_INVAL_SSLPROXY_ERROR_MESSAGE string = "Invalid SSL proxy value." NSERR_INVAL_AAAGRP_MAX_ERROR_CODE errorCode = 805 NSERR_INVAL_AAAGRP_MAX_ERROR_MESSAGE string = "Max 5 groups can be specified in authorizationgroup." NSERR_INVAL_MAX_PORT_NUM_ERROR_CODE errorCode = 806 NSERR_INVAL_MAX_PORT_NUM_ERROR_MESSAGE string = "Maximum 16 ports can be specified in httpport." NSERR_INVAL_HTTPPORT_ERROR_CODE errorCode = 807 NSERR_INVAL_HTTPPORT_ERROR_MESSAGE string = "Invalid port." NSERR_INVAL_VPNVSERER_POLTYPE_ERROR_CODE errorCode = 808 NSERR_INVAL_VPNVSERER_POLTYPE_ERROR_MESSAGE string = "This type of policy cannot be bound to VPN Vserver." NSERR_INVAL_VPNGLOBAL_POLTYPE_ERROR_CODE errorCode = 809 NSERR_INVAL_VPNGLOBAL_POLTYPE_ERROR_MESSAGE string = "This type of policy cannot be bound to VPN Global." NSERR_CPE_REM_INUSE_ERROR_CODE errorCode = 810 NSERR_CPE_REM_INUSE_ERROR_MESSAGE string = "Bound policy cannot be removed." NSERR_PROXY_CONFLICT_ERROR_CODE errorCode = 811 NSERR_PROXY_CONFLICT_ERROR_MESSAGE string = "Proxy server for all protocols already configured." NSERR_PROXY_INVAL_ERROR_CODE errorCode = 812 NSERR_PROXY_INVAL_ERROR_MESSAGE string = "Domain names allowed only if proxy type is browser" NSERR_PXYEXCPT_INVAL_ERROR_CODE errorCode = 813 NSERR_PXYEXCPT_INVAL_ERROR_MESSAGE string = "Proxy exception allowed only if proxy type is browser" NSERR_CPE_POLTYPE_NO_CSE_ERROR_CODE errorCode = 814 NSERR_CPE_POLTYPE_NO_CSE_ERROR_MESSAGE string = "Policy type does not support client security expressions in rule" NSERR_SESSACT_CSE_INCOMPATIBLE_ERROR_CODE errorCode = 815 NSERR_SESSACT_CSE_INCOMPATIBLE_ERROR_MESSAGE string = "Session action and rule are incompatible" NSERR_NOMEM_CSE_ERROR_CODE errorCode = 816 NSERR_NOMEM_CSE_ERROR_MESSAGE string = "Not enough memory while adding client security expressions" NSERR_INCOMPAT_FS_RULE_ERROR_CODE errorCode = 817 NSERR_INCOMPAT_FS_RULE_ERROR_MESSAGE string = "File system expressions supported in authorization policy only" NSERR_INCOMPAT_FS_MIX_ERROR_CODE errorCode = 818 NSERR_INCOMPAT_FS_MIX_ERROR_MESSAGE string = "Incompatible expressions mixed with file system expressions in rule" NSERR_DR_ENABLE_ERROR_CODE errorCode = 819 NSERR_DR_ENABLE_ERROR_MESSAGE string = "Dynamic routing can be enabled on only one IP per subnet" NSERR_MAX_DISTANCE_ERROR_CODE errorCode = 820 NSERR_MAX_DISTANCE_ERROR_MESSAGE string = "Only null interface routes can have distance equal to 255" NSERR_NULL_ROUTE_DISTANCE_ERROR_CODE errorCode = 821 NSERR_NULL_ROUTE_DISTANCE_ERROR_MESSAGE string = "It is not possible to set the administrative distance/cost metric for a null interface route" NSERR_BAD_ACTION_TCP_PROFILE_TYPE_ERROR_CODE errorCode = 822 NSERR_BAD_ACTION_TCP_PROFILE_TYPE_ERROR_MESSAGE string = "TCP profile cannot be set to this service type" NSERR_BAD_ACTION_HTTP_PROFILE_TYPE_ERROR_CODE errorCode = 823 NSERR_BAD_ACTION_HTTP_PROFILE_TYPE_ERROR_MESSAGE string = "HTTP profile cannot be set to this service type" NSERR_SP_INVALID_THRESHOLD_ERROR_CODE errorCode = 824 NSERR_SP_INVALID_THRESHOLD_ERROR_MESSAGE string = "Invalid base threshold value" NSERR_VIP_ROUTE_EXISTS_ERROR_CODE errorCode = 825 NSERR_VIP_ROUTE_EXISTS_ERROR_MESSAGE string = "VIP exists for this host route" NSERR_ACTION_BOUND_ERROR_CODE errorCode = 832 NSERR_ACTION_BOUND_ERROR_MESSAGE string = "Action bound to policy can not be deleted." NSERR_MAX_IPLIMIT_ERROR_CODE errorCode = 833 NSERR_MAX_IPLIMIT_ERROR_MESSAGE string = "" /* 127-byte string literal not displayed */ NSERR_BAD_PREFIX_LEN_ERROR_CODE errorCode = 826 NSERR_BAD_PREFIX_LEN_ERROR_MESSAGE string = "Invalid rnat/lsn network prefix len it must be 0-128" NSERR_INV_NETADDR_ERROR_CODE errorCode = 827 NSERR_INV_NETADDR_ERROR_MESSAGE string = "Invalid IPv6 network address" NSERR_MIN_DISTANCE_ERROR_CODE errorCode = 828 NSERR_MIN_DISTANCE_ERROR_MESSAGE string = "Static route cannot have distance less than 1" NSERR_IPSEC_PROFILE_INUSE_ERROR_CODE errorCode = 829 NSERR_IPSEC_PROFILE_INUSE_ERROR_MESSAGE string = "Profile is in use by an ip tunnel." NSERR_IPSEC_INVALID_PROFILE_NAME_ERROR_CODE errorCode = 830 NSERR_IPSEC_INVALID_PROFILE_NAME_ERROR_MESSAGE string = "Invalid profile name." NSERR_SPOTTED_ERROR_CODE errorCode = 831 NSERR_SPOTTED_ERROR_MESSAGE string = "Spotted IP cannot be used here" NSERR_IPSEC_PBR_ONLY_IP_SUPPORTED_ERROR_CODE errorCode = 834 NSERR_IPSEC_PBR_ONLY_IP_SUPPORTED_ERROR_MESSAGE string = "Only IP range is supported" NSERR_IPSEC_IP_NOT_CONTIGUOUS_ERROR_CODE errorCode = 835 NSERR_IPSEC_IP_NOT_CONTIGUOUS_ERROR_MESSAGE string = "Invalid IP range. The IP range does not cover all the IP's for a given subnet mask" NSERR_INVAL_USER_ACCOUNTING_ERROR_CODE errorCode = 836 NSERR_INVAL_USER_ACCOUNTING_ERROR_MESSAGE string = "Invalid userAccounting value. userAccounting value must be a radiusPolicy." NSERR_RDP_PROFILE_INUSE_ERROR_CODE errorCode = 837 NSERR_RDP_PROFILE_INUSE_ERROR_MESSAGE string = "Profile is in use." NSERR_RDP_INVALID_PROFILE_NAME_ERROR_CODE errorCode = 838 NSERR_RDP_INVALID_PROFILE_NAME_ERROR_MESSAGE string = "Invalid profile name." NSERR_RDP_INVALID_RDP_FILE_NAME_ERROR_CODE errorCode = 839 NSERR_RDP_INVALID_RDP_FILE_NAME_ERROR_MESSAGE string = "RDP file name should have .rdp extension and some special characters for RDP file name are not supported." NSERR_RDP_INVALID_SERVERPROFILE_NAME_ERROR_CODE errorCode = 840 NSERR_RDP_INVALID_SERVERPROFILE_NAME_ERROR_MESSAGE string = "Invalid server profile name." NSERR_RDP_SERVERPROFILE_ALREADY_IN_USE_ERROR_CODE errorCode = 841 NSERR_RDP_SERVERPROFILE_ALREADY_IN_USE_ERROR_MESSAGE string = "Server profile is already in use." NSERR_AUTO_PROXY_URL_INVALID_ERROR_CODE errorCode = 842 NSERR_AUTO_PROXY_URL_INVALID_ERROR_MESSAGE string = "Invalid Autoproxy URL" NSERR_AUTO_PROXY_NO_BROWSER_ERROR_CODE errorCode = 843 NSERR_AUTO_PROXY_NO_BROWSER_ERROR_MESSAGE string = "Autoproxy URL is allowed only if proxy type is Browser." NSERR_AUTO_PROXY_CONFLICT_ERROR_CODE errorCode = 844 NSERR_AUTO_PROXY_CONFLICT_ERROR_MESSAGE string = "" /* 150-byte string literal not displayed */ NSERR_RDP_INVALID_HOST_LEN_ERROR_CODE errorCode = 848 NSERR_RDP_INVALID_HOST_LEN_ERROR_MESSAGE string = "Invalid Host length. Atleast 3 characters expected" NSERR_RDP_NEED_IP_ERROR_CODE errorCode = 849 NSERR_RDP_NEED_IP_ERROR_MESSAGE string = "RDP IP is needed" NSERR_IPSEC_INV_PROF_ERROR_CODE errorCode = 850 NSERR_IPSEC_INV_PROF_ERROR_MESSAGE string = "For IPSEC tunnels, profile name cannot be 'none'" NSERR_RDP_NEED_PSK_ERROR_CODE errorCode = 854 NSERR_RDP_NEED_PSK_ERROR_MESSAGE string = "PSK is needed" NSERR_IPSEC_ONLY_V1_ERROR_CODE errorCode = 858 NSERR_IPSEC_ONLY_V1_ERROR_MESSAGE string = "Responder Only config is supported with IKEv1" NSERR_RDP_LISTENER_SPECIFY_PORT_ERROR_CODE errorCode = 859 NSERR_RDP_LISTENER_SPECIFY_PORT_ERROR_MESSAGE string = "Invalid Listener. Specify Port" NSERR_RDP_INVALID_LISTENER_HOST_ERROR_CODE errorCode = 860 NSERR_RDP_INVALID_LISTENER_HOST_ERROR_MESSAGE string = "Invalid Listener. Specify valid host, atleast 3 characters expected" NSERR_RDP_LISTENER_INVALID_PORT_ERROR_CODE errorCode = 861 NSERR_RDP_LISTENER_INVALID_PORT_ERROR_MESSAGE string = "Invalid Listener. Specify valid Port" NSERR_PROXY_NOT_ALLOWED_ERROR_CODE errorCode = 862 NSERR_PROXY_NOT_ALLOWED_ERROR_MESSAGE string = "Proxy feature not licensed" NSERR_HOST_RT_GW_NOT_SET_ERROR_CODE errorCode = 3806 NSERR_HOST_RT_GW_NOT_SET_ERROR_MESSAGE string = "Host Route Gateway not set" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#0x850-errors NSERR_MONITOR_INTERVAL_ERROR_CODE errorCode = 2128 NSERR_MONITOR_INTERVAL_ERROR_MESSAGE string = "Monitor interval must be greater than response timeout" NSERR_MONITOR_DESTIP_ERROR_CODE errorCode = 2129 NSERR_MONITOR_DESTIP_ERROR_MESSAGE string = "Destination IP must be specified for transparent, tunneled or tos monitors" NSERR_MONITOR_CODES_ERROR_CODE errorCode = 2130 NSERR_MONITOR_CODES_ERROR_MESSAGE string = "Too many response codes, only 16 allowed" NSERR_MONITOR_REF_ERROR_CODE errorCode = 2131 NSERR_MONITOR_REF_ERROR_MESSAGE string = "Monitor must be unbound before it can be deleted" NSERR_MONITOR_BUILTIN_ERROR_CODE errorCode = 2132 NSERR_MONITOR_BUILTIN_ERROR_MESSAGE string = "Built-in monitors cannot be deleted" NSERR_MONITOR_BOUND_ERROR_CODE errorCode = 2133 NSERR_MONITOR_BOUND_ERROR_MESSAGE string = "The monitor is already bound to the service" NSERR_MONITOR_TYPE_ERROR_CODE errorCode = 2134 NSERR_MONITOR_TYPE_ERROR_MESSAGE string = "Invalid monitor type" NSERR_MONITOR_LOCAL_ERROR_CODE errorCode = 2135 NSERR_MONITOR_LOCAL_ERROR_MESSAGE string = "Monitor object cannot be bound to local service" NSERR_TIMEOUT_RANGE_ERROR_CODE errorCode = 2136 NSERR_TIMEOUT_RANGE_ERROR_MESSAGE string = "Timeout value out of range; enter a value between 2 minutes and 1440 minutes" NSERR_INVALIDHASHLEN_ERROR_CODE errorCode = 2137 NSERR_INVALIDHASHLEN_ERROR_MESSAGE string = "Hashlength should be between 1 and 4096 (inclusive)" NSERR_NOTAUTHORIZED_ERROR_CODE errorCode = 2138 NSERR_NOTAUTHORIZED_ERROR_MESSAGE string = "Not authorized to execute this command" NSERR_MONITOR_DEFAULT_ERROR_CODE errorCode = 2139 NSERR_MONITOR_DEFAULT_ERROR_MESSAGE string = "No operations allowed with the default monitor" NSERR_MONITOR_LDNS_ADD_PERM_ERROR_CODE errorCode = 2140 NSERR_MONITOR_LDNS_ADD_PERM_ERROR_MESSAGE string = "Cannot add monitor of ldns type" NSERR_MONITOR_LDNS_BIND_PERM_ERROR_CODE errorCode = 2141 NSERR_MONITOR_LDNS_BIND_PERM_ERROR_MESSAGE string = "Cannot bind ldns monitor" NSERR_BACKUP_LOOP_ERROR_CODE errorCode = 2144 NSERR_BACKUP_LOOP_ERROR_MESSAGE string = "The VIP is already a backup in the chain" NSERR_SECURE_UDP_ERROR_CODE errorCode = 2154 NSERR_SECURE_UDP_ERROR_MESSAGE string = "Secure mode not supported for this protocol" NSERR_MONITOR_WRONG_TYPE_ERROR_CODE errorCode = 2155 NSERR_MONITOR_WRONG_TYPE_ERROR_MESSAGE string = "Existing monitor is of different type than given" NSERR_LRTM_PERM_ERROR_CODE errorCode = 2156 NSERR_LRTM_PERM_ERROR_MESSAGE string = "Enabling LRTM on this monitor type is not permitted" NSERR_MONITOR_SCRIPTNAME_ERROR_CODE errorCode = 2157 NSERR_MONITOR_SCRIPTNAME_ERROR_MESSAGE string = "Invalid script name for user monitor" NSERR_MONITOR_DISPATCHERIP_ERROR_CODE errorCode = 2159 NSERR_MONITOR_DISPATCHERIP_ERROR_MESSAGE string = "Invalid dispatcher IP for user monitor" NSERR_MONITOR_USERPERM_ERROR_CODE errorCode = 2160 NSERR_MONITOR_USERPERM_ERROR_MESSAGE string = "Operation not permitted for a user monitor" NSERR_MONITOR_NOCODES_ERROR_CODE errorCode = 2161 NSERR_MONITOR_NOCODES_ERROR_MESSAGE string = "A response code is required for this monitor type" NSERR_INVAL_MON_ERROR_CODE errorCode = 2162 NSERR_INVAL_MON_ERROR_MESSAGE string = "Attempt to bind invalid monitor type" NSERR_TYPE_EXISTS_ERROR_CODE errorCode = 2163 NSERR_TYPE_EXISTS_ERROR_MESSAGE string = "Only one monitor of this type can be bound to a service" NSERR_MONITOR_UNBIND_DEFAULT_ERROR_CODE errorCode = 2164 NSERR_MONITOR_UNBIND_DEFAULT_ERROR_MESSAGE string = "Default monitor cannot be unbound from a service" NSERR_MONITOR_BIND_DEFAULT_ERROR_CODE errorCode = 2165 NSERR_MONITOR_BIND_DEFAULT_ERROR_MESSAGE string = "Default monitor cannot be bound explicitly to a service" NSERR_MONITOR_DISABLE_DEFAULT_ERROR_CODE errorCode = 2166 NSERR_MONITOR_DISABLE_DEFAULT_ERROR_MESSAGE string = "Default monitor cannot be disabled or enabled" NSERR_DRTM_PERM_ERROR_CODE errorCode = 2167 NSERR_DRTM_PERM_ERROR_MESSAGE string = "Dynamic response timeout is not permitted on this monitor type" NSERR_MON_DTRM_DEVIATION_ERROR_CODE errorCode = 2168 NSERR_MON_DTRM_DEVIATION_ERROR_MESSAGE string = "Response timeout of the monitor has been changed to interval - 1" NSERR_MONITOR_INVALID_VALUE_ERROR_CODE errorCode = 2169 NSERR_MONITOR_INVALID_VALUE_ERROR_MESSAGE string = "Time parameter must be a multiple of 10" NSERR_MONITOR_NOT_BOUND_ERROR_CODE errorCode = 2170 NSERR_MONITOR_NOT_BOUND_ERROR_MESSAGE string = "Monitor not bound to service" NSERR_INVALID_MONITOR_ERROR_CODE errorCode = 2171 NSERR_INVALID_MONITOR_ERROR_MESSAGE string = "Monitor does not exist" NSERR_MONITOR_NO_SUCHIPADDR_ERROR_CODE errorCode = 2172 NSERR_MONITOR_NO_SUCHIPADDR_ERROR_MESSAGE string = "Some IP addresses were not present" NSERR_MONITOR_SCRIPT_ARG_SIZE_ERROR_CODE errorCode = 2173 NSERR_MONITOR_SCRIPT_ARG_SIZE_ERROR_MESSAGE string = "Combined argument size too long" NSERR_METRICTABLE_NOENT_ERROR_CODE errorCode = 2174 NSERR_METRICTABLE_NOENT_ERROR_MESSAGE string = "Metric table does not exist" NSERR_METRICTABLE_EXIST_ERROR_CODE errorCode = 2175 NSERR_METRICTABLE_EXIST_ERROR_MESSAGE string = "Metric table exists" NSERR_DEL_METRICTABLE_PERMANENT_ERROR_CODE errorCode = 2176 NSERR_DEL_METRICTABLE_PERMANENT_ERROR_MESSAGE string = "Permanent metric table cannot be deleted" NSERR_MAX_METRIC_BINDING_ERROR_CODE errorCode = 2177 NSERR_MAX_METRIC_BINDING_ERROR_MESSAGE string = "Maximum of 10 SNMP type metric can be bound to the monitor" NSERR_METRIC_NOENT_ERROR_CODE errorCode = 2178 NSERR_METRIC_NOENT_ERROR_MESSAGE string = "Metric does not exist" NSERR_METRIC_EXISTS_ERROR_CODE errorCode = 2179 NSERR_METRIC_EXISTS_ERROR_MESSAGE string = "Metric exists" NSERR_OID_EXIST_ERROR_CODE errorCode = 2180 NSERR_OID_EXIST_ERROR_MESSAGE string = "SNMP OID exists" NSERR_SNMP_OID_INVAL_ERROR_CODE errorCode = 2181 NSERR_SNMP_OID_INVAL_ERROR_MESSAGE string = "SNMP OID is invalid" NSERR_METRICTABLE_RDONLY_ERROR_CODE errorCode = 2182 NSERR_METRICTABLE_RDONLY_ERROR_MESSAGE string = "No operations allowed on read only metric table" NSERR_THRESHOLD_ZERO_ERROR_CODE errorCode = 2183 NSERR_THRESHOLD_ZERO_ERROR_MESSAGE string = "This metric will not be used for CUSTOM LB as its threshold value is zero" NSERR_LDAP_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2184 NSERR_LDAP_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "bindDN or baseDN must be specified before LDAP monitor can be used" NSERR_MYSQL_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2185 NSERR_MYSQL_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "userName or database must be specified before MYSQL monitor can be used" NSERR_POP3_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2186 NSERR_POP3_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "userName must be specified before POP3 monitor can be used" NSERR_NNTP_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2187 NSERR_NNTP_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "group must be specified before NNTP monitor can be used" NSERR_FTPEXTENDED_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2188 NSERR_FTPEXTENDED_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "fileName must be specified before FTP-EXTENDED monitor can be used" NSERR_SNMP_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2189 NSERR_SNMP_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "snmpOID or snmpCommunity must be specified before SNMP monitor can be used" NSERR_CITRIX_XML_SERVICE_ERROR_CODE errorCode = 2190 NSERR_CITRIX_XML_SERVICE_ERROR_MESSAGE string = "application must be specified before CITRIX-XML-SERVICE monitor can be used" NSERR_CITRIX_WEB_INTERFACE_ERROR_CODE errorCode = 2191 NSERR_CITRIX_WEB_INTERFACE_ERROR_MESSAGE string = "sitePath must be specified before CITRIX-WEB-INTERFACE monitor can be used" NSERR_LDNS_MON_CANT_DISABLE_ERROR_CODE errorCode = 2192 NSERR_LDNS_MON_CANT_DISABLE_ERROR_MESSAGE string = "Atleast one ldns monitor needs to be enabled" NSERR_RES_RETRY_ON_IP_SVR_ERROR_CODE errorCode = 2193 NSERR_RES_RETRY_ON_IP_SVR_ERROR_MESSAGE string = "Resolve retry can be set only on domain based servers" NSERR_IP_ON_DBS_SVR_ERROR_CODE errorCode = 2194 NSERR_IP_ON_DBS_SVR_ERROR_MESSAGE string = "IP Address cannot be set on a domain based server" NSERR_MONITOR_FAILURERETRIES_ERROR_CODE errorCode = 2196 NSERR_MONITOR_FAILURERETRIES_ERROR_MESSAGE string = "Monitor retries must be greater than monitor failureRetries" NSERR_MONITOR_IP_ERROR_CODE errorCode = 2198 NSERR_MONITOR_IP_ERROR_MESSAGE string = "The server/monitor destination ip address is not appropriate for this monitor" NSERR_MONITOR_SUBNET_ERROR_CODE errorCode = 2199 NSERR_MONITOR_SUBNET_ERROR_MESSAGE string = "The server/monitor destination ip address should be in a directly connected subnet for this monitor" NSERR_MONITOR_STATIC_ERROR_CODE errorCode = 2200 NSERR_MONITOR_STATIC_ERROR_MESSAGE string = "A static/permanent MAC entry is configured for the server/monitor destination ip address" NSERR_TOSID_NOT_SET_ERROR_CODE errorCode = 2201 NSERR_TOSID_NOT_SET_ERROR_MESSAGE string = "Tos id must be specified for tos enabled vserver/monitor" NSERR_FAILURERETRIES_NOT_SUPPORTED_ERROR_CODE errorCode = 2202 NSERR_FAILURERETRIES_NOT_SUPPORTED_ERROR_MESSAGE string = "The failure retries is not supported for this monitor type. Resetting the value of failure retries to 0(Disabled)." NSERR_SUCCESSRETRIES_NOT_SUPPORTED_ERROR_CODE errorCode = 2203 NSERR_SUCCESSRETRIES_NOT_SUPPORTED_ERROR_MESSAGE string = "The success retries is not supported for this monitor type. Resetting the value of success entries to 1(Disabled)." NSERR_SETVS_INVAL_MYSQLPARAMS_ERROR_CODE errorCode = 2204 NSERR_SETVS_INVAL_MYSQLPARAMS_ERROR_MESSAGE string = "This parameter is only applicable to a MYSQL vserver." NSERR_SETVS_INVAL_PROTOCOL_PARAMS_ERROR_CODE errorCode = 2205 NSERR_SETVS_INVAL_PROTOCOL_PARAMS_ERROR_MESSAGE string = "The parameters are only applicable to HTTP or SSL vservers." NSERR_SETVS_INVAL_PROTOCOLS_PARAMS_ERROR_CODE errorCode = 2206 NSERR_SETVS_INVAL_PROTOCOLS_PARAMS_ERROR_MESSAGE string = "The parameters are only applicable to HTTP , SSL or RTSP vservers." NSERR_DDC_VALIDATE_CRED_REQUIRED_ERROR_CODE errorCode = 2207 NSERR_DDC_VALIDATE_CRED_REQUIRED_ERROR_MESSAGE string = "Username, password and ddc domain are required for Xen Desktop monitor\n" NSERR_CITRIX_WI_EXTENDED_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2208 NSERR_CITRIX_WI_EXTENDED_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "userName, password, sitepath and domain must be specified before CITRIX-WI-EXTENDED monitor can be used" NSERR_SETVS_INVAL_MSSQLPARAMS_ERROR_CODE errorCode = 2209 NSERR_SETVS_INVAL_MSSQLPARAMS_ERROR_MESSAGE string = "This parameter is only applicable to a MSSQL vserver." NSERR_DRTM_MON_BOUNDED_SVC_ERROR_CODE errorCode = 2210 NSERR_DRTM_MON_BOUNDED_SVC_ERROR_MESSAGE string = "In a cluster system, deviation can't be set/unset on any already bound monitor." NSERR_MONITOR_RESP_TO_THRESH_ERROR_CODE errorCode = 2211 NSERR_MONITOR_RESP_TO_THRESH_ERROR_MESSAGE string = "Response timeout threshold is rounded off to nearest multiple of 10 less than the given value" NSERR_PASSIVE_ON_LOAD_ONLY_ERROR_CODE errorCode = 2212 NSERR_PASSIVE_ON_LOAD_ONLY_ERROR_MESSAGE string = "PASSIVE option can be set only on LOAD monitors." NSERR_SETVS_INVAL_ORACLEPARAMS_ERROR_CODE errorCode = 2213 NSERR_SETVS_INVAL_ORACLEPARAMS_ERROR_MESSAGE string = "This parameter is only applicable to a ORACLE vserver." NSERR_RADIUS_ACCOUNTING_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 2214 NSERR_RADIUS_ACCOUNTING_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "Secret key must be specified before RADIUS ACCOUNTING monitor can be used" NSERR_MONITOR_SCRIPT_ARG_CNT_ERROR_CODE errorCode = 2215 NSERR_MONITOR_SCRIPT_ARG_CNT_ERROR_MESSAGE string = "Too many script arguments" NSERR_INVALID_DBSLB_BIND_ERROR_CODE errorCode = 2216 NSERR_INVALID_DBSLB_BIND_ERROR_MESSAGE string = "More than one bind not possible on one service for DBSLB" NSERR_USER_NONETPROF_ERROR_CODE errorCode = 2217 NSERR_USER_NONETPROF_ERROR_MESSAGE string = "Netprofile cannot be set on scriptable monitors, so ignoring the configured netprofile for this monitor." NSERR_MONITOR_NO_SSLPROFILE_BOUND_ERROR_CODE errorCode = 2218 NSERR_MONITOR_NO_SSLPROFILE_BOUND_ERROR_MESSAGE string = "No SSL profile is attached to monitor. Attach SSL profile first" NSERR_DIAMETER_MONITOR_INCOMPLETE_ERROR_CODE errorCode = 3550 NSERR_DIAMETER_MONITOR_INCOMPLETE_ERROR_MESSAGE string = "originHost and originRealm configuration is missing" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#0x900-errors NSERR_SVCPORTTYPE_ERROR_CODE errorCode = 2305 NSERR_SVCPORTTYPE_ERROR_MESSAGE string = "Service exists with the same port and service type" NSERR_VIP_IN_GROUP_ERROR_CODE errorCode = 2306 NSERR_VIP_IN_GROUP_ERROR_MESSAGE string = "" /* 165-byte string literal not displayed */ NSERR_UNSUPPORTED_BKP_ERROR_CODE errorCode = 2307 NSERR_UNSUPPORTED_BKP_ERROR_MESSAGE string = "This backup/primary persistence combination is not supported" NSERR_NONHTTPSSL_VIPINGRP_ERROR_CODE errorCode = 2308 NSERR_NONHTTPSSL_VIPINGRP_ERROR_MESSAGE string = "Cookie persistence cannot be applied - group has non HTTP/SSL type of vserver" NSERR_NONHTTP_VIPINGRP_ERROR_CODE errorCode = 2309 NSERR_NONHTTP_VIPINGRP_ERROR_MESSAGE string = "Cookie persistence cannot be applied - group has non-HTTP type of vserver" NSERR_USE_PROPER_RM_CMD_ERROR_CODE errorCode = 2310 NSERR_USE_PROPER_RM_CMD_ERROR_MESSAGE string = "Use remove IP option instead" NSERR_LBMETHOD_NOT_SUPPORTED_ERROR_CODE errorCode = 2321 NSERR_LBMETHOD_NOT_SUPPORTED_ERROR_MESSAGE string = "LB method not supported for LLB/PBR" NSERR_PERSISTENCE_NOT_SUPPORTED_ERROR_CODE errorCode = 2322 NSERR_PERSISTENCE_NOT_SUPPORTED_ERROR_MESSAGE string = "Persistence not supported for LLB/PBR" NSERR_VSERVER_PARAMETERS_ERROR_CODE errorCode = 2323 NSERR_VSERVER_PARAMETERS_ERROR_MESSAGE string = "Vserver arguments not valid for LLB/PBR VIP" NSERR_SERVICE_PARAMETERS_ERROR_CODE errorCode = 2324 NSERR_SERVICE_PARAMETERS_ERROR_MESSAGE string = "Service parameters are invalid for LLB/PBR VIP" NSERR_LBVIP_DELETE_ERROR_CODE errorCode = 2325 NSERR_LBVIP_DELETE_ERROR_MESSAGE string = "Vserver cannot be removed with out removing LB/PBR route" NSERR_CACHEPOLICY_RESPACTION_INVAL_ERROR_CODE errorCode = 2326 NSERR_CACHEPOLICY_RESPACTION_INVAL_ERROR_MESSAGE string = "Integrated caching action cannot be applied on a response" NSERR_CACHELICENSE_FAILED_ERROR_CODE errorCode = 2327 NSERR_CACHELICENSE_FAILED_ERROR_MESSAGE string = "The license for Integrated Caching feature was not enabled due to an internal error" NSERR_LBVIP_MULTIROUTES_ERROR_CODE errorCode = 2328 NSERR_LBVIP_MULTIROUTES_ERROR_MESSAGE string = "VIP can't be associated with multiple LB/PBR routes" NSERR_LBMAC_INVAL_ERROR_CODE errorCode = 2329 NSERR_LBMAC_INVAL_ERROR_MESSAGE string = "MAC/IPTUNNEL mode can be set only for a VIP with wildcard IP or with service type ANY or for a sessionless VIP" NSERR_CACHESTATS_OBJ_NOTPRESENT_ERROR_CODE errorCode = 2336 NSERR_CACHESTATS_OBJ_NOTPRESENT_ERROR_MESSAGE string = "No object in cache matching the specified attributes" NSERR_CACHEPOLICY_NOTACTIVE_ERROR_CODE errorCode = 2337 NSERR_CACHEPOLICY_NOTACTIVE_ERROR_MESSAGE string = "Integrated caching policy is not active" NSERR_CACHE_BUILTINS_NOT_SOURCED_ERROR_CODE errorCode = 2338 NSERR_CACHE_BUILTINS_NOT_SOURCED_ERROR_MESSAGE string = "Failed sourcing cache builtins, Disabling IC" NSERR_CACHEPOLICY_PRIORITY_INVAL_ERROR_CODE errorCode = 2339 NSERR_CACHEPOLICY_PRIORITY_INVAL_ERROR_MESSAGE string = "Invalid priority" NSERR_ROUTE6_DEFAULT_ONLY_ERROR_CODE errorCode = 2340 NSERR_ROUTE6_DEFAULT_ONLY_ERROR_MESSAGE string = "Only default route configuration supported" NSERR_ROUTE6_DEFAULT_EXISTS_ERROR_CODE errorCode = 2341 NSERR_ROUTE6_DEFAULT_EXISTS_ERROR_MESSAGE string = "Configured route already exists" NSERR_ROUTE6_INVALID_GATEWAY_ERROR_CODE errorCode = 2342 NSERR_ROUTE6_INVALID_GATEWAY_ERROR_MESSAGE string = "Invalid gateway" NSERR_ROUTE6_MAX_ERROR_CODE errorCode = 2343 NSERR_ROUTE6_MAX_ERROR_MESSAGE string = "Already maximum number of routes configured" NSERR_ROUTE6_NOT_EXIST_ERROR_CODE errorCode = 2344 NSERR_ROUTE6_NOT_EXIST_ERROR_MESSAGE string = "Route does not exist" NSERR_IPV6_INVALID_ADDR_ERROR_CODE errorCode = 2345 NSERR_IPV6_INVALID_ADDR_ERROR_MESSAGE string = "Incorrect IPv6 address type" NSERR_LBVIP_IPV6TOV4_ERROR_CODE errorCode = 2352 NSERR_LBVIP_IPV6TOV4_ERROR_MESSAGE string = "Changing IP from IPv6 to IPv4 not permitted" NSERR_IPV6_NSIPTOVIP_ERROR_CODE errorCode = 2353 NSERR_IPV6_NSIPTOVIP_ERROR_MESSAGE string = "Configuring NSIP as VIP not permitted" NSERR_IPV6_VIPTONSIP_ERROR_CODE errorCode = 2354 NSERR_IPV6_VIPTONSIP_ERROR_MESSAGE string = "Configuring VIP as NSIP not permitted" NSERR_IPV6_SCOPE_ERROR_CODE errorCode = 2355 NSERR_IPV6_SCOPE_ERROR_MESSAGE string = "Incorrect IPv6 address scope. (Default: global)" NSERR_LBVIP_IPV4TOV6_ERROR_CODE errorCode = 2356 NSERR_LBVIP_IPV4TOV6_ERROR_MESSAGE string = "Changing IP from IPv4 to IPv6 not permitted" NSERR_IPV6_LINKLOCALTOVIP_ERROR_CODE errorCode = 2357 NSERR_IPV6_LINKLOCALTOVIP_ERROR_MESSAGE string = "Configuring Link-Local address as VIP not permitted" NSERR_IPV6_MAPIPONNSIP_ERROR_CODE errorCode = 2358 NSERR_IPV6_MAPIPONNSIP_ERROR_MESSAGE string = "Mapped IP should not be configured for NSIP (Ignoring mapped ip)" NSERR_SECUREIPPORTADDRINUSE_ERROR_CODE errorCode = 2359 NSERR_SECUREIPPORTADDRINUSE_ERROR_MESSAGE string = "Internal secure service exists with the same port and service type. Please use this for secure access" NSERR_IPV6_INVALID_PREFIX_ERROR_CODE errorCode = 2360 NSERR_IPV6_INVALID_PREFIX_ERROR_MESSAGE string = "Link-local prefix length is not equal to 64" NSERR_ND6_LINKLOCAL_VLAN_ERROR_CODE errorCode = 2361 NSERR_ND6_LINKLOCAL_VLAN_ERROR_MESSAGE string = "Vlan is necessary with IPv6 Link-local address" NSERR_INVALID_IPV6_PREFIXLFT_ERROR_CODE errorCode = 2362 NSERR_INVALID_IPV6_PREFIXLFT_ERROR_MESSAGE string = "Invalid IPv6 prefix life time. prefix valid life time must be greater than or equal to preferred life time" NSERR_IPV6_ND_TIMEOUT_ERROR_CODE errorCode = 2363 NSERR_IPV6_ND_TIMEOUT_ERROR_MESSAGE string = "Can not SET/UNSET ndtimeouts, when ra_learning is enabled." NSERR_ND6_VLAN_INTF_ERROR_CODE errorCode = 2368 NSERR_ND6_VLAN_INTF_ERROR_MESSAGE string = "Interface/channel not a member of given vlan" NSERR_PERSIST_TIMEOUT_TO_DEFAULT_ERROR_CODE errorCode = 2369 NSERR_PERSIST_TIMEOUT_TO_DEFAULT_ERROR_MESSAGE string = "Unsetting Persistency, changing timeout to default" NSERR_LB_GROUP_NOT_EXIST_ERROR_CODE errorCode = 2370 NSERR_LB_GROUP_NOT_EXIST_ERROR_MESSAGE string = "LB group does not exist" NSERR_LB_VSERVER_ALREADY_BOUND_ERROR_CODE errorCode = 2371 NSERR_LB_VSERVER_ALREADY_BOUND_ERROR_MESSAGE string = "Vserver is already bound to a LB group" NSERR_ROUTE6_INVALID_LINKLOCAL_GATEWAY_VLAN_ERROR_CODE errorCode = 2372 NSERR_ROUTE6_INVALID_LINKLOCAL_GATEWAY_VLAN_ERROR_MESSAGE string = "Vlan ID must be specified for linklocal gateway" NSERR_ROUTE6_NO_GWORIF_ERROR_CODE errorCode = 2373 NSERR_ROUTE6_NO_GWORIF_ERROR_MESSAGE string = "Either Gateway or Interface (vlan) should be specified for route" NSERR_ROUTE6_VLAN_MONITOR_ERROR_CODE errorCode = 2374 NSERR_ROUTE6_VLAN_MONITOR_ERROR_MESSAGE string = "Monitor should not be given for vlan route" NSERR_LBMETHOD_LEASTREQ_NOT_SUPPORTED_ERROR_CODE errorCode = 2375 NSERR_LBMETHOD_LEASTREQ_NOT_SUPPORTED_ERROR_MESSAGE string = "LeastRequest LB method not supported for this service type" NSERR_IPV6_MULTIPLE_LLIP_ERROR_CODE errorCode = 2376 NSERR_IPV6_MULTIPLE_LLIP_ERROR_MESSAGE string = "Multiple link-local IPs to a Vlan is not allowed" NSERR_IPV6_TOOMANY_PREFIXES_ERROR_CODE errorCode = 2377 NSERR_IPV6_TOOMANY_PREFIXES_ERROR_MESSAGE string = "Too many prefixes to a Vlan, maxmimum 5 prefixes are allowed" NSERR_RAPREFIX_BOUNDTOVLAN_ERROR_CODE errorCode = 2378 NSERR_RAPREFIX_BOUNDTOVLAN_ERROR_MESSAGE string = "Router Advertisement prefix is bound to vlan" NSERR_LB_VSERVER_NOT_BOUND_ERROR_CODE errorCode = 2379 NSERR_LB_VSERVER_NOT_BOUND_ERROR_MESSAGE string = "Given vserver is not bound to this LB group" NSERR_VSERVER_BOUND_TO_NG_ERROR_CODE errorCode = 2380 NSERR_VSERVER_BOUND_TO_NG_ERROR_MESSAGE string = "Cannot delete vserver that is bound to a nodegroup" NSERR_LRMINTHROUGHPUT_ONLACPONLY_ERROR_CODE errorCode = 2382 NSERR_LRMINTHROUGHPUT_ONLACPONLY_ERROR_MESSAGE string = "Link Redundancy minimum throughput can be set only on LACP Channels" NSERR_CACHE_POLICY_CONTENTGRPMISMATCH_ERROR_CODE errorCode = 2383 NSERR_CACHE_POLICY_CONTENTGRPMISMATCH_ERROR_MESSAGE string = "Type of Content Group and Policy does not Match." NSERR_NONHTTPNOSQL_VS_ERROR_CODE errorCode = 2384 NSERR_NONHTTPNOSQL_VS_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL/HTTP_QUIC//MYSQL/MSSQL/PROXY vserver." NSERR_SMPP_CUSTOM_SVRID_LEN_NOT_SUPPORTED_ERROR_CODE errorCode = 2385 NSERR_SMPP_CUSTOM_SVRID_LEN_NOT_SUPPORTED_ERROR_MESSAGE string = "CustomServerID length for SMPP protocol must be 2" NSERR_SMPP_CUSTOM_SVRID_NOT_EXIST_ERROR_CODE errorCode = 2386 NSERR_SMPP_CUSTOM_SVRID_NOT_EXIST_ERROR_MESSAGE string = "CustomServerID is mandatory for SMPP protocol" NSERR_SMPP_CUSTOM_SVRID_EXIST_ERROR_CODE errorCode = 2387 NSERR_SMPP_CUSTOM_SVRID_EXIST_ERROR_MESSAGE string = "CustomServerID already exists, it should be unique for SMPP protocol" NSERR_SIP_DUPLICATE_SRC_PORT_ERROR_CODE errorCode = 2388 NSERR_SIP_DUPLICATE_SRC_PORT_ERROR_MESSAGE string = "RNAT source port and RNAT secure source port must be different" NSERR_SIP_DUPLICATE_DST_PORT_ERROR_CODE errorCode = 2389 NSERR_SIP_DUPLICATE_DST_PORT_ERROR_MESSAGE string = "RNAT destination port and RNAT secure destination port must be different" NSERR_IP_ADDR_ICMP_DIS_NOT_ALLOWED_ERROR_CODE errorCode = 2390 NSERR_IP_ADDR_ICMP_DIS_NOT_ALLOWED_ERROR_MESSAGE string = "Disabling ICMP for an IP(v6) address is not allowed" NSERR_IP_ADDR_ND6_DIS_NOT_ALLOWED_ERROR_CODE errorCode = 2391 NSERR_IP_ADDR_ND6_DIS_NOT_ALLOWED_ERROR_MESSAGE string = "disabling neighbor discovery for an ipv6 address is not allowed" NSERR_IP_ADDR_STATE_DIS_NOT_ALLOWED_ERROR_CODE errorCode = 2392 NSERR_IP_ADDR_STATE_DIS_NOT_ALLOWED_ERROR_MESSAGE string = "state disable is not allowed for an IP(v6) address" NSERR_ND6_LOOP_LL_NOT_ALLOW_ERROR_CODE errorCode = 2393 NSERR_ND6_LOOP_LL_NOT_ALLOW_ERROR_MESSAGE string = "Loopback/self or link-local IP addresses not allowed" NSERR_PERSISTENCE_NOT_SUPPORTED_ON_GROUP_ERROR_CODE errorCode = 2417 NSERR_PERSISTENCE_NOT_SUPPORTED_ON_GROUP_ERROR_MESSAGE string = "Vserver level persistency is enabled on the group. Set Persistence parameters on bound vservers." NSERR_ARGS_AAA_OTP_ERROR_CODE errorCode = 2420 NSERR_ARGS_AAA_OTP_ERROR_MESSAGE string = "authentication can not be ENABLED when otpsecret is specified" NSERR_ARGS_AAA_SSHPUBKEY_ERROR_CODE errorCode = 2421 NSERR_ARGS_AAA_SSHPUBKEY_ERROR_MESSAGE string = "authentication can not be ENABLED when sshPubKey is specified" NSERR_CLOUD_CRED_ERROR_CODE errorCode = 2422 NSERR_CLOUD_CRED_ERROR_MESSAGE string = "Unable to connect to the cloud. Check credentials." NSERR_CLOUD_NSCRED_ERROR_CODE errorCode = 2423 NSERR_CLOUD_NSCRED_ERROR_MESSAGE string = "Unable to issue NITRO API calls." NSERR_SECTYPE_PLAINTEXT_ERROR_CODE errorCode = 2424 NSERR_SECTYPE_PLAINTEXT_ERROR_MESSAGE string = "validateServerCert configuration not allowed when secType is PLAINTEXT." NSERR_ARGS_AAA_HASH_ATTRIB_ERROR_CODE errorCode = 2425 NSERR_ARGS_AAA_HASH_ATTRIB_ERROR_MESSAGE string = "Value to is Invalid. Either an attribute has more than 127 bytes or total string exceeds 2047 bytes" NSERR_CLOUD_DNS_ERROR_CODE errorCode = 2432 NSERR_CLOUD_DNS_ERROR_MESSAGE string = "Unable to connect to the cloud. DNS resolution failed." NSERR_CLOUD_FSERR_ERROR_CODE errorCode = 2433 NSERR_CLOUD_FSERR_ERROR_MESSAGE string = "Unable to validate cloud credentials. Access error." NSERR_REDIRECTION_INVALID_ERROR_CODE errorCode = 2434 NSERR_REDIRECTION_INVALID_ERROR_MESSAGE string = "Mac mode redirection setting on Vserver should not be enabled for LLB config." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#acl-errors NSERR_ACL_NOT_EXISTS_ERROR_CODE errorCode = 864 NSERR_ACL_NOT_EXISTS_ERROR_MESSAGE string = "ACL rule does not exist" NSERR_ACL_EXISTS_ERROR_CODE errorCode = 865 NSERR_ACL_EXISTS_ERROR_MESSAGE string = "IP address has existing ACL rule" NSERR_ACLPIP_WOSRCDST_ERROR_CODE errorCode = 866 NSERR_ACLPIP_WOSRCDST_ERROR_MESSAGE string = "Peer IP can't be given without src/dst flag" NSERR_ACL_SAMEIP_PIP_ERROR_CODE errorCode = 867 NSERR_ACL_SAMEIP_PIP_ERROR_MESSAGE string = "IP address and peer IP can't be same" NSERR_ACL_INVAL_PEERIP_ERROR_CODE errorCode = 868 NSERR_ACL_INVAL_PEERIP_ERROR_MESSAGE string = "Invalid peer IP" NSERR_ACL_IPPIP_EXISTS_ERROR_CODE errorCode = 869 NSERR_ACL_IPPIP_EXISTS_ERROR_MESSAGE string = "ACL with identical parameter specification already exists" NSERR_XACLDELERROR_ERROR_CODE errorCode = 870 NSERR_XACLDELERROR_ERROR_MESSAGE string = "ACL has already been removed" NSERR_XACLADDERROR_ERROR_CODE errorCode = 871 NSERR_XACLADDERROR_ERROR_MESSAGE string = "Src/DstPort or RedirectPort can be specified only if protocol is TCP (6) or UDP (17)" NSERR_XACL_PRIORITY_EXISTS_ERROR_CODE errorCode = 872 NSERR_XACL_PRIORITY_EXISTS_ERROR_MESSAGE string = "ACL with this priority already exists" NSERR_XACL_ICMP_REQD_ERROR_CODE errorCode = 873 NSERR_XACL_ICMP_REQD_ERROR_MESSAGE string = "ICMP type / code can be specified only if protocol is ICMP(1)" NSERR_NOLOOPBACK_ERROR_CODE errorCode = 874 NSERR_NOLOOPBACK_ERROR_MESSAGE string = "ACL cannot be configured on the loopback interface" NSERR_INVICMPTYPE_ERROR_CODE errorCode = 875 NSERR_INVICMPTYPE_ERROR_MESSAGE string = "Invalid ICMP type" NSERR_INVICMPCODE_ERROR_CODE errorCode = 876 NSERR_INVICMPCODE_ERROR_MESSAGE string = "Invalid ICMP code" NSERR_XACLRNATDEL_ERROR_CODE errorCode = 877 NSERR_XACLRNATDEL_ERROR_MESSAGE string = "ACL is bounded to RNAT/LSN, cannot be removed" NSERR_XACLMODCFGINFO_ERROR_CODE errorCode = 878 NSERR_XACLMODCFGINFO_ERROR_MESSAGE string = "ACL modified, apply ACLs to activate change" NSERR_XACLFWDSESSIONDEL_ERROR_CODE errorCode = 879 NSERR_XACLFWDSESSIONDEL_ERROR_MESSAGE string = "ACL is bounded to FORWARDSESSION, cannot be removed" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#acl6-errors NSERR_ACL6_IPPIP_EXISTS_ERROR_CODE errorCode = 896 NSERR_ACL6_IPPIP_EXISTS_ERROR_MESSAGE string = "ACL6 with identical parameter specification already exists" NSERR_ACL6_DELERROR_ERROR_CODE errorCode = 897 NSERR_ACL6_DELERROR_ERROR_MESSAGE string = "ACL6 has already been removed" NSERR_ACL6_ADDERROR_ERROR_CODE errorCode = 898 NSERR_ACL6_ADDERROR_ERROR_MESSAGE string = "Port can be specified only if protocol is TCP (6) or UDP (17)" NSERR_ACL6_PRIORITY_EXISTS_ERROR_CODE errorCode = 899 NSERR_ACL6_PRIORITY_EXISTS_ERROR_MESSAGE string = "ACL6 with this priority already exists" NSERR_ACL6_ICMP_REQD_ERROR_CODE errorCode = 900 NSERR_ACL6_ICMP_REQD_ERROR_MESSAGE string = "ICMPv6 type/code can be specified only if protocol is ICMPv6 (58)" NSERR_ACL6_UNSPECADDR_ERROR_CODE errorCode = 901 NSERR_ACL6_UNSPECADDR_ERROR_MESSAGE string = "unspecified address (::) can not be configured in ACL6" NSERR_ACL6_MODCFGINFO_ERROR_CODE errorCode = 902 NSERR_ACL6_MODCFGINFO_ERROR_MESSAGE string = "ACL6 modified, apply ACLs6 to activate change" NSERR_ACL6_PREFIXLEN_ERROR_CODE errorCode = 903 NSERR_ACL6_PREFIXLEN_ERROR_MESSAGE string = "Prefix length should not be configured in ACL6. (Use range instead)" NSERR_ACL6_RNAT_NOT_ALLOWED_ERROR_CODE errorCode = 904 NSERR_ACL6_RNAT_NOT_ALLOWED_ERROR_MESSAGE string = "Action must be ALLOW to bind ACL6 to RNAT" NSERR_ACL6RNAT_DELERROR_ERROR_CODE errorCode = 905 NSERR_ACL6RNAT_DELERROR_ERROR_MESSAGE string = "This ACL6 is associated with rnat6/nat64/forwardingsession/lsn config, Remove rnat6/nat64/forwardingsession/lsn first" NSERR_RNAT6_INVALID_REDPORT_ERROR_CODE errorCode = 906 NSERR_RNAT6_INVALID_REDPORT_ERROR_MESSAGE string = "Invalid option for SET/UNSET, redirect port can be specified only for acl6 based RNAT" NSERR_ACL6_RNAT_EXISTS_ERROR_CODE errorCode = 907 NSERR_ACL6_RNAT_EXISTS_ERROR_MESSAGE string = "ACL6 based rnat is already exist for this acl6(Duplicate config)" NSERR_NET_RNAT6_EXISTS_ERROR_CODE errorCode = 908 NSERR_NET_RNAT6_EXISTS_ERROR_MESSAGE string = "Network based rnat/lsn already exists for this network address(Duplicate config)" NSERR_RNAT_VIP_PORT_ALLOC_FAIL_ERROR_CODE errorCode = 909 NSERR_RNAT_VIP_PORT_ALLOC_FAIL_ERROR_MESSAGE string = "ERROR : Port allocation for VIP v6 address Failed" NSERR_ACL6_RNAT_NAT64_NOT_ALLOWED_ERROR_CODE errorCode = 910 NSERR_ACL6_RNAT_NAT64_NOT_ALLOWED_ERROR_MESSAGE string = "ERROR : Acl6 already bound to nat64 config" NSERR_ACL_SRCMAC_MASK_LENGTH_ERROR_CODE errorCode = 911 NSERR_ACL_SRCMAC_MASK_LENGTH_ERROR_MESSAGE string = "SrcMacMask length should be 12" NSERR_ACL_INVALID_NAME_ERROR_CODE errorCode = 1444 NSERR_ACL_INVALID_NAME_ERROR_MESSAGE string = "ERROR : ACL name length should be >=1 and <=128" NSERR_ACL_SRCMAC_MASK_PAIR_ERROR_CODE errorCode = 1455 NSERR_ACL_SRCMAC_MASK_PAIR_ERROR_MESSAGE string = "SrcMacMask should Contain consecutive 1s or 0s per octet and pair of 0s should not be present after pair of 1s" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#adtcp-errors NSERR_ADTCP_PROFILE_NOT_FOUND_ERROR_CODE errorCode = 3781 NSERR_ADTCP_PROFILE_NOT_FOUND_ERROR_MESSAGE string = "AdaptiveTCP profile not found" NSERR_ADTCP_PROFILE_INVALID_ERROR_CODE errorCode = 3792 NSERR_ADTCP_PROFILE_INVALID_ERROR_MESSAGE string = "Invalid AdaptiveTCP profile" NSERR_ADTCP_CQARULE_NAME_INUSE_ERROR_CODE errorCode = 3793 NSERR_ADTCP_CQARULE_NAME_INUSE_ERROR_MESSAGE string = "Rule name already in use" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#appflow-errors NSERR_APPFLOW_INVALIDPORT_ERROR_CODE errorCode = 3936 NSERR_APPFLOW_INVALIDPORT_ERROR_MESSAGE string = "Invalid collector port" NSERR_NO_SUCH_COLLECTOR_ERROR_CODE errorCode = 3938 NSERR_NO_SUCH_COLLECTOR_ERROR_MESSAGE string = "No matching collector" NSERR_APPFLOW_METRICS_ACTION_ERROR_CODE errorCode = 3939 NSERR_APPFLOW_METRICS_ACTION_ERROR_MESSAGE string = "Set operation is not allowed on Appflow action with metricsLog option enabled." NSERR_APPFLOW_NONZERO_REFCOUNT_ERROR_CODE errorCode = 3940 NSERR_APPFLOW_NONZERO_REFCOUNT_ERROR_MESSAGE string = "The AppFlow entity is in use." NSERR_APPFLOW_COLLECTOR_NAME_INUSE_ERROR_CODE errorCode = 3941 NSERR_APPFLOW_COLLECTOR_NAME_INUSE_ERROR_MESSAGE string = "AppFlow collector name already in use." NSERR_APPFLOW_ACT_INVAL_ERROR_CODE errorCode = 3942 NSERR_APPFLOW_ACT_INVAL_ERROR_MESSAGE string = "No such AppFlow action exists." NSERR_APPFLOW_NETPROF_REQD_ERROR_CODE errorCode = 3472 NSERR_APPFLOW_NETPROF_REQD_ERROR_MESSAGE string = "NetProfile required for AppFlow collector within partition." NSERR_COLLECTOR_TRANSPORT_MISMATCH_ERROR_CODE errorCode = 1220 NSERR_COLLECTOR_TRANSPORT_MISMATCH_ERROR_MESSAGE string = "All collectors attached to an action should have the same transport type." NSERR_SAME_TYPE_PROFILE_BOUND_ERROR_CODE errorCode = 1221 NSERR_SAME_TYPE_PROFILE_BOUND_ERROR_MESSAGE string = "Two profiles of same type cannot be bound." NSERR_COLLECTOR_LOGSTREAM_ERROR_CODE errorCode = 1222 NSERR_COLLECTOR_LOGSTREAM_ERROR_MESSAGE string = "ANOMALOUS transaction option is valid only with Logstream collector." NSERR_HTTP_STREAM_ERROR_CODE errorCode = 1225 NSERR_HTTP_STREAM_ERROR_MESSAGE string = "Only REST type collectors are allowed with this profile." NSERR_PROFILE_TYPE_MISMATCH_ERROR_CODE errorCode = 1226 NSERR_PROFILE_TYPE_MISMATCH_ERROR_MESSAGE string = "Invalid profile type." NSERR_ENABLE_IPFIX_LOGGING_ERROR_CODE errorCode = 1227 NSERR_ENABLE_IPFIX_LOGGING_ERROR_MESSAGE string = "IPFIX logging not enabled." NSERR_BOUNDTO_ANALYTICS_ERROR_CODE errorCode = 1228 NSERR_BOUNDTO_ANALYTICS_ERROR_MESSAGE string = "Bound to analytics entity." NSERR_HTTP_SVC_ONLY_ERROR_CODE errorCode = 1229 NSERR_HTTP_SVC_ONLY_ERROR_MESSAGE string = "Only HTTP service is allowed with this profile." NSERR_REST_COL_PROFILE_ERROR_CODE errorCode = 1230 NSERR_REST_COL_PROFILE_ERROR_MESSAGE string = "Either one of REST collector or HTTP-Stream profile can be active at a time." NSERR_PROFILE_TYPE_EXISTS_ERROR_CODE errorCode = 1231 NSERR_PROFILE_TYPE_EXISTS_ERROR_MESSAGE string = "Only one profile of this type can exist." NSERR_INVALID_APPFLOW_TRANSPORT_ERROR_CODE errorCode = 1245 NSERR_INVALID_APPFLOW_TRANSPORT_ERROR_MESSAGE string = "Invalid service-type. Only Logstream and IPFIX are allowed." NSERR_COLLECTOR_DUPLICATES_ERROR_CODE errorCode = 1267 NSERR_COLLECTOR_DUPLICATES_ERROR_MESSAGE string = "Duplicate collectors not allowed." NSERR_MULTIPLE_EVENTS_AUDITS_CONFIG_ERROR_CODE errorCode = 1268 NSERR_MULTIPLE_EVENTS_AUDITS_CONFIG_ERROR_MESSAGE string = "Events and Auditlogs can be enabled on only one time series profile" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#as-errors NSERR_AS_NOSTARTURL_ERROR_CODE errorCode = 3120 NSERR_AS_NOSTARTURL_ERROR_MESSAGE string = "No such StartURL check" NSERR_AS_EXIST_STARTURL_ERROR_CODE errorCode = 3121 NSERR_AS_EXIST_STARTURL_ERROR_MESSAGE string = "The StartURL check is already in use" NSERR_AS_NODENYURL_ERROR_CODE errorCode = 3122 NSERR_AS_NODENYURL_ERROR_MESSAGE string = "No such DenyURL check" NSERR_AS_EXIST_DENYURL_ERROR_CODE errorCode = 3123 NSERR_AS_EXIST_DENYURL_ERROR_MESSAGE string = "The DenyURL check is already in use" NSERR_AS_NOCOOKIECONSISTENCY_ERROR_CODE errorCode = 3124 NSERR_AS_NOCOOKIECONSISTENCY_ERROR_MESSAGE string = "No such CookieConsistency check" NSERR_AS_EXIST_COOKIECONSISTENCY_ERROR_CODE errorCode = 3125 NSERR_AS_EXIST_COOKIECONSISTENCY_ERROR_MESSAGE string = "The CookieConsistency check is already in use" NSERR_AS_NOFIELDCONSISTENCY_ERROR_CODE errorCode = 3126 NSERR_AS_NOFIELDCONSISTENCY_ERROR_MESSAGE string = "No such FieldConsistency check" NSERR_AS_EXIST_FIELDCONSISTENCY_ERROR_CODE errorCode = 3127 NSERR_AS_EXIST_FIELDCONSISTENCY_ERROR_MESSAGE string = "The FieldConsistency check is already in use" NSERR_AS_NOXSS_ERROR_CODE errorCode = 3128 NSERR_AS_NOXSS_ERROR_MESSAGE string = "No such CrossSiteScripting check" NSERR_AS_EXIST_XSS_ERROR_CODE errorCode = 3129 NSERR_AS_EXIST_XSS_ERROR_MESSAGE string = "The CrossSiteScripting check is already in use" NSERR_AS_NOSQL_ERROR_CODE errorCode = 3130 NSERR_AS_NOSQL_ERROR_MESSAGE string = "No such SQLInjection check" NSERR_AS_EXIST_SQL_ERROR_CODE errorCode = 3131 NSERR_AS_EXIST_SQL_ERROR_MESSAGE string = "The SQLInjection check is already in use" NSERR_AS_NOFIELDFORMAT_ERROR_CODE errorCode = 3132 NSERR_AS_NOFIELDFORMAT_ERROR_MESSAGE string = "No such FieldFormat check" NSERR_AS_EXIST_FIELDFORMAT_ERROR_CODE errorCode = 3133 NSERR_AS_EXIST_FIELDFORMAT_ERROR_MESSAGE string = "The FieldFormat check is already in use" NSERR_AS_NOOBJECTEXPRESSION_ERROR_CODE errorCode = 3134 NSERR_AS_NOOBJECTEXPRESSION_ERROR_MESSAGE string = "No such SafeObject check" NSERR_AS_EXIST_OBJECTEXPRESSION_ERROR_CODE errorCode = 3135 NSERR_AS_EXIST_OBJECTEXPRESSION_ERROR_MESSAGE string = "The SafeObject check is already in use" NSERR_AS_NOFIELDTYPE_ERROR_CODE errorCode = 3136 NSERR_AS_NOFIELDTYPE_ERROR_MESSAGE string = "No such FieldType. See /var/log/ns.log for more details." NSERR_AS_NOT_SUPPORTED_VS_ERROR_CODE errorCode = 3137 NSERR_AS_NOT_SUPPORTED_VS_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL/HTTP_QUIC/PROXY vserver" NSERR_AS_BAD_ACTION_STARTURL_ERROR_CODE errorCode = 3138 NSERR_AS_BAD_ACTION_STARTURL_ERROR_MESSAGE string = "Invalid StartURL Action" NSERR_AS_BAD_ACTION_DENYURL_ERROR_CODE errorCode = 3139 NSERR_AS_BAD_ACTION_DENYURL_ERROR_MESSAGE string = "Invalid DenyURL Action" NSERR_AS_BAD_ACTION_COOKIECONSISTENCY_ERROR_CODE errorCode = 3140 NSERR_AS_BAD_ACTION_COOKIECONSISTENCY_ERROR_MESSAGE string = "Invalid CookieConsistency Action" NSERR_AS_BAD_ACTION_FIELDCONSISTENCY_ERROR_CODE errorCode = 3141 NSERR_AS_BAD_ACTION_FIELDCONSISTENCY_ERROR_MESSAGE string = "Invalid FieldConsistency Action" NSERR_AS_BAD_ACTION_XSS_ERROR_CODE errorCode = 3142 NSERR_AS_BAD_ACTION_XSS_ERROR_MESSAGE string = "Invalid CrossSiteScripting Action" NSERR_AS_BAD_ACTION_SQL_ERROR_CODE errorCode = 3143 NSERR_AS_BAD_ACTION_SQL_ERROR_MESSAGE string = "Invalid SQLInjection Action" NSERR_AS_BAD_ACTION_FIELDFORMAT_ERROR_CODE errorCode = 3144 NSERR_AS_BAD_ACTION_FIELDFORMAT_ERROR_MESSAGE string = "Invalid FieldFormat Action" NSERR_AS_BAD_ACTION_OBJECTEXPRESSION_ERROR_CODE errorCode = 3145 NSERR_AS_BAD_ACTION_OBJECTEXPRESSION_ERROR_MESSAGE string = "Invalid SafeObject Action" NSERR_AS_BAD_ACTION_BUFFEROVERFLOW_ERROR_CODE errorCode = 3146 NSERR_AS_BAD_ACTION_BUFFEROVERFLOW_ERROR_MESSAGE string = "Invalid BufferOverflow Action" NSERR_AS_BAD_ACTION_CCARD_ERROR_CODE errorCode = 3147 NSERR_AS_BAD_ACTION_CCARD_ERROR_MESSAGE string = "Invalid CreditCard Action" NSERR_AS_FIELDFORMAT_MIN_GT_MAX_ERROR_CODE errorCode = 3148 NSERR_AS_FIELDFORMAT_MIN_GT_MAX_ERROR_MESSAGE string = "Minimum FieldFormat length cannot exceed maximum FieldFormat length" NSERR_AS_FIELDTYPE_BAD_NAME_LEN_ERROR_CODE errorCode = 3149 NSERR_AS_FIELDTYPE_BAD_NAME_LEN_ERROR_MESSAGE string = "Invalid FieldType name length" NSERR_AS_BAD_COMMENT_LEN_ERROR_CODE errorCode = 3150 NSERR_AS_BAD_COMMENT_LEN_ERROR_MESSAGE string = "Invalid comment length" NSERR_AS_FIELDTYPE_BAD_REGEX_LEN_ERROR_CODE errorCode = 3151 NSERR_AS_FIELDTYPE_BAD_REGEX_LEN_ERROR_MESSAGE string = "Invalid regex length" NSERR_AS_SECURITY_CHECK_REQUIRED_ERROR_CODE errorCode = 3152 NSERR_AS_SECURITY_CHECK_REQUIRED_ERROR_MESSAGE string = "Security check required" NSERR_AS_FIELDTYPE_BUILTIN_ERROR_CODE errorCode = 3153 NSERR_AS_FIELDTYPE_BUILTIN_ERROR_MESSAGE string = "Built-in FieldTypes cannot be modified or deleted" NSERR_AS_BAD_ACTION_CONTENT_TYPE_ERROR_CODE errorCode = 3154 NSERR_AS_BAD_ACTION_CONTENT_TYPE_ERROR_MESSAGE string = "Invalid ContentType Action" NSERR_AS_BAD_DEFAULT_CHARSET_ERROR_CODE errorCode = 3155 NSERR_AS_BAD_DEFAULT_CHARSET_ERROR_MESSAGE string = "Invalid default character set" NSERR_AS_BAD_COOKIECONSISTENCY_NAME_ERROR_CODE errorCode = 3156 NSERR_AS_BAD_COOKIECONSISTENCY_NAME_ERROR_MESSAGE string = "Invalid Cookie name" NSERR_AS_BAD_ERRORURL_ERROR_CODE errorCode = 3157 NSERR_AS_BAD_ERRORURL_ERROR_MESSAGE string = "Invalid ErrorURL" NSERR_AS_BAD_ENCODING_URL_ERROR_CODE errorCode = 3158 NSERR_AS_BAD_ENCODING_URL_ERROR_MESSAGE string = "Invalid encoding for URL" NSERR_AS_BAD_ENCODING_FIELDNAME_ERROR_CODE errorCode = 3159 NSERR_AS_BAD_ENCODING_FIELDNAME_ERROR_MESSAGE string = "Invalid encoding for field name" NSERR_AS_BAD_ENCODING_COOKIENAME_ERROR_CODE errorCode = 3160 NSERR_AS_BAD_ENCODING_COOKIENAME_ERROR_MESSAGE string = "Invalid encoding for cookie name" NSERR_AS_BAD_ENCODING_OBJECTEXPRESSION_NAME_ERROR_CODE errorCode = 3161 NSERR_AS_BAD_ENCODING_OBJECTEXPRESSION_NAME_ERROR_MESSAGE string = "Invalid encoding for SafeObject name" NSERR_AS_BAD_ENCODING_EXPRESSION_ERROR_CODE errorCode = 3162 NSERR_AS_BAD_ENCODING_EXPRESSION_ERROR_MESSAGE string = "Invalid encoding for expression" NSERR_AS_BAD_ENCODING_REGEX_ERROR_CODE errorCode = 3163 NSERR_AS_BAD_ENCODING_REGEX_ERROR_MESSAGE string = "Invalid encoding for regex" NSERR_AS_MODIFIED_URL_ERROR_CODE errorCode = 3164 NSERR_AS_MODIFIED_URL_ERROR_MESSAGE string = "Replaced character that is not printable ASCII with escaped equivalent in URL" NSERR_AS_MODIFIED_OBJECTEXPRESSION_ERROR_CODE errorCode = 3165 NSERR_AS_MODIFIED_OBJECTEXPRESSION_ERROR_MESSAGE string = "Replaced character that is not printable ASCII with escaped equivalent in expression" NSERR_AS_CFFIELD_BAD_FIELDNAME_LEN_ERROR_CODE errorCode = 3166 NSERR_AS_CFFIELD_BAD_FIELDNAME_LEN_ERROR_MESSAGE string = "Invalid confidential form field name length" NSERR_AS_CFFIELD_BAD_URL_LEN_ERROR_CODE errorCode = 3167 NSERR_AS_CFFIELD_BAD_URL_LEN_ERROR_MESSAGE string = "Invalid confidential form field URL length" NSERR_AS_NOCFFIELD_ERROR_CODE errorCode = 3168 NSERR_AS_NOCFFIELD_ERROR_MESSAGE string = "No such confidential form field" NSERR_AS_BAD_CFF_NAME_ERROR_CODE errorCode = 3169 NSERR_AS_BAD_CFF_NAME_ERROR_MESSAGE string = "Name may not contain leading/trailing spaces." NSERR_AS_BAD_CFF_URL_ERROR_CODE errorCode = 3170 NSERR_AS_BAD_CFF_URL_ERROR_MESSAGE string = "URL may not contain leading/trailing spaces." NSERR_AS_CFF_DUP_ERROR_CODE errorCode = 3171 NSERR_AS_CFF_DUP_ERROR_MESSAGE string = "The confidential field is already in use." NSERR_AS_BAD_ACTION_XDOS_ERROR_CODE errorCode = 3172 NSERR_AS_BAD_ACTION_XDOS_ERROR_MESSAGE string = "Invalid XML Dos Action" NSERR_AS_EXIST_XML_DOS_URL_ERROR_CODE errorCode = 3173 NSERR_AS_EXIST_XML_DOS_URL_ERROR_MESSAGE string = "The XML DoS URL check is already in use." NSERR_XML_URL_NOT_SUPPORTED_ERROR_CODE errorCode = 3174 NSERR_XML_URL_NOT_SUPPORTED_ERROR_MESSAGE string = "Only .* is supported for XML checks." NSERR_AS_NO_XDOS_URL_ERROR_CODE errorCode = 3175 NSERR_AS_NO_XDOS_URL_ERROR_MESSAGE string = "No such URL exist for XDOS check." NSERR_AS_INVALID_XML_DOS_CONF_ERROR_CODE errorCode = 3176 NSERR_AS_INVALID_XML_DOS_CONF_ERROR_MESSAGE string = "Invalid configuration: xmlMaxFileSize can not be less than xmlMinFileSize when both checks are enabled." NSERR_AS_BAD_ACTION_XML_SQLINJECTION_ERROR_CODE errorCode = 3177 NSERR_AS_BAD_ACTION_XML_SQLINJECTION_ERROR_MESSAGE string = "Invalid XML - SQLInjection Action." NSERR_AS_BAD_ACTION_XML_XSS_ERROR_CODE errorCode = 3178 NSERR_AS_BAD_ACTION_XML_XSS_ERROR_MESSAGE string = "Invalid XML - CrossSiteScripting Action." NSERR_AS_BAD_ACTION_XML_WELLFORMEDNESS_ERROR_CODE errorCode = 3179 NSERR_AS_BAD_ACTION_XML_WELLFORMEDNESS_ERROR_MESSAGE string = "Invalid XML - Format Action." NSERR_AS_BAD_ACTION_PROFILE_TYPE_ERROR_CODE errorCode = 3180 NSERR_AS_BAD_ACTION_PROFILE_TYPE_ERROR_MESSAGE string = "Invalid Appsecure Profile Type." NSERR_AS_MODIFIED_FIELDNAME_ERROR_CODE errorCode = 3181 NSERR_AS_MODIFIED_FIELDNAME_ERROR_MESSAGE string = "Replaced character that is not printable ASCII with escaped equivalent in form field name" NSERR_AS_BAD_ACTION_WSI_ERROR_CODE errorCode = 3182 NSERR_AS_BAD_ACTION_WSI_ERROR_MESSAGE string = "Invalid XML WS-I Action." NSERR_AS_EXIST_XML_WSI_URL_ERROR_CODE errorCode = 3183 NSERR_AS_EXIST_XML_WSI_URL_ERROR_MESSAGE string = "The XML WS-I URL check is already in use." NSERR_AS_NO_WSI_URL_ERROR_CODE errorCode = 3184 NSERR_AS_NO_WSI_URL_ERROR_MESSAGE string = "No such URL exist for WS-I check." NSERR_AS_INVALID_XML_WSI_CONF_ERROR_CODE errorCode = 3185 NSERR_AS_INVALID_XML_WSI_CONF_ERROR_MESSAGE string = "Invalid WS-I rule id in the list." NSERR_AS_OBJECTNAME_TOO_BIG_ERROR_CODE errorCode = 3186 NSERR_AS_OBJECTNAME_TOO_BIG_ERROR_MESSAGE string = "Object too big." NSERR_AS_OBJECT_NO_EXIST_ERROR_CODE errorCode = 3187 NSERR_AS_OBJECT_NO_EXIST_ERROR_MESSAGE string = "Imported file does not exist [Please import the file before use]. See /var/log/ns.log for more details." NSERR_AS_SERVER_NAME_TOO_BIG_ERROR_CODE errorCode = 3188 NSERR_AS_SERVER_NAME_TOO_BIG_ERROR_MESSAGE string = "Server name too big." NSERR_AS_OBJECT_NOT_READABLE_ERROR_CODE errorCode = 3189 NSERR_AS_OBJECT_NOT_READABLE_ERROR_MESSAGE string = "Object not readable [Please make sure it exists]." NSERR_AS_NOPROFILE_ERROR_CODE errorCode = 3190 NSERR_AS_NOPROFILE_ERROR_MESSAGE string = "No such profile." NSERR_AS_BAD_ACTION_XML_ATTACHMENT_ERROR_CODE errorCode = 3191 NSERR_AS_BAD_ACTION_XML_ATTACHMENT_ERROR_MESSAGE string = "Invalid XML - Attachment Action" NSERR_AS_BAD_ACTION_MSGVAL_ERROR_CODE errorCode = 3192 NSERR_AS_BAD_ACTION_MSGVAL_ERROR_MESSAGE string = "Invalid XML Message Validation Action." NSERR_AS_EXIST_XML_MSGVAL_URL_ERROR_CODE errorCode = 3193 NSERR_AS_EXIST_XML_MSGVAL_URL_ERROR_MESSAGE string = "The XML MSGVAL URL check is already in use." NSERR_AS_NO_MSGVAL_URL_ERROR_CODE errorCode = 3194 NSERR_AS_NO_MSGVAL_URL_ERROR_MESSAGE string = "No such URL exist for MSGVAL check." NSERR_AS_INVALID_XML_MSGVAL_CONF_ERROR_CODE errorCode = 3195 NSERR_AS_INVALID_XML_MSGVAL_CONF_ERROR_MESSAGE string = "Invalid MsgVal configuration." NSERR_AS_BIND_XML_MSGVAL_CONF_ERROR_CODE errorCode = 3196 NSERR_AS_BIND_XML_MSGVAL_CONF_ERROR_MESSAGE string = "Error in message validation binding. For More details see log messages." NSERR_AS_IMPORT_FAILED_ERROR_CODE errorCode = 3197 NSERR_AS_IMPORT_FAILED_ERROR_MESSAGE string = "Importing the resource failed" NSERR_AS_OBJECT_EXIST_ERROR_CODE errorCode = 3198 NSERR_AS_OBJECT_EXIST_ERROR_MESSAGE string = "Object already exists" NSERR_AS_INVALID_OPTION_ERROR_CODE errorCode = 3199 NSERR_AS_INVALID_OPTION_ERROR_MESSAGE string = "Invalid option" NSERR_AS_REMOVE_FAILED_ERROR_CODE errorCode = 3200 NSERR_AS_REMOVE_FAILED_ERROR_MESSAGE string = "Problem in removing resource" NSERR_AS_NO_RESOURCE_ERROR_CODE errorCode = 3201 NSERR_AS_NO_RESOURCE_ERROR_MESSAGE string = "No such resource. Object you are trying to update or remove does not exist." NSERR_AS_SHOW_FAILED_ERROR_CODE errorCode = 3202 NSERR_AS_SHOW_FAILED_ERROR_MESSAGE string = "Problem in showing object" NSERR_AS_DEPENDENCY_FAILED_ERROR_CODE errorCode = 3203 NSERR_AS_DEPENDENCY_FAILED_ERROR_MESSAGE string = "Problem in downloading dependencies" NSERR_AS_COMPILATION_FAILED_ERROR_CODE errorCode = 3204 NSERR_AS_COMPILATION_FAILED_ERROR_MESSAGE string = "Problem compiling object. For more details see /var/log/ns.log file" NSERR_INVALID_OBJECT_NAME_ERROR_CODE errorCode = 3205 NSERR_INVALID_OBJECT_NAME_ERROR_MESSAGE string = "" /* 148-byte string literal not displayed */ NSERR_AS_IMPORT_DOWNLOAD_FAILED_ERROR_CODE errorCode = 3206 NSERR_AS_IMPORT_DOWNLOAD_FAILED_ERROR_MESSAGE string = "" /* 136-byte string literal not displayed */ NSERR_AS_RESOURCE_INUSE_ERROR_CODE errorCode = 3207 NSERR_AS_RESOURCE_INUSE_ERROR_MESSAGE string = "Can not remove resource. Resource is in use" NSERR_AS_BAD_MAPPING_DATA_ERROR_CODE errorCode = 3208 NSERR_AS_BAD_MAPPING_DATA_ERROR_MESSAGE string = "Mapping Data Corrupted" NSERR_AS_PROFILE_CHANGE_HTML_ERROR_CODE errorCode = 3209 NSERR_AS_PROFILE_CHANGE_HTML_ERROR_MESSAGE string = "HTML checks will not be applicable when profile type is not HTML" NSERR_AS_PROFILE_CHANGE_XML_ERROR_CODE errorCode = 3210 NSERR_AS_PROFILE_CHANGE_XML_ERROR_MESSAGE string = "XML checks will not be applicable when profile type is not XML" NSERR_AS_IMPORT_ALREADY_INPROCESS_ERROR_CODE errorCode = 3211 NSERR_AS_IMPORT_ALREADY_INPROCESS_ERROR_MESSAGE string = "Import failed. Another resource with the same name being processed" NSERR_AS_INVALID_XML_ERROR_OBJECT_ERROR_CODE errorCode = 3212 NSERR_AS_INVALID_XML_ERROR_OBJECT_ERROR_MESSAGE string = "Invalid XML error object" NSERR_AS_XML_WELLFORMEDNESS_DISABLED_ERROR_CODE errorCode = 3213 NSERR_AS_XML_WELLFORMEDNESS_DISABLED_ERROR_MESSAGE string = "XML Security checks can not be performed, once an XML message is found not wellformed." NSERR_AS_INDIVIDUAL_IMPORT_LIMIT_EXCEEDED_ERROR_CODE errorCode = 3214 NSERR_AS_INDIVIDUAL_IMPORT_LIMIT_EXCEEDED_ERROR_MESSAGE string = "Import failed - importing file size greater than configured size limit" NSERR_AS_TOTAL_IMPORT_LIMIT_EXCEEDED_ERROR_CODE errorCode = 3215 NSERR_AS_TOTAL_IMPORT_LIMIT_EXCEEDED_ERROR_MESSAGE string = "Import failed - exceeding the configured total size limit on the imported objects" NSERR_AS_LEARNING_BUSY_ERROR_CODE errorCode = 3216 NSERR_AS_LEARNING_BUSY_ERROR_MESSAGE string = "Please wait for the learning database to finish updating" NSERR_AS_DEPRECATED_XML_WSI_RULE_R4003_ERROR_CODE errorCode = 3217 NSERR_AS_DEPRECATED_XML_WSI_RULE_R4003_ERROR_MESSAGE string = "WS-I Rule R4003 has been deprecated, it will be removed from the WS-I binding list." NSERR_AS_EXIST_XML_ATTACHMENT_URL_ERROR_CODE errorCode = 3218 NSERR_AS_EXIST_XML_ATTACHMENT_URL_ERROR_MESSAGE string = "The XML Attachment URL check is already in use." NSERR_AS_NO_XML_ATTACHMENT_URL_ERROR_CODE errorCode = 3219 NSERR_AS_NO_XML_ATTACHMENT_URL_ERROR_MESSAGE string = "No such URL exist for XML Attachment check." NSERR_AS_BAD_ACTION_SOAP_FAULT_ERROR_CODE errorCode = 3220 NSERR_AS_BAD_ACTION_SOAP_FAULT_ERROR_MESSAGE string = "Invalid SOAP Fault Filtering Action." NSERR_AS_XML_DOS_VALUE_OUT_OF_RANGE_ERROR_CODE errorCode = 3221 NSERR_AS_XML_DOS_VALUE_OUT_OF_RANGE_ERROR_MESSAGE string = "XML DoS check value is not within the allowed range." NSERR_AS_XML_MSGVAL_CLI_ERROR_ERROR_CODE errorCode = 3222 NSERR_AS_XML_MSGVAL_CLI_ERROR_ERROR_MESSAGE string = "-XMLValidateResponse requires one of [-XMLValidateSOAPEnvelope, -XMLWSDL, -XMLRequestSchema, -XMLResponseSchema]" NSERR_AS_INVALID_CUSTOM_SETTINGS_OBJECT_ERROR_CODE errorCode = 3223 NSERR_AS_INVALID_CUSTOM_SETTINGS_OBJECT_ERROR_MESSAGE string = "Import failed. Please check syntax of signature object" NSERR_AS_SESSION_TIMEOUT_LIFETIME_CONFLICT_ERROR_CODE errorCode = 3224 NSERR_AS_SESSION_TIMEOUT_LIFETIME_CONFLICT_ERROR_MESSAGE string = "The session lifetime cannot be less than the session timeout" NSERR_AS_CLASSIC_POLICY_ALREADY_BOUND_ERROR_CODE errorCode = 3225 NSERR_AS_CLASSIC_POLICY_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 165-byte string literal not displayed */ NSERR_AS_ADVANCED_POLICY_ALREADY_BOUND_ERROR_CODE errorCode = 3226 NSERR_AS_ADVANCED_POLICY_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 199-byte string literal not displayed */ NSERR_AS_CUSTOM_SETTINGS_NO_INJECTION_TYPE_ERROR_CODE errorCode = 3227 NSERR_AS_CUSTOM_SETTINGS_NO_INJECTION_TYPE_ERROR_MESSAGE string = "Failed to set signature object. One of the tags do not have 'type' attribute" NSERR_AS_NOCSRF_TAG_ERROR_CODE errorCode = 3228 NSERR_AS_NOCSRF_TAG_ERROR_MESSAGE string = "No such CrossSiteRequestForgery check" NSERR_AS_EXIST_CSRF_TAG_ERROR_CODE errorCode = 3229 NSERR_AS_EXIST_CSRF_TAG_ERROR_MESSAGE string = "The CrossSiteRequestForgery check is already in use" NSERR_AS_BAD_ACTION_CSRF_TAG_ERROR_CODE errorCode = 3230 NSERR_AS_BAD_ACTION_CSRF_TAG_ERROR_MESSAGE string = "Invalid CSRF Tag Action" NSERR_AS_TURNING_TAGGING_OFF_CSRF_TAG_ON_ERROR_CODE errorCode = 3231 NSERR_AS_TURNING_TAGGING_OFF_CSRF_TAG_ON_ERROR_MESSAGE string = "Must set CSRF tagging check to 'none' before disabling form tagging." NSERR_AS_TURNING_CSRF_TAG_ON_TAGGING_OFF_ERROR_CODE errorCode = 3232 NSERR_AS_TURNING_CSRF_TAG_ON_TAGGING_OFF_ERROR_MESSAGE string = "Form tagging must be enabled before turning on CSRF tag checks." NSERR_AS_IMPORT_LIMIT_LESS_THAN_IMPORT_DIR_SIZE_ERROR_CODE errorCode = 3233 NSERR_AS_IMPORT_LIMIT_LESS_THAN_IMPORT_DIR_SIZE_ERROR_MESSAGE string = "Import limit should be greater than the current total imported objects size." NSERR_AS_UNSUPPORTED_IMPORT_PROTOCOL_ERROR_CODE errorCode = 3234 NSERR_AS_UNSUPPORTED_IMPORT_PROTOCOL_ERROR_MESSAGE string = "Unsupported import source protocol. Supported protocols are http, https and ftp" NSERR_AS_UNSUPPORTED_EXPORT_PROTOCOL_ERROR_CODE errorCode = 3235 NSERR_AS_UNSUPPORTED_EXPORT_PROTOCOL_ERROR_MESSAGE string = "Unsupported export target protocol. Supported protocols are http and https" NSERR_AS_EXPORT_FAILED_ERROR_CODE errorCode = 3236 NSERR_AS_EXPORT_FAILED_ERROR_MESSAGE string = "Export failed. Check /var/log/ns.log for details." NSERR_AS_BAD_LOCAL_FILE_ERROR_CODE errorCode = 3237 NSERR_AS_BAD_LOCAL_FILE_ERROR_MESSAGE string = "Local URI cannot be empty and should not contain ./en-us/adc-nitro-api/current-release/error-messages/ or ? or #" NSERR_AS_INVALID_REGEX_CUSTOM_OBJECT_ERROR_CODE errorCode = 3238 NSERR_AS_INVALID_REGEX_CUSTOM_OBJECT_ERROR_MESSAGE string = "Invalid regular expression in custom object. Reverting to default settings." NSERR_AS_BUILTIN_INVALID_OP_ERROR_CODE errorCode = 3239 NSERR_AS_BUILTIN_INVALID_OP_ERROR_MESSAGE string = "Invalid operation for built-in profile" NSERR_AS_INVALID_ADV_POLICY_STATE_ERROR_CODE errorCode = 3240 NSERR_AS_INVALID_ADV_POLICY_STATE_ERROR_MESSAGE string = "Cannot bind advanced policy with state set to DISABLED" NSERR_AS_BUILTIN_NAMES_IN_CONF_ERROR_CODE errorCode = 3241 NSERR_AS_BUILTIN_NAMES_IN_CONF_ERROR_MESSAGE string = "Entities with names reserved for built-in profiles have been discarded" NSERR_AS_DEFAULT_PROFILE_IS_BYPASS_ERROR_CODE errorCode = 3242 NSERR_AS_DEFAULT_PROFILE_IS_BYPASS_ERROR_MESSAGE string = "The default profile is set to bypass traffic. It can be set using the 'set appfw settings' command." NSERR_AS_NO_LEARN_DENYURL_ERROR_CODE errorCode = 3243 NSERR_AS_NO_LEARN_DENYURL_ERROR_MESSAGE string = "Learn is not supported as a denyURLAction." NSERR_AS_INVALID_XML_FILE_SIZE_ERROR_CODE errorCode = 3244 NSERR_AS_INVALID_XML_FILE_SIZE_ERROR_MESSAGE string = "Invalid configuration: xmlMinFileSize / xmlMaxFileSize can not be less than 4 or greater than 1000000000." NSERR_AS_NO_LEARN_BUFFEROVERFLOW_ERROR_CODE errorCode = 3246 NSERR_AS_NO_LEARN_BUFFEROVERFLOW_ERROR_MESSAGE string = "Learn is not supported as a bufferOvewflowAction." NSERR_AS_NO_LEARN_XML_FORMAT_ERROR_CODE errorCode = 3247 NSERR_AS_NO_LEARN_XML_FORMAT_ERROR_MESSAGE string = "Learn is not supported as an XMLFormatAction." NSERR_AS_NO_LEARN_XML_SQLINJECTION_ERROR_CODE errorCode = 3251 NSERR_AS_NO_LEARN_XML_SQLINJECTION_ERROR_MESSAGE string = "Learn is not supported as an XMLSQLInjectionAction." NSERR_AS_BAD_ACTION_MULTIPLE_HEADER_ERROR_CODE errorCode = 3252 NSERR_AS_BAD_ACTION_MULTIPLE_HEADER_ERROR_MESSAGE string = "" /* 132-byte string literal not displayed */ NSERR_AS_NO_LEARN_XML_MSGVAL_ERROR_CODE errorCode = 3253 NSERR_AS_NO_LEARN_XML_MSGVAL_ERROR_MESSAGE string = "Learn is not supported as an XMLValidationAction." NSERR_AS_NO_LEARN_XML_SOAP_FAULT_ERROR_CODE errorCode = 3254 NSERR_AS_NO_LEARN_XML_SOAP_FAULT_ERROR_MESSAGE string = "Learn is not supported as an XMLSOAPFaultAction." NSERR_AS_IMPORT_INTERNAL_ERROR_ERROR_CODE errorCode = 3255 NSERR_AS_IMPORT_INTERNAL_ERROR_ERROR_MESSAGE string = "Internal error while importing resource." NSERR_AS_NETSVC_CONN_FAILED_ERROR_CODE errorCode = 3256 NSERR_AS_NETSVC_CONN_FAILED_ERROR_MESSAGE string = "Critical internal error. please retry after some time." NSERR_AS_VALIDATION_FAILED_ERROR_CODE errorCode = 3257 NSERR_AS_VALIDATION_FAILED_ERROR_MESSAGE string = "Problem validating Imported object against specification. For more details see /var/log/ns.log file." NSERR_AS_CKI_TRANSFORM_DISABLED_ERROR_CODE errorCode = 3258 NSERR_AS_CKI_TRANSFORM_DISABLED_ERROR_MESSAGE string = "This setting will not take effect until cookieTransforms is turned ON." NSERR_AS_NOXMLXSS_ERROR_CODE errorCode = 3259 NSERR_AS_NOXMLXSS_ERROR_MESSAGE string = "No such XMLXSS check" NSERR_AS_EXIST_XMLXSS_ERROR_CODE errorCode = 3260 NSERR_AS_EXIST_XMLXSS_ERROR_MESSAGE string = "The XMLXSS check is already in use" NSERR_AS_NOXMLSQL_ERROR_CODE errorCode = 3261 NSERR_AS_NOXMLSQL_ERROR_MESSAGE string = "No such XMLSQLInjection check" NSERR_AS_EXIST_XMLSQL_ERROR_CODE errorCode = 3262 NSERR_AS_EXIST_XMLSQL_ERROR_MESSAGE string = "The XMLSQLInjection check is already in use" NSERR_AS_NO_ENDTAG_ERROR_CODE errorCode = 3263 NSERR_AS_NO_ENDTAG_ERROR_MESSAGE string = "Missing end tag in the imported signature file." NSERR_AS_SIG_INVALID_RULEID_ERROR_CODE errorCode = 3264 NSERR_AS_SIG_INVALID_RULEID_ERROR_MESSAGE string = "Invalid rule id in imported signature. Rule id must be between 1 and 2, 147, 483, 647." NSERR_AS_SIG_INVALID_RULE_VERSION_ERROR_CODE errorCode = 3265 NSERR_AS_SIG_INVALID_RULE_VERSION_ERROR_MESSAGE string = "Invalid version in imported signature." NSERR_AS_SIG_PARSE_ERROR_ERROR_CODE errorCode = 3266 NSERR_AS_SIG_PARSE_ERROR_ERROR_MESSAGE string = "Error parsing imported signatures." NSERR_AS_SIG_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3267 NSERR_AS_SIG_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signatures have invalid attributes" NSERR_AS_SIG_MULTIPLE_LOCATIONS_ERROR_CODE errorCode = 3268 NSERR_AS_SIG_MULTIPLE_LOCATIONS_ERROR_MESSAGE string = "Imported signature patterns has multiple locations" NSERR_AS_SIG_INVALID_STATE_ERROR_CODE errorCode = 3269 NSERR_AS_SIG_INVALID_STATE_ERROR_MESSAGE string = "Error parsing imported signatures. Invalid parse state." NSERR_AS_CKI_ENCRYPT_METHOD_IS_NONE_ERROR_CODE errorCode = 3270 NSERR_AS_CKI_ENCRYPT_METHOD_IS_NONE_ERROR_MESSAGE string = "For security purposes, please set the NS encryptions parameter using the \"set ns encryptionParams\" command." NSERR_AS_UPDATE_FAILED_ERROR_CODE errorCode = 3271 NSERR_AS_UPDATE_FAILED_ERROR_MESSAGE string = "Updating the resource failed" NSERR_AS_OBJECT_NOT_USED_ERROR_CODE errorCode = 3272 NSERR_AS_OBJECT_NOT_USED_ERROR_MESSAGE string = "The specified object is not used" NSERR_AS_SIG_MULTIPLE_URLS_ERROR_CODE errorCode = 3273 NSERR_AS_SIG_MULTIPLE_URLS_ERROR_MESSAGE string = "Imported signature pattern location has multiple URLs" NSERR_AS_SIG_MULTIPLE_FIELD_NAMES_ERROR_CODE errorCode = 3274 NSERR_AS_SIG_MULTIPLE_FIELD_NAMES_ERROR_MESSAGE string = "Imported signature pattern location has multiple field names" NSERR_AS_SIG_NO_FASTMATCH_ERROR_CODE errorCode = 3275 NSERR_AS_SIG_NO_FASTMATCH_ERROR_MESSAGE string = "A signature rule has no fastmatch pattern. See log for details." NSERR_AS_PE_POLICY_NOTSUPPORTED_ERROR_CODE errorCode = 3276 NSERR_AS_PE_POLICY_NOTSUPPORTED_ERROR_MESSAGE string = "Not supported for classic policy." NSERR_AS_SIG_MULTIPLE_CREDIT_CARD_RULES_ERROR_CODE errorCode = 3278 NSERR_AS_SIG_MULTIPLE_CREDIT_CARD_RULES_ERROR_MESSAGE string = "Imported signatures has multiple credit card patterns in Rule." NSERR_AS_TURNING_TAGGING_OFF_SESSIONLESS_FFC_ON_ERROR_CODE errorCode = 3279 NSERR_AS_TURNING_TAGGING_OFF_SESSIONLESS_FFC_ON_ERROR_MESSAGE string = "Must disable sessionless field consistency checks before disabling form tagging." NSERR_AS_TURNING_SESSIONLESS_FFC_ON_TAGGING_OFF_ERROR_CODE errorCode = 3280 NSERR_AS_TURNING_SESSIONLESS_FFC_ON_TAGGING_OFF_ERROR_MESSAGE string = "Form tagging must be enabled before enabling sessionless field consistency checks." NSERR_AS_SIG_INVALID_CREDIT_CARD_PATTERN_ERROR_CODE errorCode = 3281 NSERR_AS_SIG_INVALID_CREDIT_CARD_PATTERN_ERROR_MESSAGE string = "Imported Signatures has invalid Credit Card pattern." NSERR_AS_SIG_INVALID_SAFE_OBJECT_PATTERN_ERROR_CODE errorCode = 3282 NSERR_AS_SIG_INVALID_SAFE_OBJECT_PATTERN_ERROR_MESSAGE string = "Imported Signatures has invalid Safe Object pattern." NSERR_AS_IMPORT_INVALID_TAR_ARCHIVE_ERROR_CODE errorCode = 3283 NSERR_AS_IMPORT_INVALID_TAR_ARCHIVE_ERROR_MESSAGE string = "Imported archive is invalid. Please provide valid tar.gz archive." NSERR_AS_SQLINJECTION_KEYWORD_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3284 NSERR_AS_SQLINJECTION_KEYWORD_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signatures has invalid SQL injection attributes." NSERR_AS_SPLSTRING_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3285 NSERR_AS_SPLSTRING_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signatures has invalid special string attributes." NSERR_AS_SQLINJECTION_KEYWORD_LITERAL_EXCEED_MAXLEN_ERROR_CODE errorCode = 3286 NSERR_AS_SQLINJECTION_KEYWORD_LITERAL_EXCEED_MAXLEN_ERROR_MESSAGE string = "Maximum allowed length for type \"LITERAL\" for keyword is 255." NSERR_AS_SPLSTRING_LITERAL_EXCEED_MAXLEN_ERROR_CODE errorCode = 3287 NSERR_AS_SPLSTRING_LITERAL_EXCEED_MAXLEN_ERROR_MESSAGE string = "Maximum allowed length for type \"LITERAL\" for special string is 255." NSERR_AS_XSLT_TRANFORM_LATEST_ERROR_CODE errorCode = 3288 NSERR_AS_XSLT_TRANFORM_LATEST_ERROR_MESSAGE string = "Problem converting imported signature to the latest version. For more details see /var/log/ns.log file." NSERR_AS_XSLT_TRANFORM_USER_ERROR_CODE errorCode = 3289 NSERR_AS_XSLT_TRANFORM_USER_ERROR_MESSAGE string = "Problem converting imported signature with the given xslt file. For more details see /var/log/ns.log file." NSERR_AS_SIG_RESP_BODY_EXPR_ERROR_ERROR_CODE errorCode = 3290 NSERR_AS_SIG_RESP_BODY_EXPR_ERROR_ERROR_MESSAGE string = "Match type EXPRESSION is not supported in response rules." NSERR_AS_NOTRUSTEDLEARNINGCLIENT_ERROR_CODE errorCode = 3291 NSERR_AS_NOTRUSTEDLEARNINGCLIENT_ERROR_MESSAGE string = "No Such Trusted Learning Client." NSERR_AS_EXIST_TRUSTEDLEARNINGCLIENT_ERROR_CODE errorCode = 3292 NSERR_AS_EXIST_TRUSTEDLEARNINGCLIENT_ERROR_MESSAGE string = "The Trusted Learning Client is already in use." NSERR_AS_POLICY_ALLOWED_BINDPOINT_NONE_ERROR_CODE errorCode = 3293 NSERR_AS_POLICY_ALLOWED_BINDPOINT_NONE_ERROR_MESSAGE string = "Only bindpoint none is allowed for this policy." NSERR_AS_XSS_DENIED_PATTERN_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3294 NSERR_AS_XSS_DENIED_PATTERN_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signatures has invalid denied pattern attribute." NSERR_AS_XSS_DENIED_PATTERN_EXCEED_MAXLEN_ERROR_CODE errorCode = 3295 NSERR_AS_XSS_DENIED_PATTERN_EXCEED_MAXLEN_ERROR_MESSAGE string = "Maximum allowed length for type \"LITERAL\" for denied pattern is 255." NSERR_AS_XSS_ALLOWED_PATTERN_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3296 NSERR_AS_XSS_ALLOWED_PATTERN_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signatures has invalid allowed pattern attribute." NSERR_AS_XSS_ALLOWED_PATTERN_EXCEED_MAXLEN_ERROR_CODE errorCode = 3297 NSERR_AS_XSS_ALLOWED_PATTERN_EXCEED_MAXLEN_ERROR_MESSAGE string = "Maximum allowed length for type \"LITERAL\" for allowed pattern is 255." NSERR_AS_SIG_MULTIPLE_SUB_LOCATIONS_ERROR_CODE errorCode = 3298 NSERR_AS_SIG_MULTIPLE_SUB_LOCATIONS_ERROR_MESSAGE string = "Imported signature pattern location has multiple sub locations" NSERR_AS_SIG_INTERNAL_ERROR_ERROR_CODE errorCode = 3299 NSERR_AS_SIG_INTERNAL_ERROR_ERROR_MESSAGE string = "Internal error when configuring signatures." NSERR_AS_SIG_URL_TAG_ERROR_ERROR_CODE errorCode = 3300 NSERR_AS_SIG_URL_TAG_ERROR_ERROR_MESSAGE string = "Signature file has tag in an improper location." NSERR_AS_SIG_HEADER_NAME_TAG_ERROR_ERROR_CODE errorCode = 3301 NSERR_AS_SIG_HEADER_NAME_TAG_ERROR_ERROR_MESSAGE string = "Signature file has tag in an improper location. See /var/log/ns.log for more details." NSERR_AS_SIG_COOKIE_NAME_TAG_ERROR_ERROR_CODE errorCode = 3302 NSERR_AS_SIG_COOKIE_NAME_TAG_ERROR_ERROR_MESSAGE string = "Signature file has tag in an improper location. See /var/log/ns.log for more details." NSERR_AS_SIG_FIELD_NAME_TAG_ERROR_ERROR_CODE errorCode = 3303 NSERR_AS_SIG_FIELD_NAME_TAG_ERROR_ERROR_MESSAGE string = "Signature file has tag in an improper location." NSERR_AS_SIG_PATTERN_ADD_ERROR_ERROR_CODE errorCode = 3304 NSERR_AS_SIG_PATTERN_ADD_ERROR_ERROR_MESSAGE string = "Problem constructing signature pattern from file" NSERR_AS_SIG_NON_LITERAL_FASTMATCH_ERROR_CODE errorCode = 3305 NSERR_AS_SIG_NON_LITERAL_FASTMATCH_ERROR_MESSAGE string = "Signature file has \"fastmatch\" on a non-literal match. See /var/log/ns.log for more details" NSERR_AS_SIG_NEGATED_LITERAL_FASTMATCH_ERROR_CODE errorCode = 3306 NSERR_AS_SIG_NEGATED_LITERAL_FASTMATCH_ERROR_MESSAGE string = "Signature file has \"fastmatch\" on a negated literal match." NSERR_AS_SIG_MEM_ALLOC_FAILED_ERROR_CODE errorCode = 3307 NSERR_AS_SIG_MEM_ALLOC_FAILED_ERROR_MESSAGE string = "Memory allocation failed while loading signatures." NSERR_AS_SIG_TOO_MANY_PATTERNS_ERROR_CODE errorCode = 3308 NSERR_AS_SIG_TOO_MANY_PATTERNS_ERROR_MESSAGE string = "Signature file has a rule with too many patterns." NSERR_AS_SIG_LITERAL_HEX_PARSE_ERROR_ERROR_CODE errorCode = 3309 NSERR_AS_SIG_LITERAL_HEX_PARSE_ERROR_ERROR_MESSAGE string = "Signature file has a pattern with hex byte syntax error." NSERR_AS_SIG_PCRE_COMPILE_ERROR_ERROR_CODE errorCode = 3310 NSERR_AS_SIG_PCRE_COMPILE_ERROR_ERROR_MESSAGE string = "Signature file has an invalid PCRE." NSERR_INVALID_SIGNATURE_NAME_ERROR_CODE errorCode = 3311 NSERR_INVALID_SIGNATURE_NAME_ERROR_MESSAGE string = "" /* 136-byte string literal not displayed */ NSERR_AS_SIGNATURE_MERGE_ERROR_CODE errorCode = 3312 NSERR_AS_SIGNATURE_MERGE_ERROR_MESSAGE string = "Problem merging imported signature rules with the existing signature rules. For more details see /var/log/ns.log file." NSERR_AS_RECORDER_MEM_ALLOC_ERROR_ERROR_CODE errorCode = 3313 NSERR_AS_RECORDER_MEM_ALLOC_ERROR_ERROR_MESSAGE string = "Cannot allocate memory for requested recorder size." NSERR_AS_SIG_INVALID_FILE_VERSION_ERROR_CODE errorCode = 3314 NSERR_AS_SIG_INVALID_FILE_VERSION_ERROR_MESSAGE string = "Signature file has an invalid SignaturesFile 'version' value." NSERR_AS_AUTO_SIGNATURE_UPDATED_FAILED_ERROR_CODE errorCode = 3315 NSERR_AS_AUTO_SIGNATURE_UPDATED_FAILED_ERROR_MESSAGE string = "Updating of signatures failed. For more details see /var/log/ns.log file." NSERR_AS_NO_CONTENT_TYPE_ERROR_CODE errorCode = 3316 NSERR_AS_NO_CONTENT_TYPE_ERROR_MESSAGE string = "No Such content-type." NSERR_AS_EXIST_LOG_EXPRESSION_ERROR_CODE errorCode = 3317 NSERR_AS_EXIST_LOG_EXPRESSION_ERROR_MESSAGE string = "LogExpression is already in use." NSERR_AS_POLICY_SET_NOTALLOWED_ERROR_CODE errorCode = 3318 NSERR_AS_POLICY_SET_NOTALLOWED_ERROR_MESSAGE string = "Set disallowed as advance profile can only be associated to policy that is either not bound or bound to spotted vservers." NSERR_AS_SIGNATURE_URL_NOT_ACCESSIBLE_ERROR_CODE errorCode = 3319 NSERR_AS_SIGNATURE_URL_NOT_ACCESSIBLE_ERROR_MESSAGE string = "Signature URL set in 'set appfw settings' is not accessible. Please check the DNS NameServer/Route settings and try again." NSERR_AS_NODEGROUP_UNBIND_VSERVER_NOTALLOWED_ERROR_CODE errorCode = 3320 NSERR_AS_NODEGROUP_UNBIND_VSERVER_NOTALLOWED_ERROR_MESSAGE string = "Unbinding vserver from nodegroup disallowed as vserver has appfw policy bound to it." NSERR_AS_NODEGROUP_BIND_NODE_NOTALLOWED_ERROR_CODE errorCode = 3321 NSERR_AS_NODEGROUP_BIND_NODE_NOTALLOWED_ERROR_MESSAGE string = "Nodegroup could be associated with only one node if it has a vserver that has appfw policy bound to it." NSERR_AS_BUILT_IN_OBJECT_ERROR_ERROR_CODE errorCode = 3322 NSERR_AS_BUILT_IN_OBJECT_ERROR_ERROR_MESSAGE string = "Cannot add or remove built in objects." NSERR_AS_SIGNATURE_VALIDATE_FAILED_ERROR_CODE errorCode = 3323 NSERR_AS_SIGNATURE_VALIDATE_FAILED_ERROR_MESSAGE string = "Imported signature is failed to validate against sha1 file. For more details see /var/log/ns.log file." NSERR_AS_BAD_ACTION_INFER_CONTENT_TYPE_XML_PAYLOAD_ERROR_CODE errorCode = 3324 NSERR_AS_BAD_ACTION_INFER_CONTENT_TYPE_XML_PAYLOAD_ERROR_MESSAGE string = "Invalid XML Infer Content-Type action." NSERR_AS_INVALID_PARAMETER_ERROR_CODE errorCode = 3325 NSERR_AS_INVALID_PARAMETER_ERROR_MESSAGE string = "Sha1 parameter is allowed to use only with Import Appfw Signatures command" NSERR_AS_LEARNING_DB_ERROR_ERROR_CODE errorCode = 3326 NSERR_AS_LEARNING_DB_ERROR_ERROR_MESSAGE string = "Learning database is either corrupt or does not exist." NSERR_AS_VALIDATION_SIGNATURE_MAPPING_FAILED_ERROR_CODE errorCode = 3327 NSERR_AS_VALIDATION_SIGNATURE_MAPPING_FAILED_ERROR_MESSAGE string = "SignatureMapping.xml is invalid. Failed to validate SignatureMapping.xml against its schema file." NSERR_AS_EXIST_CONTENT_TYPE_ERROR_CODE errorCode = 3332 NSERR_AS_EXIST_CONTENT_TYPE_ERROR_MESSAGE string = "Content-type is already in use." NSERR_AS_SIG_MISSING_MAX_MATCH_LEN_ERROR_CODE errorCode = 3333 NSERR_AS_SIG_MISSING_MAX_MATCH_LEN_ERROR_MESSAGE string = "Signature file has a rule with a response body pattern without the required maxMatchLength attribute" NSERR_AS_NOT_ALLOWED_CONTENT_TYPE_ERROR_CODE errorCode = 3334 NSERR_AS_NOT_ALLOWED_CONTENT_TYPE_ERROR_MESSAGE string = "" /* 181-byte string literal not displayed */ NSERR_AS_TOTAL_IMPORT_SIZE_LIMIT_EXCEEDED_ERROR_CODE errorCode = 3335 NSERR_AS_TOTAL_IMPORT_SIZE_LIMIT_EXCEEDED_ERROR_MESSAGE string = "" /* 152-byte string literal not displayed */ NSERR_AS_MAX_TOTAL_IMPORT_LIMIT_EXCEEDED_ERROR_CODE errorCode = 3336 NSERR_AS_MAX_TOTAL_IMPORT_LIMIT_EXCEEDED_ERROR_MESSAGE string = "Update operation of this import object exceeded maximum total import size limit. Please remove the object." NSERR_INVALID_DEFAULT_SIGNATURE_NAME_ERROR_CODE errorCode = 3337 NSERR_INVALID_DEFAULT_SIGNATURE_NAME_ERROR_MESSAGE string = "Signature name must only be '*Default Signatures' or '*Xpath Injection Patterns'" NSERR_AS_SIG_OFFSET_GTE_DEPTH_ERROR_CODE errorCode = 3338 NSERR_AS_SIG_OFFSET_GTE_DEPTH_ERROR_MESSAGE string = "" /* 133-byte string literal not displayed */ NSERR_AS_SQLWILDCHAR_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3339 NSERR_AS_SQLWILDCHAR_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signatures has invalid wild char attributes." NSERR_AS_WILDCHAR_LITERAL_EXCEED_MAXLEN_ERROR_CODE errorCode = 3340 NSERR_AS_WILDCHAR_LITERAL_EXCEED_MAXLEN_ERROR_MESSAGE string = "Maximum allowed length for type \"LITERAL\" for wild char exceeded." NSERR_AS_SIG_EXCLAMATION_LITERAL_ERROR_CODE errorCode = 3341 NSERR_AS_SIG_EXCLAMATION_LITERAL_ERROR_MESSAGE string = "Cannot have an exclamation point alone as a literal" NSERR_AS_REMOVE_FAILED_RENAME_FAILED_ERROR_CODE errorCode = 3342 NSERR_AS_REMOVE_FAILED_RENAME_FAILED_ERROR_MESSAGE string = "Problem in removing resource - file rename failed" NSERR_AS_ARCHIVE_PROFILE_FAILED_ERROR_CODE errorCode = 3343 NSERR_AS_ARCHIVE_PROFILE_FAILED_ERROR_MESSAGE string = "Some commands failed during archive profile. Please see /var/log/ns.log for more details." NSERR_AS_RESTORE_PROFILE_FAILED_ERROR_CODE errorCode = 3345 NSERR_AS_RESTORE_PROFILE_FAILED_ERROR_MESSAGE string = "Some commands failed during restore profile. Please see /var/log/ns.log for more details." NSERR_AS_EMPTY_CONTENT_TYPE_ERROR_CODE errorCode = 3352 NSERR_AS_EMPTY_CONTENT_TYPE_ERROR_MESSAGE string = "Empty content type" NSERR_AS_SIG_FASTMATCH_BAD_LOCATION_ERROR_CODE errorCode = 3359 NSERR_AS_SIG_FASTMATCH_BAD_LOCATION_ERROR_MESSAGE string = "A signature rule has fastmatch pattern in a bad location. See log for details." NSERR_AS_SESSIONLESS_FFC_POST_ONLY_ERROR_CODE errorCode = 3360 NSERR_AS_SESSIONLESS_FFC_POST_ONLY_ERROR_MESSAGE string = "'POST ONLY' is same as option 'ON' in streaming" NSERR_AS_TURNING_TAGGING_OFF_FFC_ON_ERROR_CODE errorCode = 3361 NSERR_AS_TURNING_TAGGING_OFF_FFC_ON_ERROR_MESSAGE string = "Form-tagging cannot be disabled and remains enabled as long as field consistency check is enabled." NSERR_AS_NO_CREDIT_CARD_NUMBER_ERROR_CODE errorCode = 3363 NSERR_AS_NO_CREDIT_CARD_NUMBER_ERROR_MESSAGE string = "No such credit card number." NSERR_AS_EXIST_CREDIT_CARD_NUMBER_ERROR_CODE errorCode = 3364 NSERR_AS_EXIST_CREDIT_CARD_NUMBER_ERROR_MESSAGE string = "Credit card number is already in use." NSERR_AS_NO_SUCH_IMPORTED_OBJECT_ERROR_CODE errorCode = 3365 NSERR_AS_NO_SUCH_IMPORTED_OBJECT_ERROR_MESSAGE string = "No such imported object." NSERR_AS_LEARNING_SQL_ERROR_ERROR_CODE errorCode = 3366 NSERR_AS_LEARNING_SQL_ERROR_ERROR_MESSAGE string = "SQL Error when performing learning operation" NSERR_AS_IMPORT_FILE_IS_EMPTY_ERROR_CODE errorCode = 3367 NSERR_AS_IMPORT_FILE_IS_EMPTY_ERROR_MESSAGE string = "Imported file is empty" NSERR_AS_IMPORT_OVERWRITE_OPTION_NOT_SUPPORTED_ERROR_CODE errorCode = 3368 NSERR_AS_IMPORT_OVERWRITE_OPTION_NOT_SUPPORTED_ERROR_MESSAGE string = "Overwrite option is not supported." NSERR_AS_BAD_INSPECT_CONTENT_TYPE_ERROR_CODE errorCode = 3369 NSERR_AS_BAD_INSPECT_CONTENT_TYPE_ERROR_MESSAGE string = "Invalid inspection content type" NSERR_AS_GEO_LOCATION_LOGGING_ENABLED_ERROR_CODE errorCode = 3376 NSERR_AS_GEO_LOCATION_LOGGING_ENABLED_ERROR_MESSAGE string = "GeoLocationLogging only works when CEFLogging is enabled" NSERR_AS_NO_SUCH_WSDL_OBJECT_ERROR_CODE errorCode = 3377 NSERR_AS_NO_SUCH_WSDL_OBJECT_ERROR_MESSAGE string = "WSDL does not exist" NSERR_AS_NO_SUCH_XMLSCHEMA_OBJECT_ERROR_CODE errorCode = 3378 NSERR_AS_NO_SUCH_XMLSCHEMA_OBJECT_ERROR_MESSAGE string = "XMLSchema does not exist" NSERR_AS_NO_SUCH_XMLERRORPAGE_OBJECT_ERROR_CODE errorCode = 3379 NSERR_AS_NO_SUCH_XMLERRORPAGE_OBJECT_ERROR_MESSAGE string = "XMLErrorPage does not exist" NSERR_AS_NO_SUCH_SIGNATURE_OBJECT_ERROR_CODE errorCode = 3380 NSERR_AS_NO_SUCH_SIGNATURE_OBJECT_ERROR_MESSAGE string = "Signature does not exist" NSERR_AS_NO_SUCH_ARCHIVE_OBJECT_ERROR_CODE errorCode = 3381 NSERR_AS_NO_SUCH_ARCHIVE_OBJECT_ERROR_MESSAGE string = "Archive does not exist" NSERR_AS_NO_SUCH_HTMLERRORPAGE_OBJECT_ERROR_CODE errorCode = 3382 NSERR_AS_NO_SUCH_HTMLERRORPAGE_OBJECT_ERROR_MESSAGE string = "HTMLErrorPage does not exist" NSERR_AS_XSS_ALLOWED_TAG_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3393 NSERR_AS_XSS_ALLOWED_TAG_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Xss allowed Tag has invalid attribute" NSERR_AS_XSS_ALLOWED_ATTR_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3394 NSERR_AS_XSS_ALLOWED_ATTR_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Xss allowed attribute has invalid attribute" NSERR_AS_SQL_TRANSFORM_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3395 NSERR_AS_SQL_TRANSFORM_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "SQL transform has invalid attribute" NSERR_AS_SRC_NOT_DEFAULT_ERROR_CODE errorCode = 3403 NSERR_AS_SRC_NOT_DEFAULT_ERROR_MESSAGE string = "" NSERR_AS_SRC_INVALID_ERROR_CODE errorCode = 3404 NSERR_AS_SRC_INVALID_ERROR_MESSAGE string = "Invalid source" NSERR_AS_IMPORT_NOT_DEFAULT_WITH_SHA1_ERROR_CODE errorCode = 3405 NSERR_AS_IMPORT_NOT_DEFAULT_WITH_SHA1_ERROR_MESSAGE string = "Name should be *Default Signatures when -sha1 is specified" NSERR_AS_WAR_UPDATE_FOLLOWED_BY_IMPORT_ERROR_CODE errorCode = 3407 NSERR_AS_WAR_UPDATE_FOLLOWED_BY_IMPORT_ERROR_MESSAGE string = "Execute update command to push the object to packet engine so that the imported object is applied." NSERR_AS_CUSTOM_SETTINGS_SQL_MULTIPLE_INJECTION_TYPE_ERROR_CODE errorCode = 3423 NSERR_AS_CUSTOM_SETTINGS_SQL_MULTIPLE_INJECTION_TYPE_ERROR_MESSAGE string = "Failed to set signature object. Multiple injection tags of sql type are not allowed" NSERR_AS_BAD_CCARD_FLAGS_ERROR_CODE errorCode = 3439 NSERR_AS_BAD_CCARD_FLAGS_ERROR_MESSAGE string = "Invalid Credit Card Value" NSERR_AS_NO_LOGEXPRESSION_ERROR_CODE errorCode = 3790 NSERR_AS_NO_LOGEXPRESSION_ERROR_MESSAGE string = "No Such Log Expression" NSERR_AS_RFCPROFILE_BAD_ACTION_ERROR_CODE errorCode = 3808 NSERR_AS_RFCPROFILE_BAD_ACTION_ERROR_MESSAGE string = "Bad rfc profile action" NSERR_AS_RFCPROFILE_ERROR_CODE errorCode = 3809 NSERR_AS_RFCPROFILE_ERROR_MESSAGE string = "Invalid rfc profile action" NSERR_AS_BAD_MALFORMED_REQ_ACTION_ERROR_CODE errorCode = 3814 NSERR_AS_BAD_MALFORMED_REQ_ACTION_ERROR_MESSAGE string = "Invalid malformed request Action" NSERR_AS_SIG_INVALID_RULE_YEAR_ERROR_CODE errorCode = 3822 NSERR_AS_SIG_INVALID_RULE_YEAR_ERROR_MESSAGE string = "Invalid year attribute value in imported signature." NSERR_AS_SIG_INVALID_CPU_USAGE_ERROR_CODE errorCode = 2442 NSERR_AS_SIG_INVALID_CPU_USAGE_ERROR_MESSAGE string = "Invalid cpu usage attribute value in imported signature." NSERR_AS_SIG_INVALID_SEVERITY_ERROR_CODE errorCode = 2443 NSERR_AS_SIG_INVALID_SEVERITY_ERROR_MESSAGE string = "Invalid severity attribute value in imported signature." NSERR_AS_NO_JSON_XSS_ERROR_CODE errorCode = 2554 NSERR_AS_NO_JSON_XSS_ERROR_MESSAGE string = "No such JSON XSS check" NSERR_AS_EXIST_JSON_XSS_ERROR_CODE errorCode = 2549 NSERR_AS_EXIST_JSON_XSS_ERROR_MESSAGE string = "The JSON XSS check is already in use" NSERR_AS_NO_JSON_SQL_ERROR_CODE errorCode = 2553 NSERR_AS_NO_JSON_SQL_ERROR_MESSAGE string = "No such JSON SQL check" NSERR_AS_EXIST_JSON_SQL_ERROR_CODE errorCode = 3582 NSERR_AS_EXIST_JSON_SQL_ERROR_MESSAGE string = "The JSON SQL check is already in use" NSERR_AS_BAD_ACTION_JSON_DOS_ERROR_CODE errorCode = 3447 NSERR_AS_BAD_ACTION_JSON_DOS_ERROR_MESSAGE string = "Invalid JSON Dos Action" NSERR_AS_EXIST_JSON_DOS_URL_ERROR_CODE errorCode = 3448 NSERR_AS_EXIST_JSON_DOS_URL_ERROR_MESSAGE string = "The JSON DoS URL check is already in use" NSERR_AS_JSON_URL_NOT_SUPPORTED_ERROR_CODE errorCode = 3449 NSERR_AS_JSON_URL_NOT_SUPPORTED_ERROR_MESSAGE string = "Only .* is supported for JSON checks" NSERR_AS_NO_JSON_DOS_URL_ERROR_CODE errorCode = 3450 NSERR_AS_NO_JSON_DOS_URL_ERROR_MESSAGE string = "No such URL exist for JSON DOS check." NSERR_AS_PROFILE_CHANGE_JSON_ERROR_CODE errorCode = 3451 NSERR_AS_PROFILE_CHANGE_JSON_ERROR_MESSAGE string = "JSON checks will not be applicable when profile type is not JSON" NSERR_AS_BAD_ACTION_JSON_SQL_ERROR_CODE errorCode = 3452 NSERR_AS_BAD_ACTION_JSON_SQL_ERROR_MESSAGE string = "Invalid JSON SQLInjection Action" NSERR_AS_BAD_ACTION_JSON_XSS_ERROR_CODE errorCode = 3453 NSERR_AS_BAD_ACTION_JSON_XSS_ERROR_MESSAGE string = "Invalid JSON CrossSiteScripting Action" NSERR_AS_NO_SUCH_JSONERRORPAGE_OBJECT_ERROR_CODE errorCode = 3501 NSERR_AS_NO_SUCH_JSONERRORPAGE_OBJECT_ERROR_MESSAGE string = "JSONErrorPage does not exist" NSERR_AS_PROFILE_CHANGE_HTML_JSON_ERROR_CODE errorCode = 3500 NSERR_AS_PROFILE_CHANGE_HTML_JSON_ERROR_MESSAGE string = "HTML, JSON checks will not be applicable when profile type is not HTML or JSON respectively" NSERR_AS_PROFILE_CHANGE_HTML_XML_ERROR_CODE errorCode = 3502 NSERR_AS_PROFILE_CHANGE_HTML_XML_ERROR_MESSAGE string = "HTML, XML checks will not be applicable when profile type is not HTML or XML respectively" NSERR_AS_PROFILE_CHANGE_XML_JSON_ERROR_CODE errorCode = 3503 NSERR_AS_PROFILE_CHANGE_XML_JSON_ERROR_MESSAGE string = "XML, JSON checks will not be applicable when profile type is not XML or JSON respectively" NSERR_AS_PROFILE_CHANGE_HTML_XML_JSON_ERROR_CODE errorCode = 3488 NSERR_AS_PROFILE_CHANGE_HTML_XML_JSON_ERROR_MESSAGE string = "HTML, XML, JSON checks will not be applicable when profile type is not HTML, XML or JSON respectively" NSERR_AS_NO_FILEUPLOAD_TYPE_ERROR_CODE errorCode = 3848 NSERR_AS_NO_FILEUPLOAD_TYPE_ERROR_MESSAGE string = "No Such File Upload Type." NSERR_AS_BAD_ACTION_FILEUPLOAD_TYPE_ERROR_CODE errorCode = 361 NSERR_AS_BAD_ACTION_FILEUPLOAD_TYPE_ERROR_MESSAGE string = "Invalid File Upload Types Action" NSERR_AS_DYNAMIC_PROFILING_NOT_SUPPORTED_ERROR_CODE errorCode = 3849 NSERR_AS_DYNAMIC_PROFILING_NOT_SUPPORTED_ERROR_MESSAGE string = "Dynamic Profiling is not supported in cluster mode" NSERR_AS_BAD_ACTION_DYNAMIC_PROFILING_ERROR_CODE errorCode = 3850 NSERR_AS_BAD_ACTION_DYNAMIC_PROFILING_ERROR_MESSAGE string = "Invalid Dynamic Profiling Action." NSERR_AS_INVALID_RESTORE_PROFILE_ERROR_CODE errorCode = 385 NSERR_AS_INVALID_RESTORE_PROFILE_ERROR_MESSAGE string = "Invalid Restore operation. Relaxation rules not enabled for restore." NSERR_AS_INVALID_RESTORE_PROFILE_ACTION_ERROR_CODE errorCode = 386 NSERR_AS_INVALID_RESTORE_PROFILE_ACTION_ERROR_MESSAGE string = "Invalid Restore operation. Overwrite and Augment can't both be specified." NSERR_AS_INVALID_RESTORE_PROFILE_URL_ERROR_CODE errorCode = 387 NSERR_AS_INVALID_RESTORE_PROFILE_URL_ERROR_MESSAGE string = "Invalid Restore operation. Match URL and Replace URL must both be specified if either one is present." NSERR_AS_BAD_ACTION_COOKIE_HIJACKING_ERROR_CODE errorCode = 388 NSERR_AS_BAD_ACTION_COOKIE_HIJACKING_ERROR_MESSAGE string = "Invalid Cookie Hijacking Action" NSERR_AS_SNORT_CONVERT_ERROR_CODE errorCode = 4051 NSERR_AS_SNORT_CONVERT_ERROR_MESSAGE string = "Problem converting snort rules to waf signature file. For more details see /var/log/ns.log file." NSERR_AS_CMDINJECTION_KEYWORD_INVALID_ATTRIBUTE_ERROR_CODE errorCode = 3245 NSERR_AS_CMDINJECTION_KEYWORD_INVALID_ATTRIBUTE_ERROR_MESSAGE string = "Imported signature has invalid Command injection attributes." NSERR_AS_CMD_NOT_EXIST_ERROR_CODE errorCode = 2986 NSERR_AS_CMD_NOT_EXIST_ERROR_MESSAGE string = "Specified command injection relaxation rule does not exist" NSERR_AS_PART_DIR_NOT_FOUND_ERROR_CODE errorCode = 3007 NSERR_AS_PART_DIR_NOT_FOUND_ERROR_MESSAGE string = "Error in getting partition specific directory." NSERR_AS_FAKEACCOUNT_ERROR_CODE errorCode = 390 NSERR_AS_FAKEACCOUNT_ERROR_MESSAGE string = "Fake Account Error" NSERR_AS_CFFIELD_ERROR_CODE errorCode = 391 NSERR_AS_CFFIELD_ERROR_MESSAGE string = "Confidential Field Error" NSERR_AS_BLOCKKEYWORD_ERROR_CODE errorCode = 392 NSERR_AS_BLOCKKEYWORD_ERROR_MESSAGE string = "Block Keyword Error" NSERR_AS_JSON_BLOCKKEYWORD_ERROR_CODE errorCode = 393 NSERR_AS_JSON_BLOCKKEYWORD_ERROR_MESSAGE string = "JSON Block Keyword Error" NSERR_AS_BYPASS_LIST_ERROR_CODE errorCode = 3851 NSERR_AS_BYPASS_LIST_ERROR_MESSAGE string = "Bypass List Error" NSERR_AS_DENY_LIST_ERROR_CODE errorCode = 3852 NSERR_AS_DENY_LIST_ERROR_MESSAGE string = "Deny List Error" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#backup-errors NSERR_BACKUP_CONFINVALID_ERROR_CODE errorCode = 3425 NSERR_BACKUP_CONFINVALID_ERROR_MESSAGE string = "Configuration file is not valid or corrupted." NSERR_BACKUP_CREATEDIR_ERROR_CODE errorCode = 3426 NSERR_BACKUP_CREATEDIR_ERROR_MESSAGE string = "Unable to create directory ." NSERR_BACKUP_MISSING_ERROR_CODE errorCode = 3427 NSERR_BACKUP_MISSING_ERROR_MESSAGE string = "Backup file does not exist." NSERR_BACKUP_CREATETAR_ERROR_CODE errorCode = 3428 NSERR_BACKUP_CREATETAR_ERROR_MESSAGE string = "Unable to create backup tar file." NSERR_BACKUP_CONFMISSING_ERROR_CODE errorCode = 3429 NSERR_BACKUP_CONFMISSING_ERROR_MESSAGE string = "Configuration file not found." NSERR_BACKUP_FILEMISSING_ERROR_CODE errorCode = 3430 NSERR_BACKUP_FILEMISSING_ERROR_MESSAGE string = "Missing filename argument in the input." NSERR_BACKUP_INVALIDFILE_ERROR_CODE errorCode = 3431 NSERR_BACKUP_INVALIDFILE_ERROR_MESSAGE string = "Invalid/Tampered backup file encountered." NSERR_BACKUP_EXTRACTTAR_ERROR_CODE errorCode = 3432 NSERR_BACKUP_EXTRACTTAR_ERROR_MESSAGE string = "Unable to extract backup tar file." NSERR_BACKUP_REMOVE_ERROR_CODE errorCode = 3433 NSERR_BACKUP_REMOVE_ERROR_MESSAGE string = "Unable to remove backup tar file." NSERR_BACKUP_MAXLIMIT_ERROR_CODE errorCode = 3434 NSERR_BACKUP_MAXLIMIT_ERROR_MESSAGE string = "Reached max limit of 50 for backup files. Remove older files to proceed." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#base-errors NSERR_NOTRUNNING_ERROR_CODE errorCode = 256 NSERR_NOTRUNNING_ERROR_MESSAGE string = "NetScaler not running" NSERR_PERM_ERROR_CODE errorCode = 257 NSERR_PERM_ERROR_MESSAGE string = "Operation not permitted" NSERR_NOENT_ERROR_CODE errorCode = 258 NSERR_NOENT_ERROR_MESSAGE string = "No such resource" NSERR_SRCH_ERROR_CODE errorCode = 259 NSERR_SRCH_ERROR_MESSAGE string = "No such process" NSERR_INTR_ERROR_CODE errorCode = 260 NSERR_INTR_ERROR_MESSAGE string = "Interrupted system call" NSERR_IO_ERROR_CODE errorCode = 261 NSERR_IO_ERROR_MESSAGE string = "Input/output error" NSERR_NXIO_ERROR_CODE errorCode = 262 NSERR_NXIO_ERROR_MESSAGE string = "Device not configured" NSERR_2BIG_ERROR_CODE errorCode = 263 NSERR_2BIG_ERROR_MESSAGE string = "Argument list too long" NSERR_NOEXEC_ERROR_CODE errorCode = 264 NSERR_NOEXEC_ERROR_MESSAGE string = "Exec format error" NSERR_BADF_ERROR_CODE errorCode = 265 NSERR_BADF_ERROR_MESSAGE string = "Bad file descriptor" NSERR_CHILD_ERROR_CODE errorCode = 266 NSERR_CHILD_ERROR_MESSAGE string = "No child processes" NSERR_DEADLK_ERROR_CODE errorCode = 267 NSERR_DEADLK_ERROR_MESSAGE string = "Resource deadlock avoided" NSERR_NOMEM_ERROR_CODE errorCode = 268 NSERR_NOMEM_ERROR_MESSAGE string = "Cannot allocate memory" NSERR_ACCES_ERROR_CODE errorCode = 269 NSERR_ACCES_ERROR_MESSAGE string = "Permission denied" NSERR_FAULT_ERROR_CODE errorCode = 270 NSERR_FAULT_ERROR_MESSAGE string = "Bad address" NSERR_NOTBLK_ERROR_CODE errorCode = 271 NSERR_NOTBLK_ERROR_MESSAGE string = "Block device required" NSERR_BUSY_ERROR_CODE errorCode = 272 NSERR_BUSY_ERROR_MESSAGE string = "Device busy" NSERR_EXIST_ERROR_CODE errorCode = 273 NSERR_EXIST_ERROR_MESSAGE string = "Resource already exists" NSERR_XDEV_ERROR_CODE errorCode = 274 NSERR_XDEV_ERROR_MESSAGE string = "Cross-device link" NSERR_NODEV_ERROR_CODE errorCode = 275 NSERR_NODEV_ERROR_MESSAGE string = "Operation not supported by device" NSERR_NOTDIR_ERROR_CODE errorCode = 276 NSERR_NOTDIR_ERROR_MESSAGE string = "Not a directory" NSERR_ISDIR_ERROR_CODE errorCode = 277 NSERR_ISDIR_ERROR_MESSAGE string = "Is a directory" NSERR_INVAL_ERROR_CODE errorCode = 278 NSERR_INVAL_ERROR_MESSAGE string = "Invalid argument" NSERR_NFILE_ERROR_CODE errorCode = 279 NSERR_NFILE_ERROR_MESSAGE string = "Too many open files in system" NSERR_MFILE_ERROR_CODE errorCode = 280 NSERR_MFILE_ERROR_MESSAGE string = "Too many open files" NSERR_NOTTY_ERROR_CODE errorCode = 281 NSERR_NOTTY_ERROR_MESSAGE string = "Inappropriate ioctl for device" NSERR_TXTBSY_ERROR_CODE errorCode = 282 NSERR_TXTBSY_ERROR_MESSAGE string = "Text file busy" NSERR_FBIG_ERROR_CODE errorCode = 283 NSERR_FBIG_ERROR_MESSAGE string = "File too large" NSERR_NOSPACE_ERROR_CODE errorCode = 284 NSERR_NOSPACE_ERROR_MESSAGE string = "No space left on device" NSERR_SPIPE_ERROR_CODE errorCode = 285 NSERR_SPIPE_ERROR_MESSAGE string = "Illegal seek" NSERR_ROFS_ERROR_CODE errorCode = 286 NSERR_ROFS_ERROR_MESSAGE string = "Read-only file system" NSERR_MLINK_ERROR_CODE errorCode = 287 NSERR_MLINK_ERROR_MESSAGE string = "Too many links" NSERR_PIPE_ERROR_CODE errorCode = 288 NSERR_PIPE_ERROR_MESSAGE string = "Broken pipe" NSERR_DOM_ERROR_CODE errorCode = 289 NSERR_DOM_ERROR_MESSAGE string = "Numerical argument out of domain" NSERR_RANGE_ERROR_CODE errorCode = 290 NSERR_RANGE_ERROR_MESSAGE string = "Result too large" NSERR_AGAIN_ERROR_CODE errorCode = 291 NSERR_AGAIN_ERROR_MESSAGE string = "Resource temporarily unavailable" NSERR_INPROGRESS_ERROR_CODE errorCode = 292 NSERR_INPROGRESS_ERROR_MESSAGE string = "Operation now in progress" NSERR_ALREADY_ERROR_CODE errorCode = 293 NSERR_ALREADY_ERROR_MESSAGE string = "Operation already in progress" NSERR_NOTSOCK_ERROR_CODE errorCode = 294 NSERR_NOTSOCK_ERROR_MESSAGE string = "Socket operation on non-socket" NSERR_DESTADDRREQ_ERROR_CODE errorCode = 295 NSERR_DESTADDRREQ_ERROR_MESSAGE string = "Destination address required" NSERR_MSGSIZE_ERROR_CODE errorCode = 296 NSERR_MSGSIZE_ERROR_MESSAGE string = "Message too long" NSERR_PROTOTYPE_ERROR_CODE errorCode = 297 NSERR_PROTOTYPE_ERROR_MESSAGE string = "Protocol wrong type for socket" NSERR_NOPROTOOPT_ERROR_CODE errorCode = 298 NSERR_NOPROTOOPT_ERROR_MESSAGE string = "Protocol not available" NSERR_PROTONOSUPPORT_ERROR_CODE errorCode = 299 NSERR_PROTONOSUPPORT_ERROR_MESSAGE string = "Protocol not supported" NSERR_SOCKTNOSUPPORT_ERROR_CODE errorCode = 300 NSERR_SOCKTNOSUPPORT_ERROR_MESSAGE string = "Socket type not supported" NSERR_OPNOTSUPP_ERROR_CODE errorCode = 301 NSERR_OPNOTSUPP_ERROR_MESSAGE string = "Operation not supported" NSERR_PFNOSUPPORT_ERROR_CODE errorCode = 302 NSERR_PFNOSUPPORT_ERROR_MESSAGE string = "Protocol family not supported" NSERR_AFNOSUPPORT_ERROR_CODE errorCode = 303 NSERR_AFNOSUPPORT_ERROR_MESSAGE string = "Address family not supported by protocol family" NSERR_ADDRINUSE_ERROR_CODE errorCode = 304 NSERR_ADDRINUSE_ERROR_MESSAGE string = "Address already in use" NSERR_ADDRNOTAVAIL_ERROR_CODE errorCode = 305 NSERR_ADDRNOTAVAIL_ERROR_MESSAGE string = "Can't assign requested address" NSERR_NETDOWN_ERROR_CODE errorCode = 306 NSERR_NETDOWN_ERROR_MESSAGE string = "Network is down" NSERR_NETUNREACH_ERROR_CODE errorCode = 307 NSERR_NETUNREACH_ERROR_MESSAGE string = "Network is unreachable" NSERR_NETRESET_ERROR_CODE errorCode = 308 NSERR_NETRESET_ERROR_MESSAGE string = "Network dropped connection on reset" NSERR_CONNABORTED_ERROR_CODE errorCode = 309 NSERR_CONNABORTED_ERROR_MESSAGE string = "Software caused connection abort" NSERR_CONNRESET_ERROR_CODE errorCode = 310 NSERR_CONNRESET_ERROR_MESSAGE string = "Connection reset by peer" NSERR_NOBUFS_ERROR_CODE errorCode = 311 NSERR_NOBUFS_ERROR_MESSAGE string = "No buffer space available" NSERR_ISCONN_ERROR_CODE errorCode = 312 NSERR_ISCONN_ERROR_MESSAGE string = "Socket is already connected" NSERR_NOTCONN_ERROR_CODE errorCode = 313 NSERR_NOTCONN_ERROR_MESSAGE string = "Socket is not connected" NSERR_SHUTDOWN_ERROR_CODE errorCode = 314 NSERR_SHUTDOWN_ERROR_MESSAGE string = "Can't send after socket shutdown" NSERR_TOOMANYREFS_ERROR_CODE errorCode = 315 NSERR_TOOMANYREFS_ERROR_MESSAGE string = "Resource in use" NSERR_TIMEDOUT_ERROR_CODE errorCode = 316 NSERR_TIMEDOUT_ERROR_MESSAGE string = "Operation timed out" NSERR_CONNREFUSED_ERROR_CODE errorCode = 317 NSERR_CONNREFUSED_ERROR_MESSAGE string = "Connection refused" NSERR_LOOP_ERROR_CODE errorCode = 318 NSERR_LOOP_ERROR_MESSAGE string = "Too many levels of symbolic links" NSERR_NAMETOOLONG_ERROR_CODE errorCode = 319 NSERR_NAMETOOLONG_ERROR_MESSAGE string = "File name too long" NSERR_HOSTDOWN_ERROR_CODE errorCode = 320 NSERR_HOSTDOWN_ERROR_MESSAGE string = "Host is down" NSERR_HOSTUNREACH_ERROR_CODE errorCode = 321 NSERR_HOSTUNREACH_ERROR_MESSAGE string = "No route to host" NSERR_NOTEMPTY_ERROR_CODE errorCode = 322 NSERR_NOTEMPTY_ERROR_MESSAGE string = "Directory not empty" NSERR_PROCLIM_ERROR_CODE errorCode = 323 NSERR_PROCLIM_ERROR_MESSAGE string = "Too many processes" NSERR_USERS_ERROR_CODE errorCode = 324 NSERR_USERS_ERROR_MESSAGE string = "Too many users" NSERR_DQUOT_ERROR_CODE errorCode = 325 NSERR_DQUOT_ERROR_MESSAGE string = "Disc quota exceeded" NSERR_STALE_ERROR_CODE errorCode = 326 NSERR_STALE_ERROR_MESSAGE string = "Stale NFS file handle" NSERR_REMOTE_ERROR_CODE errorCode = 327 NSERR_REMOTE_ERROR_MESSAGE string = "Too many levels of remote in path" NSERR_BADRPC_ERROR_CODE errorCode = 328 NSERR_BADRPC_ERROR_MESSAGE string = "RPC struct is bad" NSERR_RPCMISMATCH_ERROR_CODE errorCode = 329 NSERR_RPCMISMATCH_ERROR_MESSAGE string = "RPC version wrong" NSERR_PROGUNAVAIL_ERROR_CODE errorCode = 330 NSERR_PROGUNAVAIL_ERROR_MESSAGE string = "RPC prog. not avail" NSERR_PROGMISMATCH_ERROR_CODE errorCode = 331 NSERR_PROGMISMATCH_ERROR_MESSAGE string = "Program version wrong" NSERR_PROCUNAVAIL_ERROR_CODE errorCode = 332 NSERR_PROCUNAVAIL_ERROR_MESSAGE string = "Bad procedure for program" NSERR_NOLCK_ERROR_CODE errorCode = 333 NSERR_NOLCK_ERROR_MESSAGE string = "No locks available" NSERR_NOSYS_ERROR_CODE errorCode = 334 NSERR_NOSYS_ERROR_MESSAGE string = "System Call not supported; Possible Reason: NetScaler is not running" NSERR_FTYPE_ERROR_CODE errorCode = 335 NSERR_FTYPE_ERROR_MESSAGE string = "Inappropriate file type or format" NSERR_AUTH_ERROR_CODE errorCode = 336 NSERR_AUTH_ERROR_MESSAGE string = "Authentication error" NSERR_NEEDAUTH_ERROR_CODE errorCode = 337 NSERR_NEEDAUTH_ERROR_MESSAGE string = "Need authenticator" NSERR_WOULDBLOCK_ERROR_CODE errorCode = 338 NSERR_WOULDBLOCK_ERROR_MESSAGE string = "Operation would block" NSERR_NOCODE_ERROR_CODE errorCode = 339 NSERR_NOCODE_ERROR_MESSAGE string = "Feature is not implemented" NSERR_NOTSUSER_ERROR_CODE errorCode = 340 NSERR_NOTSUSER_ERROR_MESSAGE string = "Not super-user" NSERR_BIGDATA_ERROR_CODE errorCode = 341 NSERR_BIGDATA_ERROR_MESSAGE string = "Data size is too big" NSERR_SMALLDATA_ERROR_CODE errorCode = 342 NSERR_SMALLDATA_ERROR_MESSAGE string = "Data size is too small" NSERR_NOMORENT_ERROR_CODE errorCode = 343 NSERR_NOMORENT_ERROR_MESSAGE string = "No more entry in table" NSERR_NOSERVICE_ERROR_CODE errorCode = 344 NSERR_NOSERVICE_ERROR_MESSAGE string = "No Service" NSERR_OSERROR_ERROR_CODE errorCode = 345 NSERR_OSERROR_ERROR_MESSAGE string = "Operating system error" NSERR_NONEXPCMD_ERROR_CODE errorCode = 346 NSERR_NONEXPCMD_ERROR_MESSAGE string = "Unexpected command" NSERR_CMDPROPFAIL_ERROR_CODE errorCode = 347 NSERR_CMDPROPFAIL_ERROR_MESSAGE string = "Command propagation failed" NSERR_TOOMANYNODES_ERROR_CODE errorCode = 348 NSERR_TOOMANYNODES_ERROR_MESSAGE string = "Too many nodes" NSERR_SECONDARYFAIL_ERROR_CODE errorCode = 349 NSERR_SECONDARYFAIL_ERROR_MESSAGE string = "" /* 156-byte string literal not displayed */ NSERR_INVALBACKUP_ERROR_CODE errorCode = 350 NSERR_INVALBACKUP_ERROR_MESSAGE string = "Invalid backup vserver" NSERR_NOSERVER_ERROR_CODE errorCode = 351 NSERR_NOSERVER_ERROR_MESSAGE string = "No such server" NSERR_LOGINREQD_ERROR_CODE errorCode = 352 NSERR_LOGINREQD_ERROR_MESSAGE string = "Login is required" NSERR_RPCINVAL_ERROR_CODE errorCode = 353 NSERR_RPCINVAL_ERROR_MESSAGE string = "RPC invalid argument" NSERR_NOUSER_ERROR_CODE errorCode = 354 NSERR_NOUSER_ERROR_MESSAGE string = "Invalid username or password" NSERR_INVALPASSWD_ERROR_CODE errorCode = 355 NSERR_INVALPASSWD_ERROR_MESSAGE string = "Invalid username or password" NSERR_LICENSE_ERROR_CODE errorCode = 356 NSERR_LICENSE_ERROR_MESSAGE string = "Feature(s) not licensed" NSERR_DEFERRED_ERROR_CODE errorCode = 357 NSERR_DEFERRED_ERROR_MESSAGE string = "The command is stored for later execution" NSERR_PROPAUTHFAIL_ERROR_CODE errorCode = 358 NSERR_PROPAUTHFAIL_ERROR_MESSAGE string = "Command propagation failed due to user authentication problems" NSERR_NODELSUSER_ERROR_CODE errorCode = 359 NSERR_NODELSUSER_ERROR_MESSAGE string = "The superuser cannot be removed" NSERR_NOMODSUSER_ERROR_CODE errorCode = 360 NSERR_NOMODSUSER_ERROR_MESSAGE string = "Permissions for this superuser cannot be modified" NSERR_INVALNODEID_ERROR_CODE errorCode = 362 NSERR_INVALNODEID_ERROR_MESSAGE string = "Invalid node ID specified" NSERR_NOTOPHA_ERROR_CODE errorCode = 363 NSERR_NOTOPHA_ERROR_MESSAGE string = "Operation not permitted on stand-alone node" NSERR_NOOPPEERBAD_ERROR_CODE errorCode = 364 NSERR_NOOPPEERBAD_ERROR_MESSAGE string = "Operation not possible due to invalid peer state. Rectify and retry." NSERR_NOOPBAD_ERROR_CODE errorCode = 365 NSERR_NOOPBAD_ERROR_MESSAGE string = "Operation not possible as system state is invalid. Use show node for more information." NSERR_NOPNOW_ERROR_CODE errorCode = 366 NSERR_NOPNOW_ERROR_MESSAGE string = "Operation not possible now. Please wait for system to stabilize before retrying." NSERR_NOOPPRI_ERROR_CODE errorCode = 367 NSERR_NOOPPRI_ERROR_MESSAGE string = "Operation permitted only on secondary node." NSERR_NOOPSEC_ERROR_CODE errorCode = 368 NSERR_NOOPSEC_ERROR_MESSAGE string = "Operation permitted only on primary node." NSERR_REDIRECT_ERROR_CODE errorCode = 369 NSERR_REDIRECT_ERROR_MESSAGE string = "Redirect request (VIP down)" NSERR_BUFOVERFLOW_ERROR_CODE errorCode = 370 NSERR_BUFOVERFLOW_ERROR_MESSAGE string = "Buffer overflow occurred" NSERR_NOUSERPOLICY_ERROR_CODE errorCode = 371 NSERR_NOUSERPOLICY_ERROR_MESSAGE string = "No command policy defined, permission denied" NSERR_NOSYSGROUP_ERROR_CODE errorCode = 372 NSERR_NOSYSGROUP_ERROR_MESSAGE string = "System group does not exist" NSERR_NOSYSCMDPOL_ERROR_CODE errorCode = 373 NSERR_NOSYSCMDPOL_ERROR_MESSAGE string = "System command policy does not exist" NSERR_HAIPV6PT_ERROR_CODE errorCode = 374 NSERR_HAIPV6PT_ERROR_MESSAGE string = "IPV6 Feature cannot be disabled while HA is running over IPv6." NSERR_HANSIPV6_ERROR_CODE errorCode = 375 NSERR_HANSIPV6_ERROR_MESSAGE string = "IPv6 NSIP cannot be changed while HA is running over IPv6." NSERR_NSIPV6ACTIVE_ERROR_CODE errorCode = 376 NSERR_NSIPV6ACTIVE_ERROR_MESSAGE string = "IPv6 NSIP is not in ACTIVE state, rectify and retry." NSERR_RTMON_STANDALONE_ERROR_CODE errorCode = 377 NSERR_RTMON_STANDALONE_ERROR_MESSAGE string = "Unbind all route monitors before making node standalone." NSERR_INTERFACENOTALLOWED_ERROR_CODE errorCode = 384 NSERR_INTERFACENOTALLOWED_ERROR_MESSAGE string = "Unauthorized: User is not allowed through this interface" NSERR_IPV6FEAT_DISABLED_ERROR_CODE errorCode = 378 NSERR_IPV6FEAT_DISABLED_ERROR_MESSAGE string = "IPv6 Feature Disabled" NSERR_DHCP_PBR_DEPENDENT_ERROR_CODE errorCode = 379 NSERR_DHCP_PBR_DEPENDENT_ERROR_MESSAGE string = "PBR rule present with nexthop dependent on released DHCP lease" NSERR_IPSECPROF_PERM_ERROR_CODE errorCode = 380 NSERR_IPSECPROF_PERM_ERROR_MESSAGE string = "Tunnel protocol IPSEC must have ipsec profile set to 'none'." NSERR_IFPAIR_BOUND_ERROR_CODE errorCode = 381 NSERR_IFPAIR_BOUND_ERROR_MESSAGE string = "Interface(s) already member of other interface pair" NSERR_IFPAIR_NOTPAIR_ERROR_CODE errorCode = 382 NSERR_IFPAIR_NOTPAIR_ERROR_MESSAGE string = "Number of member interfaces need to be exactly 2" NSERR_PBR_SETIPTUNNEL_ERROR_CODE errorCode = 383 NSERR_PBR_SETIPTUNNEL_ERROR_MESSAGE string = "SET operations on PBR for changing iptunnel not allowed. Remove and add PBR with new iptunnel" NSERR_IPRANGENOTALLOWD_ERROR_CODE errorCode = 394 NSERR_IPRANGENOTALLOWD_ERROR_MESSAGE string = "Range not allowed for wildcard IP" NSERR_IVALIDIPRANGE_ERROR_CODE errorCode = 395 NSERR_IVALIDIPRANGE_ERROR_MESSAGE string = "Invalid range value" NSERR_IPRANGEMAXLIMIT_ERROR_CODE errorCode = 396 NSERR_IPRANGEMAXLIMIT_ERROR_MESSAGE string = "Range value greater than maximum limit 254" NSERR_IP_NOT_EXIST_ERROR_CODE errorCode = 397 NSERR_IP_NOT_EXIST_ERROR_MESSAGE string = "IP does not exist for default or specified td" NSERR_TOOMANYRULES_ERROR_CODE errorCode = 398 NSERR_TOOMANYRULES_ERROR_MESSAGE string = "Maximum number of ACLs on the system has been exceeded" NSERR_PASSWD_LEN_MIN_8_ERROR_CODE errorCode = 399 NSERR_PASSWD_LEN_MIN_8_ERROR_MESSAGE string = "Password too short - minimum length is 8 characters" NSERR_SYNC_DISABLED_ERROR_CODE errorCode = 410 NSERR_SYNC_DISABLED_ERROR_MESSAGE string = "Synchronization disabled" NSERR_NODE_DISABLED_ERROR_CODE errorCode = 411 NSERR_NODE_DISABLED_ERROR_MESSAGE string = "Node disabled" NSERR_SYNC_PROGRESS_ERROR_CODE errorCode = 412 NSERR_SYNC_PROGRESS_ERROR_MESSAGE string = "Synchronization is in progress" NSERR_ADNS_PERM_ERROR_CODE errorCode = 413 NSERR_ADNS_PERM_ERROR_MESSAGE string = "Operation not permitted on ADNS service" NSERR_NOINC_IPSAMESUBNET_ERROR_CODE errorCode = 414 NSERR_NOINC_IPSAMESUBNET_ERROR_MESSAGE string = "Peer IP should be on the NSIP subnet if INC mode is disabled" NSERR_INVALID_PEERIP_ERROR_CODE errorCode = 415 NSERR_INVALID_PEERIP_ERROR_MESSAGE string = "Not a valid peer IP" NSERR_REDIRECT307_ERROR_CODE errorCode = 416 NSERR_REDIRECT307_ERROR_MESSAGE string = "Redirect request (send 307 temporary redirect" NSERR_INVALHOSTNAME_ERROR_CODE errorCode = 417 NSERR_INVALHOSTNAME_ERROR_MESSAGE string = "Invalid hostname" NSERR_REWRITE_NOT_SUPPORTED_ERROR_CODE errorCode = 418 NSERR_REWRITE_NOT_SUPPORTED_ERROR_MESSAGE string = "Port rewrite not supported on this vserver type" NSERR_IPCHG_DENY_ERROR_CODE errorCode = 419 NSERR_IPCHG_DENY_ERROR_MESSAGE string = "IP address change not permitted on this entity" NSERR_IPCHG_GSLB_ERROR_CODE errorCode = 420 NSERR_IPCHG_GSLB_ERROR_MESSAGE string = "GSLB local service IP cannot be changed. Please change the corresponding vserver's IP" NSERR_GSLB_IPCHG_ERROR_CODE errorCode = 421 NSERR_GSLB_IPCHG_ERROR_MESSAGE string = "corresponding GSLB service/GSLB service item IP has also been changed." NSERR_NOAUDITSRVC_ERROR_CODE errorCode = 422 NSERR_NOAUDITSRVC_ERROR_MESSAGE string = "No audit service running on the specified port" NSERR_LACPKEY_NOTSET_ERROR_CODE errorCode = 423 NSERR_LACPKEY_NOTSET_ERROR_MESSAGE string = "LACP key not set" NSERR_CHANNEL_INUSEBYLACP_ERROR_CODE errorCode = 424 NSERR_CHANNEL_INUSEBYLACP_ERROR_MESSAGE string = "Channel in use by LACP" NSERR_LACPENABLED_ERROR_CODE errorCode = 425 NSERR_LACPENABLED_ERROR_MESSAGE string = "LACP enabled interface cannot be bound manually to a channel" NSERR_IFACEMANUALLYBOUND_ERROR_CODE errorCode = 426 NSERR_IFACEMANUALLYBOUND_ERROR_MESSAGE string = "LACP cannot be enabled, interface manually bound to a channel" NSERR_INTRECINUSE_ERROR_CODE errorCode = 427 NSERR_INTRECINUSE_ERROR_MESSAGE string = "Domain name for the reverse domain name already exists" NSERR_PUBIPPORT_VIP_CONFLICT_ERROR_CODE errorCode = 428 NSERR_PUBIPPORT_VIP_CONFLICT_ERROR_MESSAGE string = "Public IP, port conflict with another entity bound to the same GSLB vserver" NSERR_IPPORT_VIP_BOUND_ERROR_CODE errorCode = 429 NSERR_IPPORT_VIP_BOUND_ERROR_MESSAGE string = "IP, port conflict with an entity already bound to the vserver" NSERR_NO_BACKUP_VIP_ERROR_CODE errorCode = 430 NSERR_NO_BACKUP_VIP_ERROR_MESSAGE string = "No such backup vserver" NSERR_REQ_SET_ARGS_ERROR_CODE errorCode = 431 NSERR_REQ_SET_ARGS_ERROR_MESSAGE string = "No arguments to set" NSERR_SVCGRP_MEMBER_NAMECONFLICT_ERROR_CODE errorCode = 432 NSERR_SVCGRP_MEMBER_NAMECONFLICT_ERROR_MESSAGE string = "Name conflicts with an existing service or service group member name" NSERR_SERVER_NAME_EXIST_ERROR_CODE errorCode = 433 NSERR_SERVER_NAME_EXIST_ERROR_MESSAGE string = "Server name already exists" NSERR_MAX_SERVICE_BINDING_ON_VSERVER_ERROR_CODE errorCode = 434 NSERR_MAX_SERVICE_BINDING_ON_VSERVER_ERROR_MESSAGE string = "Maximum services bound to vserver exceeded" NSERR_MAX_SVC_ENTITY_BINDING_ON_SVCGROUP_ERROR_CODE errorCode = 435 NSERR_MAX_SVC_ENTITY_BINDING_ON_SVCGROUP_ERROR_MESSAGE string = "Maximum services bound to service group exceeded" NSERR_FSMALL_ERROR_CODE errorCode = 436 NSERR_FSMALL_ERROR_MESSAGE string = "File too small" NSERR_INTOFLOW_ERROR_CODE errorCode = 437 NSERR_INTOFLOW_ERROR_MESSAGE string = "Integer overflow" NSERR_ASYNC_BLOCKED_ERROR_CODE errorCode = 438 NSERR_ASYNC_BLOCKED_ERROR_MESSAGE string = "Expression evaluation has blocked for body accumulation" NSERR_SACL_CLEARPENDING_ERROR_CODE errorCode = 439 NSERR_SACL_CLEARPENDING_ERROR_MESSAGE string = "Clear in progress" NSERR_SACL_NAME_EXISTS_ERROR_CODE errorCode = 440 NSERR_SACL_NAME_EXISTS_ERROR_MESSAGE string = "An ACL with the same name exists" NSERR_SACL_SUPERSET_EXISTS_ERROR_CODE errorCode = 441 NSERR_SACL_SUPERSET_EXISTS_ERROR_MESSAGE string = "Operation not permitted. (An overlapping rule already exists)" NSERR_SACL_SUBSET_EXISTS_ERROR_CODE errorCode = 442 NSERR_SACL_SUBSET_EXISTS_ERROR_MESSAGE string = "Operation not permitted. (A rule which is subset of this rule already exists)" NSERR_NOINC_ROUTEMONITOR_ERROR_CODE errorCode = 443 NSERR_NOINC_ROUTEMONITOR_ERROR_MESSAGE string = "Route monitors should be added only if INC mode is enabled" NSERR_SESSION_EXPIRED_ERROR_CODE errorCode = 444 NSERR_SESSION_EXPIRED_ERROR_MESSAGE string = "Session expired or killed. Please login again" NSERR_SESSION_EXCEEDED_ERROR_CODE errorCode = 445 NSERR_SESSION_EXCEEDED_ERROR_MESSAGE string = "Session limit exceeded" NSERR_CFE_CONN_EXCEEDED_ERROR_CODE errorCode = 446 NSERR_CFE_CONN_EXCEEDED_ERROR_MESSAGE string = "Connection limit to CFE exceeded" NSERR_CFE_KILLSELF_ERROR_CODE errorCode = 449 NSERR_CFE_KILLSELF_ERROR_MESSAGE string = "Invalid session id. Current session cannot be killed" NSERR_CFE_INCOMPLETESESSION_ERROR_CODE errorCode = 450 NSERR_CFE_INCOMPLETESESSION_ERROR_MESSAGE string = "Invalid session. Response/challenge is incomplete" NSERR_ACL_ALREADYINSTATE_ERROR_CODE errorCode = 451 NSERR_ACL_ALREADYINSTATE_ERROR_MESSAGE string = "Entity already in this state" NSERR_CFE_SESSION_NOEXIST_ERROR_CODE errorCode = 452 NSERR_CFE_SESSION_NOEXIST_ERROR_MESSAGE string = "Session does not exist" NSERR_SYSGROUP_USER_EXISTS_ERROR_CODE errorCode = 453 NSERR_SYSGROUP_USER_EXISTS_ERROR_MESSAGE string = "User already bound to system group" NSERR_SYSGROUP_POLICY_EXISTS_ERROR_CODE errorCode = 454 NSERR_SYSGROUP_POLICY_EXISTS_ERROR_MESSAGE string = "Policy already bound to system group" NSERR_SLEEP_ERROR_CODE errorCode = 455 NSERR_SLEEP_ERROR_MESSAGE string = "Sleep process sleep" NSERR_PPEDIE_ERROR_CODE errorCode = 456 NSERR_PPEDIE_ERROR_MESSAGE string = "Your PPE is no more" NSERR_NOCONN_CMDPROPFAIL_ERROR_CODE errorCode = 457 NSERR_NOCONN_CMDPROPFAIL_ERROR_MESSAGE string = "Unable to establish connection with the secondary. Command propagation failed" NSERR_TIMEOUT_SECONDARY_ERROR_CODE errorCode = 458 NSERR_TIMEOUT_SECONDARY_ERROR_MESSAGE string = "There is no response from the secondary. Propagation timed out" NSERR_RPC_TIMEOUT_ERROR_CODE errorCode = 459 NSERR_RPC_TIMEOUT_ERROR_MESSAGE string = "RPC timeout" NSERR_NOT_SUPPORTED_ERROR_CODE errorCode = 460 NSERR_NOT_SUPPORTED_ERROR_MESSAGE string = "Feature not supported in this release" NSERR_NOENT_VSERVER_ERROR_CODE errorCode = 461 NSERR_NOENT_VSERVER_ERROR_MESSAGE string = "No such Vserver" NSERR_NOENT_SVC_ERROR_CODE errorCode = 462 NSERR_NOENT_SVC_ERROR_MESSAGE string = "No such service" NSERR_NOENT_SVC_SVCGRP_ERROR_CODE errorCode = 463 NSERR_NOENT_SVC_SVCGRP_ERROR_MESSAGE string = "No such service/serviceGroup" NSERR_HA_NOV4_NETMASK_ERROR_CODE errorCode = 464 NSERR_HA_NOV4_NETMASK_ERROR_MESSAGE string = "IPv4 netmask is not required for IPv6" NSERR_MAX_VSEVRVER_BINDINGS_TO_SERVICE_ERROR_CODE errorCode = 465 NSERR_MAX_VSEVRVER_BINDINGS_TO_SERVICE_ERROR_MESSAGE string = "Maximum vservers bound to a service exceeded" NSERR_SACL6_CLEARPENDING_ERROR_CODE errorCode = 466 NSERR_SACL6_CLEARPENDING_ERROR_MESSAGE string = "Simple ACL6 Clear in progress" NSERR_SACL6_NAME_EXISTS_ERROR_CODE errorCode = 467 NSERR_SACL6_NAME_EXISTS_ERROR_MESSAGE string = "Simple ACL6 with the same name exists" NSERR_SACL6_SUPERSET_EXISTS_ERROR_CODE errorCode = 468 NSERR_SACL6_SUPERSET_EXISTS_ERROR_MESSAGE string = "Operation not permitted. (An overlapping rule already exists)" NSERR_SACL6_SUBSET_EXISTS_ERROR_CODE errorCode = 469 NSERR_SACL6_SUBSET_EXISTS_ERROR_MESSAGE string = "Operation not permitted. (A rule which is subset of this rule already exists)" NSERR_NO_BACKUP_VIP_BOUND_ERROR_CODE errorCode = 470 NSERR_NO_BACKUP_VIP_BOUND_ERROR_MESSAGE string = "No backupVserver bound" NSERR_SESSION_EXPIRED_REDIRECT_ERROR_CODE errorCode = 471 NSERR_SESSION_EXPIRED_REDIRECT_ERROR_MESSAGE string = "Session expired, Please login again" NSERR_NOENT_VLAN_ERROR_CODE errorCode = 472 NSERR_NOENT_VLAN_ERROR_MESSAGE string = "Vlan does not exist" NSERR_MAX_SVC_ENTITY_ERROR_CODE errorCode = 473 NSERR_MAX_SVC_ENTITY_ERROR_MESSAGE string = "Maximum service limit reached" NSERR_CL_EXIST_ERROR_CODE errorCode = 474 NSERR_CL_EXIST_ERROR_MESSAGE string = "Resource already exists in cluster" NSERR_OWNERNODE_NOTALLOWED_ERROR_CODE errorCode = 475 NSERR_OWNERNODE_NOTALLOWED_ERROR_MESSAGE string = "Can not specify owner node." NSERR_OWNERNODE_NOT_SPECIFIED_ERROR_CODE errorCode = 476 NSERR_OWNERNODE_NOT_SPECIFIED_ERROR_MESSAGE string = "Owner node is not specified." NSERR_NOT_SUPPINCLUSTER_ERROR_CODE errorCode = 477 NSERR_NOT_SUPPINCLUSTER_ERROR_MESSAGE string = "Operation not supported in Cluster." NSERR_VSERVER_TYPE_MISMATCH_ERROR_CODE errorCode = 478 NSERR_VSERVER_TYPE_MISMATCH_ERROR_MESSAGE string = "Vserver type mismatch." NSERR_ITER_END_ERROR_CODE errorCode = 479 NSERR_ITER_END_ERROR_MESSAGE string = "End of iteration reached." NSERR_CONNECT_TO_CLUSTER_IP_ERROR_CODE errorCode = 1382 NSERR_CONNECT_TO_CLUSTER_IP_ERROR_MESSAGE string = "Please connect to cluster IP and run showtechsupport on that node." NSERR_LB_AUDIT_IP_DENY_ERROR_CODE errorCode = 1383 NSERR_LB_AUDIT_IP_DENY_ERROR_MESSAGE string = "Changing IP address of LB vserver not permitted when Audit server also referring to same server_info ." NSERR_IC_OFF_DISABLING_FEO_ERROR_CODE errorCode = 1384 NSERR_IC_OFF_DISABLING_FEO_ERROR_MESSAGE string = "IC is disabled, but FEO is enabled." NSERR_SYNC_VLAN_EXIST_ERROR_CODE errorCode = 1385 NSERR_SYNC_VLAN_EXIST_ERROR_MESSAGE string = "Please unset sync vlan, before removing the HA node." NSERR_CMDPROP_DISABLED_ERROR_CODE errorCode = 1450 NSERR_CMDPROP_DISABLED_ERROR_MESSAGE string = "Command propagation disabled." NSERR_NOTHEME_ERROR_CODE errorCode = 1451 NSERR_NOTHEME_ERROR_MESSAGE string = "Portal theme doesn't exist" NSERR_THEMEEXISTS_ERROR_CODE errorCode = 1452 NSERR_THEMEEXISTS_ERROR_MESSAGE string = "Portal theme already exists" NSERR_THEME_INUSE_ERROR_CODE errorCode = 1453 NSERR_THEME_INUSE_ERROR_MESSAGE string = "Portal theme in use" NSERR_NO_CONTENT_ERROR_CODE errorCode = 1454 NSERR_NO_CONTENT_ERROR_MESSAGE string = "204 No Content" NSERR_ARP_IFACE_NODE_MISMATCH_ERROR_CODE errorCode = 1440 NSERR_ARP_IFACE_NODE_MISMATCH_ERROR_MESSAGE string = "Interface and node mismatch" NSERR_HA_BOTH_PRIMARY_ERROR_CODE errorCode = 1441 NSERR_HA_BOTH_PRIMARY_ERROR_MESSAGE string = "Cannot failover as Node State set to STAYPRIMARY" NSERR_PROP_DISABLED_ERROR_CODE errorCode = 1448 NSERR_PROP_DISABLED_ERROR_MESSAGE string = "Propagation disabled" NSERR_HA_FAILOVER_PERM_ERROR_CODE errorCode = 1449 NSERR_HA_FAILOVER_PERM_ERROR_MESSAGE string = "Failover not permitted as one node is up and another node is down" NSERR_NOEULA_ERROR_CODE errorCode = 938 NSERR_NOEULA_ERROR_MESSAGE string = "Eula name doesn't exist" NSERR_EULAEXISTS_ERROR_CODE errorCode = 939 NSERR_EULAEXISTS_ERROR_MESSAGE string = "Eula with same name already exists" NSERR_EULA_INUSE_ERROR_CODE errorCode = 940 NSERR_EULA_INUSE_ERROR_MESSAGE string = "Eula name in use" NSERR_SYSLOG_TCP_CONFIG_ERR_ERROR_CODE errorCode = 1459 NSERR_SYSLOG_TCP_CONFIG_ERR_ERROR_MESSAGE string = "tcpProfileName/maxLogDataSizeToHold cannot be set when transport is UDP" NSERR_SYSLOG_LOOPBACK_OR_LOCAL_IP_NOTALLOWED_ERROR_CODE errorCode = 1460 NSERR_SYSLOG_LOOPBACK_OR_LOCAL_IP_NOTALLOWED_ERROR_MESSAGE string = "TCP transport is not allowed for local logging(when serverIP is configured as Loopback IP or NetScaler's local IP)" NSERR_MAX_CONC_SAVECONFIG_ERROR_CODE errorCode = 1461 NSERR_MAX_CONC_SAVECONFIG_ERROR_MESSAGE string = "Maximum number of concurrent save configs are in progress. Try again later." NSERR_SYSLOG_LBMETHOD_NOTALLOWED_ERROR_CODE errorCode = 1462 NSERR_SYSLOG_LBMETHOD_NOTALLOWED_ERROR_MESSAGE string = "LB method AUDITLOGHASH can be set only for service type SYSLOGTCP/SYSLOGUDP" NSERR_SYSLOG_PERSISTENCE_NOTSUPPORTED_ERROR_CODE errorCode = 1463 NSERR_SYSLOG_PERSISTENCE_NOTSUPPORTED_ERROR_MESSAGE string = "Persistency is not supported for SYSLOGTCP and SYSLOGUDP service types" NSERR_SYSLOG_HASHLBMETHODS_NOTALLOWED_ERROR_CODE errorCode = 1464 NSERR_SYSLOG_HASHLBMETHODS_NOTALLOWED_ERROR_MESSAGE string = "Hash based LB methods which depend on packet parameters cannot be set for SYSLOGTCP/SYSLOGUDP service types" NSERR_SYSLOG_LEASTCONN_NOTSUPPORTED_ERROR_CODE errorCode = 1467 NSERR_SYSLOG_LEASTCONN_NOTSUPPORTED_ERROR_MESSAGE string = "LEASTCONNECTION algorithm is not supported for SYSLOGTCP/SYSLOGUDP service types" NSERR_SVC_EXISTS_ERROR_CODE errorCode = 1468 NSERR_SVC_EXISTS_ERROR_MESSAGE string = "Service exists with this server information" NSERR_SYSLOG_NOLBVIP_ERROR_CODE errorCode = 1469 NSERR_SYSLOG_NOLBVIP_ERROR_MESSAGE string = "No such LB vserver of type SYSLOGUDP/SYSLOGTCP exists" NSERR_SYSLOG_LBPROTOCOL_NOTALLOWED_ERROR_CODE errorCode = 1470 NSERR_SYSLOG_LBPROTOCOL_NOTALLOWED_ERROR_MESSAGE string = "LB vserver of type other than SYSLOGUDP/SYSLOGTCP cannot be set to syslogaction" NSERR_SYSLOG_TRANSPORT_UNSET_NOTALLOWED_ERROR_CODE errorCode = 1471 NSERR_SYSLOG_TRANSPORT_UNSET_NOTALLOWED_ERROR_MESSAGE string = "Transport cannot be unset when LB vserver name is configured" NSERR_SYSLOG_TRANSPORT_MISMATCH_ERROR_CODE errorCode = 1472 NSERR_SYSLOG_TRANSPORT_MISMATCH_ERROR_MESSAGE string = "Mismatch in transport type of LB vserver and syslog action" NSERR_SYSLOG_LBVSRVR_INUSE_BY_SYSACT_ERROR_CODE errorCode = 1473 NSERR_SYSLOG_LBVSRVR_INUSE_BY_SYSACT_ERROR_MESSAGE string = "The LB vserver is being accessed by syslog action" NSERR_SYSLOG_LBVSRVR_RENAME_NOTSUPPORTED_ERROR_CODE errorCode = 1474 NSERR_SYSLOG_LBVSRVR_RENAME_NOTSUPPORTED_ERROR_MESSAGE string = "Renaming LB vserver is not supported for SYSLOGUDP/SYSLOGTCP service types" NSERR_SYSLOG_INVALID_SERVIP_ERROR_CODE errorCode = 1475 NSERR_SYSLOG_INVALID_SERVIP_ERROR_MESSAGE string = "ServerIP cannot be configured as 0.0.0.0 or 0 for syslog action" NSERR_AUDITLOG_PORT_SET_UNSET_NOTALLOWED_ERROR_CODE errorCode = 1476 NSERR_AUDITLOG_PORT_SET_UNSET_NOTALLOWED_ERROR_MESSAGE string = "Port cannot be set/unset when LB vserver name/Server domain name is configured" NSERR_SYSLOG_TCPPROFILE_NOTALLOWED_ERROR_CODE errorCode = 1477 NSERR_SYSLOG_TCPPROFILE_NOTALLOWED_ERROR_MESSAGE string = "TCP profile name cannot be set when LB vserver name is configured" NSERR_SYSLOG_CANNOT_SET_LBVSNAME_ERROR_CODE errorCode = 1478 NSERR_SYSLOG_CANNOT_SET_LBVSNAME_ERROR_MESSAGE string = "Unset the TCP profile name and then set the LB vserver name" NSERR_MPTCP_CANNOT_SET_MPTCPADVERTISE_ERROR_CODE errorCode = 1495 NSERR_MPTCP_CANNOT_SET_MPTCPADVERTISE_ERROR_MESSAGE string = "MPTCP Advertise can be set only on the IP of type VIP." NSERR_PORTALBINDING_NOT_SUPPORTED_ERROR_CODE errorCode = 1479 NSERR_PORTALBINDING_NOT_SUPPORTED_ERROR_MESSAGE string = "Operation not supported. Unset VPN uitheme parameter first and then try again." NSERR_PORTALTHEME_NAME_NOT_ALLOWED_ERROR_CODE errorCode = 1480 NSERR_PORTALTHEME_NAME_NOT_ALLOWED_ERROR_MESSAGE string = "'EULA' and 'Custom' keywords are reserved. Please try with any other name" NSERR_AUDIT_VERSION_MISMATCH_ERROR_CODE errorCode = 1481 NSERR_AUDIT_VERSION_MISMATCH_ERROR_MESSAGE string = "Audit version mismatch" NSERR_RADIUS_LISTENER_PERM_ERROR_CODE errorCode = 1482 NSERR_RADIUS_LISTENER_PERM_ERROR_MESSAGE string = "Operation not permitted on RADIUS LISTENER service" NSERR_SYSLOG_NETPROFILE_NOTALLOWED_ERROR_CODE errorCode = 1483 NSERR_SYSLOG_NETPROFILE_NOTALLOWED_ERROR_MESSAGE string = "Network profile name cannot be set when LB vserver name is configured" NSERR_AUDITLOG_DMNRESOLVRETRY_ERROR_CODE errorCode = 1484 NSERR_AUDITLOG_DMNRESOLVRETRY_ERROR_MESSAGE string = "Domain name can be resolved only when server domain name is configured" NSERR_AUDITLOG_ARGUMENT_MISSING_ERROR_CODE errorCode = 1485 NSERR_AUDITLOG_ARGUMENT_MISSING_ERROR_MESSAGE string = "One of the arguments \"Server IP/Server domain name/LB vserver name\" is required for auditlog action" NSERR_AUDITLOG_DBS_SERVER_EXIST_ERROR_CODE errorCode = 1486 NSERR_AUDITLOG_DBS_SERVER_EXIST_ERROR_MESSAGE string = "Auditlog internal DBS server with the same domain name exists" NSERR_ICAMODE_STATUS_NOT_OK_ERROR_CODE errorCode = 1487 NSERR_ICAMODE_STATUS_NOT_OK_ERROR_MESSAGE string = "vpn icamode status not okay" NSERR_SYSLOG_LBVSERVER_NOTALLOWED_ERROR_CODE errorCode = 1488 NSERR_SYSLOG_LBVSERVER_NOTALLOWED_ERROR_MESSAGE string = "LB vserver name cannot be set when network profile is configured. Unset the netProfile and set LB vserver name" NSERR_INSTALL_FAILED_ERROR_CODE errorCode = 1490 NSERR_INSTALL_FAILED_ERROR_MESSAGE string = "Installation failed." NSERR_OSPFAREA_UNSET_ERROR_CODE errorCode = 1491 NSERR_OSPFAREA_UNSET_ERROR_MESSAGE string = "Unset of OSPFArea is allowed only for VIP and SNIP" NSERR_PREQ_HOSTROUTE_ERROR_CODE errorCode = 1492 NSERR_PREQ_HOSTROUTE_ERROR_MESSAGE string = "Pre-requisite Hostroute is disabled" NSERR_PREQ_NETWORKROUTE_ERROR_CODE errorCode = 1493 NSERR_PREQ_NETWORKROUTE_ERROR_MESSAGE string = "Pre-requisite Networkroute is disabled" NSERR_AUDITLOG_SVC_EXISTS_ERROR_CODE errorCode = 1496 NSERR_AUDITLOG_SVC_EXISTS_ERROR_MESSAGE string = "Auditlog service exists with this server information" NSERR_AUDITSINFO_EXISTS_WITH_SAME_DOMAINNAME_ERROR_CODE errorCode = 1497 NSERR_AUDITSINFO_EXISTS_WITH_SAME_DOMAINNAME_ERROR_MESSAGE string = "Auditlog action exists with the same domain name" NSERR_NO_PERM_ON_PLATFORM_ERROR_CODE errorCode = 1501 NSERR_NO_PERM_ON_PLATFORM_ERROR_MESSAGE string = "Operation not supported on this platform" NSERR_NOTDBS_SERVER_AUTOSCALE_SGRP_ERROR_CODE errorCode = 3779 NSERR_NOTDBS_SERVER_AUTOSCALE_SGRP_ERROR_MESSAGE string = "Cannot configure autoScale as POLICY option for an IP based server." NSERR_AUTO_SCALE_CLOUD_API_TYPE_ONLY_ERROR_CODE errorCode = 3810 NSERR_AUTO_SCALE_CLOUD_API_TYPE_ONLY_ERROR_MESSAGE string = "Operation is supported for servicegroup with autoscale type CLOUD or API only." NSERR_AUTO_DISABLE_GRACEFUL_NOT_SET_ERROR_CODE errorCode = 3811 NSERR_AUTO_DISABLE_GRACEFUL_NOT_SET_ERROR_MESSAGE string = "Auto Disable Graceful not enabled. Set autoDisablegraceful parameter to YES." NSERR_AUTO_DISABLE_GRACEFUL_NOT_SUPPORTED_ON_AZURE_ERROR_CODE errorCode = 3812 NSERR_AUTO_DISABLE_GRACEFUL_NOT_SUPPORTED_ON_AZURE_ERROR_MESSAGE string = "Auto Disable Graceful not supported on Azure Platform." NSERR_MAX_MONITORS_BINDINGS_TO_SERVICE_ERROR_CODE errorCode = 3813 NSERR_MAX_MONITORS_BINDINGS_TO_SERVICE_ERROR_MESSAGE string = "Maximum monitors bound to this entity exceeded" NSERR_INSUFFICIENT_IAM_PRIVILEGES_ERROR_CODE errorCode = 3815 NSERR_INSUFFICIENT_IAM_PRIVILEGES_ERROR_MESSAGE string = "Insufficient iam privileges configured for this feature" NSERR_LOGIN_NEXTFACTOR_ERROR_CODE errorCode = 3816 NSERR_LOGIN_NEXTFACTOR_ERROR_MESSAGE string = "Nextfactor Login" NSERR_SVC_GRP_ERROR_CODE errorCode = 1855 NSERR_SVC_GRP_ERROR_MESSAGE string = "Unable to discover Autoscale group/setting in cloud" NSERR_MISSING_POLICY_ERROR_CODE errorCode = 2197 NSERR_MISSING_POLICY_ERROR_MESSAGE string = "Unable to discover scale down policy of Autoscale group/setting in cloud" NSERR_AZURE_MANAGED_IDENTITY_NOT_ALLOWED_ERROR_CODE errorCode = 1508 NSERR_AZURE_MANAGED_IDENTITY_NOT_ALLOWED_ERROR_MESSAGE string = "" /* 161-byte string literal not displayed */ NSERR_AUTO_SCALE_DNS_TROFS_DELAY_ERROR_CODE errorCode = 1509 NSERR_AUTO_SCALE_DNS_TROFS_DELAY_ERROR_MESSAGE string = "Operation is supported for servicegroup with autoscale type DNS only." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#bot-errors NSERR_BOT_UPDATE_FAILED_ERROR_CODE errorCode = 1696 NSERR_BOT_UPDATE_FAILED_ERROR_MESSAGE string = "Updating the resource failed" NSERR_BOT_CFG_INVALID_JSON_ERROR_CODE errorCode = 1697 NSERR_BOT_CFG_INVALID_JSON_ERROR_MESSAGE string = "Invalid JSON Configuration" NSERR_BOT_CFG_IPREP_INVALID_CATEGORY_ERROR_CODE errorCode = 1713 NSERR_BOT_CFG_IPREP_INVALID_CATEGORY_ERROR_MESSAGE string = "Invalid category in IPReputation config" NSERR_BOT_CFG_RATELIMIT_NO_URL_ERROR_CODE errorCode = 1723 NSERR_BOT_CFG_RATELIMIT_NO_URL_ERROR_MESSAGE string = "No URL option in RateLimit configuration" NSERR_BOT_CFG_RATELIMIT_NO_COOKIE_ERROR_CODE errorCode = 1724 NSERR_BOT_CFG_RATELIMIT_NO_COOKIE_ERROR_MESSAGE string = "No Cookie option in RateLimit configuration" NSERR_BOT_CFG_MAX_KM_LIMIT_REACHED_ERROR_CODE errorCode = 1725 NSERR_BOT_CFG_MAX_KM_LIMIT_REACHED_ERROR_MESSAGE string = "Keyboard-mouse Config Limit exceeded." NSERR_BOT_CFG_RATELIMIT_INVALID_CATEGORY_ERROR_CODE errorCode = 1726 NSERR_BOT_CFG_RATELIMIT_INVALID_CATEGORY_ERROR_MESSAGE string = "Invalid category in ratelimit config" NSERR_BOT_CFG_MAX_WHITELIST_LIMT_REACHED_ERROR_CODE errorCode = 1760 NSERR_BOT_CFG_MAX_WHITELIST_LIMT_REACHED_ERROR_MESSAGE string = "White List Config Limit exceeded." NSERR_BOT_CFG_MAX_BLACKLIST_LIMT_REACHED_ERROR_CODE errorCode = 1761 NSERR_BOT_CFG_MAX_BLACKLIST_LIMT_REACHED_ERROR_MESSAGE string = "Black List Config Limit exceeded." NSERR_BOT_CFG_MAX_RATELIMIT_LIMT_REACHED_ERROR_CODE errorCode = 1763 NSERR_BOT_CFG_MAX_RATELIMIT_LIMT_REACHED_ERROR_MESSAGE string = "RateLimit Config Limit exceeded." NSERR_BOT_SIGNATURE_URL_NOT_ACCESSIBLE_ERROR_CODE errorCode = 1768 NSERR_BOT_SIGNATURE_URL_NOT_ACCESSIBLE_ERROR_MESSAGE string = "Signature URL set in 'set bot settings' is not accessible. Please check the DNS NameServer/Route settings and try again." NSERR_BOT_CFG_MAX_CAPTCHA_LIMIT_REACHED_ERROR_CODE errorCode = 1769 NSERR_BOT_CFG_MAX_CAPTCHA_LIMIT_REACHED_ERROR_MESSAGE string = "Captcha Config Limit Exceeded" NSERR_BOT_SIGNATURE_AUTO_UPDATE_IPV6_NOT_SUPPORTED_ERROR_CODE errorCode = 1770 NSERR_BOT_SIGNATURE_AUTO_UPDATE_IPV6_NOT_SUPPORTED_ERROR_MESSAGE string = "IPV6 is not supported." NSERR_BOT_SIGNATURE_AUTO_UPDATE_PARSE_ERROR_ERROR_CODE errorCode = 1771 NSERR_BOT_SIGNATURE_AUTO_UPDATE_PARSE_ERROR_ERROR_MESSAGE string = "Signature Parse error" NSERR_BOT_SIGNATURE_INVALID_URL_ERROR_CODE errorCode = 1772 NSERR_BOT_SIGNATURE_INVALID_URL_ERROR_MESSAGE string = "Invalid Signature URL." NSERR_BOT_BAD_TRAPURL_ERROR_CODE errorCode = 1773 NSERR_BOT_BAD_TRAPURL_ERROR_MESSAGE string = "Invalid TrapURL. Url should start with '/'" NSERR_BOT_DEFAULT_SIGNATURE_FILE_PARSE_ERROR_ERROR_CODE errorCode = 1774 NSERR_BOT_DEFAULT_SIGNATURE_FILE_PARSE_ERROR_ERROR_MESSAGE string = "Unable to parse Bot Signature File." NSERR_BOT_NEG_TRAP_URL_REGEX_ERROR_CODE errorCode = 1775 NSERR_BOT_NEG_TRAP_URL_REGEX_ERROR_MESSAGE string = "Negated regex are not allowed." NSERR_BOT_INVALID_DFP_MOBILE_TYPE_ERROR_CODE errorCode = 1698 NSERR_BOT_INVALID_DFP_MOBILE_TYPE_ERROR_MESSAGE string = "Invalid Device Fingerprint mobile type" NSERR_BOT_UPDATE_SIGNATURE_META_UPDATE_FAILED_ERROR_CODE errorCode = 1701 NSERR_BOT_UPDATE_SIGNATURE_META_UPDATE_FAILED_ERROR_MESSAGE string = "Signature Auto Update meta file update failed." NSERR_BOT_PROFILE_BINDING_ALREADY_EXISTS_ERROR_CODE errorCode = 1703 NSERR_BOT_PROFILE_BINDING_ALREADY_EXISTS_ERROR_MESSAGE string = "An entity with the name already bound." NSERR_BOT_CFG_MAX_TRAPURL_LIMIT_REACHED_ERROR_CODE errorCode = 1702 NSERR_BOT_CFG_MAX_TRAPURL_LIMIT_REACHED_ERROR_MESSAGE string = "Trap URL Config Limit exceeded." NSERR_BOT_CFG_MAX_LOGEXPRESSION_LIMT_REACHED_ERROR_CODE errorCode = 1705 NSERR_BOT_CFG_MAX_LOGEXPRESSION_LIMT_REACHED_ERROR_MESSAGE string = "Log Expression Config Limit exceeded." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#caconf-errors NSERR_CACONF_CNFL_HEUREXP_RELEXP_ERROR_CODE errorCode = 480 NSERR_CACONF_CNFL_HEUREXP_RELEXP_ERROR_MESSAGE string = "Conflicting arguments, heurExpiryParam and relExpiry" NSERR_CACONF_CNFL_HEUREXP_RELEXPMILI_ERROR_CODE errorCode = 481 NSERR_CACONF_CNFL_HEUREXP_RELEXPMILI_ERROR_MESSAGE string = "Conflicting arguments, heurExpiryParam and relExpiryMilliSec" NSERR_CACONF_CNFL_RELEXP_RELEXPMILI_ERROR_CODE errorCode = 482 NSERR_CACONF_CNFL_RELEXP_RELEXPMILI_ERROR_MESSAGE string = "Conflicting arguments, relExpiry and relExpiryMiliSec" NSERR_CACONF_CNFL_ABSEXP_HEUREXP_ERROR_CODE errorCode = 483 NSERR_CACONF_CNFL_ABSEXP_HEUREXP_ERROR_MESSAGE string = "Conflicting arguments, absExpiry and heurExpiryParam" NSERR_CACONF_CNFL_ABSEXP_RELEXPMILI_ERROR_CODE errorCode = 484 NSERR_CACONF_CNFL_ABSEXP_RELEXPMILI_ERROR_MESSAGE string = "Conflicting arguments, absExpiry and relExpiryMilliSec" NSERR_CACONF_CNFL_ABSEXPGMT_HERUEXP_ERROR_CODE errorCode = 485 NSERR_CACONF_CNFL_ABSEXPGMT_HERUEXP_ERROR_MESSAGE string = "Conflicting arguments, absExpiryGMT and heurExpiryParam" NSERR_CACONF_CNFL_ABSEXP_ABSEXPGMT_ERROR_CODE errorCode = 486 NSERR_CACONF_CNFL_ABSEXP_ABSEXPGMT_ERROR_MESSAGE string = "Conflicting arguments, absExpiry and absExpiryGMT" NSERR_CACONF_CNFL_ABSEXPGMT_RELEXPMILI_ERROR_CODE errorCode = 487 NSERR_CACONF_CNFL_ABSEXPGMT_RELEXPMILI_ERROR_MESSAGE string = "Conflicting arguments, absExpiryGMT and relExpiryMilliSec" NSERR_CACONF_CNFL_HITPARAMS_HITSLCTR_ERROR_CODE errorCode = 488 NSERR_CACONF_CNFL_HITPARAMS_HITSLCTR_ERROR_MESSAGE string = "Conflicting arguments, hitParams and hitSelector" NSERR_CACONF_CNFL_INVALPARAMS_HITSLCTR_ERROR_CODE errorCode = 489 NSERR_CACONF_CNFL_INVALPARAMS_HITSLCTR_ERROR_MESSAGE string = "Conflicting arguments, invalParams and hitSelector" NSERR_CACONF_CNFL_HITPARAMS_INVLSLCTR_ERROR_CODE errorCode = 490 NSERR_CACONF_CNFL_HITPARAMS_INVLSLCTR_ERROR_MESSAGE string = "Conflicting arguments, hitParams and invalSelector" NSERR_CACONF_CNFL_INVALPARAMS_INVLSLCTR_ERROR_CODE errorCode = 491 NSERR_CACONF_CNFL_INVALPARAMS_INVLSLCTR_ERROR_MESSAGE string = "Conflicting arguments, invalParams and invalSelector" NSERR_CACONF_CNFL_HITSLCTR_MATCHCOOKY_ERROR_CODE errorCode = 492 NSERR_CACONF_CNFL_HITSLCTR_MATCHCOOKY_ERROR_MESSAGE string = "Conflicting arguments, hitSelector and matchCookies" NSERR_CACONF_CNFL_HITSLCTR_INVALREST2HOST_ERROR_CODE errorCode = 493 NSERR_CACONF_CNFL_HITSLCTR_INVALREST2HOST_ERROR_MESSAGE string = "Conflicting arguments, hitSelector and invalRestrictedToHost" NSERR_CACONF_CNFL_HITSLCTR_IGNRPARAMVALCASE_ERROR_CODE errorCode = 494 NSERR_CACONF_CNFL_HITSLCTR_IGNRPARAMVALCASE_ERROR_MESSAGE string = "Conflicting arguments, hitSelector and ignoreParamValueCase" NSERR_CACONF_CNFL_INVALSLCTR_MATCHCOOKY_ERROR_CODE errorCode = 495 NSERR_CACONF_CNFL_INVALSLCTR_MATCHCOOKY_ERROR_MESSAGE string = "Conflicting arguments, invalSelector and matchCookies" NSERR_CACONF_CNFL_INVALSLCTR_INVALREST2HOST_ERROR_CODE errorCode = 496 NSERR_CACONF_CNFL_INVALSLCTR_INVALREST2HOST_ERROR_MESSAGE string = "Conflicting arguments, invalSelector and invalRestrictedToHost" NSERR_CACONF_CNFL_INVALSLCTR_IGNRPARAMVALCASE_ERROR_CODE errorCode = 497 NSERR_CACONF_CNFL_INVALSLCTR_IGNRPARAMVALCASE_ERROR_MESSAGE string = "Conflicting arguments, invalSelector and ignoreParamValueCase" NSERR_CACONF_CNFL_POSRELEXP_RELEXP_ERROR_CODE errorCode = 498 NSERR_CACONF_CNFL_POSRELEXP_RELEXP_ERROR_MESSAGE string = "Conflicting arguments, weekPosRelExpiry and relExpiry" NSERR_CACONF_CNFL_POSRELEXP_RELEXPMILI_ERROR_CODE errorCode = 499 NSERR_CACONF_CNFL_POSRELEXP_RELEXPMILI_ERROR_MESSAGE string = "Conflicting arguments, weekPosRelExpiry and relExpiryMiliSec" NSERR_CACONF_CNFL_ABSEXP_POSRELEXP_ERROR_CODE errorCode = 500 NSERR_CACONF_CNFL_ABSEXP_POSRELEXP_ERROR_MESSAGE string = "Conflicting arguments, absExpiry and weekPosRelExpiry" NSERR_CACONF_CNFL_ABSEXPGMT_POSRELEXP_ERROR_CODE errorCode = 501 NSERR_CACONF_CNFL_ABSEXPGMT_POSRELEXP_ERROR_MESSAGE string = "Conflicting arguments, absExpiryGMT and weekPosRelExpiry" NSERR_CACONF_CNFL_IGNRPARAMVALCASE_HITPARAMS_ERROR_CODE errorCode = 502 NSERR_CACONF_CNFL_IGNRPARAMVALCASE_HITPARAMS_ERROR_MESSAGE string = "Invalid arguments, ignoreParamValueCase is set while hitParams is 0" NSERR_CACONF_CNFL_HIT_INVALPARAMS_MATCHCUKY_ERROR_CODE errorCode = 503 NSERR_CACONF_CNFL_HIT_INVALPARAMS_MATCHCUKY_ERROR_MESSAGE string = "Invalid arguments, matchCookies is set while both hitParams and invalParams are 0" NSERR_CACONF_CNFL_INVALREST2HOST_INVALPARAM_ERROR_CODE errorCode = 504 NSERR_CACONF_CNFL_INVALREST2HOST_INVALPARAM_ERROR_MESSAGE string = "Invalid arguments, invalRestrictedToHost is set while invalParams is 0" NSERR_CACONF_CNFL_PREFETCH_PREFETCHSEC_ERROR_CODE errorCode = 505 NSERR_CACONF_CNFL_PREFETCH_PREFETCHSEC_ERROR_MESSAGE string = "Invalid arguments, prefetchPeriod is set while prefetch is disabled" NSERR_CACONF_CNFL_PREFETCH_PREFETCHMILI_ERROR_CODE errorCode = 506 NSERR_CACONF_CNFL_PREFETCH_PREFETCHMILI_ERROR_MESSAGE string = "Invalid arguments, prefetchPeriodMilliSec is set while prefetch is disabled" NSERR_CACONF_CNFL_PREFETCHMILI_PREFETCHSEC_ERROR_CODE errorCode = 507 NSERR_CACONF_CNFL_PREFETCHMILI_PREFETCHSEC_ERROR_MESSAGE string = "Conflicting arguments, prefetchPeriodMilliSec and prefetchPeriod" NSERR_CACONF_ARG_LE_MIN_VAL_ERROR_CODE errorCode = 508 NSERR_CACONF_ARG_LE_MIN_VAL_ERROR_MESSAGE string = "Invalid arguments, given value is less than the minimum value" NSERR_CACONF_ARG_GE_MAX_VAL_ERROR_CODE errorCode = 509 NSERR_CACONF_ARG_GE_MAX_VAL_ERROR_MESSAGE string = "Invalid arguments, given value is more than the maximum value" NSERR_CACHEGROUP_NEGMINHIT_ERROR_CODE errorCode = 510 NSERR_CACHEGROUP_NEGMINHIT_ERROR_MESSAGE string = "ContentGroup cannot have negative minHit." NSERR_CACHEHA_OBJPERSIST_NOTSET_ERROR_CODE errorCode = 511 NSERR_CACHEHA_OBJPERSIST_NOTSET_ERROR_MESSAGE string = "Cache Object Sync to Secondary is not set, use set cache parameter to enable." NSERR_CACHEGROUP_INVALID_OPERATION_ERROR_CODE errorCode = 758 NSERR_CACHEGROUP_INVALID_OPERATION_ERROR_MESSAGE string = "This operation is not permitted on selector based contentgroup" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#centralmgmtserver-errors NSERR_CENTRALMGMTSERVER_REGFAILED_ERROR_CODE errorCode = 2047 NSERR_CENTRALMGMTSERVER_REGFAILED_ERROR_MESSAGE string = "Registration of device failed" NSERR_CENTRALMGMTSERVER_REQARGMISSING_ERROR_CODE errorCode = 2988 NSERR_CENTRALMGMTSERVER_REQARGMISSING_ERROR_MESSAGE string = "Required argument missing" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cfe-errors NSERR_NOSUCHIOCTL_ERROR_CODE errorCode = 1184 NSERR_NOSUCHIOCTL_ERROR_MESSAGE string = "Command not implemented on server" NSERR_NOTARGETS_ERROR_CODE errorCode = 1185 NSERR_NOTARGETS_ERROR_MESSAGE string = "No configured targets" NSERR_CANTRECOVER_ERROR_CODE errorCode = 1186 NSERR_CANTRECOVER_ERROR_MESSAGE string = "Configuration possibly inconsistent. Please check with the \"show configstatus\" command or reboot." NSERR_IGNOREDIOCTL_ERROR_CODE errorCode = 1187 NSERR_IGNOREDIOCTL_ERROR_MESSAGE string = "The command was ignored." NSERR_REMOTECLOSE_ERROR_CODE errorCode = 1188 NSERR_REMOTECLOSE_ERROR_MESSAGE string = "The remote side closed the connection." NSERR_INVALID_TARGET_ERROR_CODE errorCode = 1189 NSERR_INVALID_TARGET_ERROR_MESSAGE string = "The specified target does not exist" NSERR_FILE_ERROR_ERROR_CODE errorCode = 1190 NSERR_FILE_ERROR_ERROR_MESSAGE string = "File operation failed" NSERR_COMMENT_DROPPED_ERROR_CODE errorCode = 1191 NSERR_COMMENT_DROPPED_ERROR_MESSAGE string = "Failed to retain all comments" NSERR_AGGREQ_TIMEOUT_ERROR_CODE errorCode = 1192 NSERR_AGGREQ_TIMEOUT_ERROR_MESSAGE string = "Request to Aggregator timed out" NSERR_AGGREAD_ERROR_CODE errorCode = 1193 NSERR_AGGREAD_ERROR_MESSAGE string = "Failed to read data from Aggregator" NSERR_RPC_CMD_DUP_ERROR_CODE errorCode = 1194 NSERR_RPC_CMD_DUP_ERROR_MESSAGE string = "Found unexpected RPC duplicate command" NSERR_RPC_CMD_NONDUP_ERROR_CODE errorCode = 1195 NSERR_RPC_CMD_NONDUP_ERROR_MESSAGE string = "Found unexpected RPC command" NSERR_CFE_PE_COMM_ERROR_CODE errorCode = 1196 NSERR_CFE_PE_COMM_ERROR_MESSAGE string = "Communication error with the packet engine" NSERR_AGG_CONFAIL_ERROR_CODE errorCode = 1197 NSERR_AGG_CONFAIL_ERROR_MESSAGE string = "Failed to connect to the aggregator" NSERR_CFE_PE_TIMOUT_ERROR_CODE errorCode = 1198 NSERR_CFE_PE_TIMOUT_ERROR_MESSAGE string = "No response from the packet engine" NSERR_AGG_INVALIDRESPONSE_ERROR_CODE errorCode = 1199 NSERR_AGG_INVALIDRESPONSE_ERROR_MESSAGE string = "Invalid response from the aggregator" NSERR_NONTPSVR_ERROR_CODE errorCode = 1200 NSERR_NONTPSVR_ERROR_MESSAGE string = "Cannot enable ntpd when there is no ntp server configured" NSERR_AGG_SENDFAIL_ERROR_CODE errorCode = 1201 NSERR_AGG_SENDFAIL_ERROR_MESSAGE string = "Failed to send to aggregator" NSERR_CFE_ASLEARN_COMM_ERROR_CODE errorCode = 1202 NSERR_CFE_ASLEARN_COMM_ERROR_MESSAGE string = "Communication error with aslearn" NSERR_READONLY_SESSION_ERROR_CODE errorCode = 1203 NSERR_READONLY_SESSION_ERROR_MESSAGE string = "Session is read-only; connect to the Cluster IP address to modify the configuration" NSERR_WRONG_PE_STATE_ERROR_CODE errorCode = 1204 NSERR_WRONG_PE_STATE_ERROR_MESSAGE string = "The packet engine is in the wrong state to receive this command" NSERR_CFE_VALIDATION_FAILED_ERROR_CODE errorCode = 1205 NSERR_CFE_VALIDATION_FAILED_ERROR_MESSAGE string = "Config validation failed" NSERR_XPATH_INTERNAL_ERROR_CODE errorCode = 1206 NSERR_XPATH_INTERNAL_ERROR_MESSAGE string = "XPATH Internal Error" NSERR_CFE_CALLHOME_COMM_ERROR_CODE errorCode = 1207 NSERR_CFE_CALLHOME_COMM_ERROR_MESSAGE string = "Communication error with callhome" NSERR_BIND_NOENT_ERROR_CODE errorCode = 1208 NSERR_BIND_NOENT_ERROR_MESSAGE string = "No such bind resource" NSERR_PPNETMASK_ERROR_CODE errorCode = 1209 NSERR_PPNETMASK_ERROR_MESSAGE string = "Netmask length 31 supports only point to point communications" NSERR_CFE_CLFSYNCD_COMM_ERROR_CODE errorCode = 1210 NSERR_CFE_CLFSYNCD_COMM_ERROR_MESSAGE string = "Communication error with cluster filesync server" NSERR_DB_INTERNAL_ERROR_CODE errorCode = 1211 NSERR_DB_INTERNAL_ERROR_MESSAGE string = "Config DB Internal Error" NSERR_MIPDEPRECATED_ERROR_CODE errorCode = 1212 NSERR_MIPDEPRECATED_ERROR_MESSAGE string = "MIP is deprecated. Please use SNIP" NSERR_VAL_INCONSITENT_ERROR_CODE errorCode = 1214 NSERR_VAL_INCONSITENT_ERROR_MESSAGE string = "Validation inconsistent between PE and configd." NSERR_CALLHOME_LOW_HB_CUSTOM_INTERVAL_ERROR_CODE errorCode = 1215 NSERR_CALLHOME_LOW_HB_CUSTOM_INTERVAL_ERROR_MESSAGE string = "Setting a low heartbeat interval will result in frequent CallHome uploads" NSERR_INVALIDTIMEOUT_ERROR_CODE errorCode = 1219 NSERR_INVALIDTIMEOUT_ERROR_MESSAGE string = "Invalid Timeout, it cannot be beyond admin configured value and should be between in the range of 300-86400" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cli-errors NSERR_TCPCONNFAIL_ERROR_CODE errorCode = 1024 NSERR_TCPCONNFAIL_ERROR_MESSAGE string = "Connection failed" NSERR_LOGINFAIL_ERROR_CODE errorCode = 1025 NSERR_LOGINFAIL_ERROR_MESSAGE string = "Login failed" NSERR_NOLOGIN_ERROR_CODE errorCode = 1026 NSERR_NOLOGIN_ERROR_MESSAGE string = "Not logged in" NSERR_AUTHTIMEOUT_ERROR_CODE errorCode = 1027 NSERR_AUTHTIMEOUT_ERROR_MESSAGE string = "Not logged in or connection timed out" NSERR_NOT_PRIMARY_ERROR_CODE errorCode = 1028 NSERR_NOT_PRIMARY_ERROR_MESSAGE string = "" /* 133-byte string literal not displayed */ NSERR_REMOTEOP_ERROR_CODE errorCode = 1029 NSERR_REMOTEOP_ERROR_MESSAGE string = "Operation cannot be performed from remote login" NSERR_CONNLOST_ERROR_CODE errorCode = 1030 NSERR_CONNLOST_ERROR_MESSAGE string = "Connection with NetScaler lost" NSERR_RPCDATAMISMATCH_ERROR_CODE errorCode = 1031 NSERR_RPCDATAMISMATCH_ERROR_MESSAGE string = "Communication error (RPC data-size mismatch)" NSERR_RPCBADREPLY_ERROR_CODE errorCode = 1032 NSERR_RPCBADREPLY_ERROR_MESSAGE string = "Communication error (bad RPC reply)" NSERR_UNABLETOPROMPT_ERROR_CODE errorCode = 1033 NSERR_UNABLETOPROMPT_ERROR_MESSAGE string = "Unable to display secondary prompt" NSERR_LOGIN_CHALLENGED_ERROR_CODE errorCode = 1034 NSERR_LOGIN_CHALLENGED_ERROR_MESSAGE string = "Login challenged" NSERR_LOGOUT_SAVE_ERROR_CODE errorCode = 1035 NSERR_LOGOUT_SAVE_ERROR_MESSAGE string = "You are leaving without saving changes. Save changes now (Y/N)? [N]:" NSERR_CLEAR_CONFIG_ERROR_CODE errorCode = 1036 NSERR_CLEAR_CONFIG_ERROR_MESSAGE string = "Are you sure you want to clear the configuration(Y/N)? [N]:" NSERR_REBOOT_ERROR_CODE errorCode = 1037 NSERR_REBOOT_ERROR_MESSAGE string = "Are you sure you want to restart NetScaler (Y/N)? [N]:" NSERR_SHUTDOWNNS_ERROR_CODE errorCode = 1038 NSERR_SHUTDOWNNS_ERROR_MESSAGE string = "Are you sure you want to completely stop NetScaler (Y/N)? [N]:" NSERR_REBOOT_SAVE_ERROR_CODE errorCode = 1039 NSERR_REBOOT_SAVE_ERROR_MESSAGE string = "Configuration not Saved. Are you sure you want to restart NetScaler (Y/N)? [N]:" NSERR_USERABORT_ERROR_CODE errorCode = 1040 NSERR_USERABORT_ERROR_MESSAGE string = "User requested abort" NSERR_EOF_ERROR_CODE errorCode = 1041 NSERR_EOF_ERROR_MESSAGE string = "EOF" NSERR_INTERRUPT_ERROR_CODE errorCode = 1042 NSERR_INTERRUPT_ERROR_MESSAGE string = "Interrupted" NSERR_INTERNAL_ERROR_CODE errorCode = 1043 NSERR_INTERNAL_ERROR_MESSAGE string = "Internal error" NSERR_NOT_CLIP_ERROR_CODE errorCode = 1044 NSERR_NOT_CLIP_ERROR_MESSAGE string = "" /* 147-byte string literal not displayed */ NSERR_EULA_NOTACCEPTED_ERROR_CODE errorCode = 1045 NSERR_EULA_NOTACCEPTED_ERROR_MESSAGE string = "End User License Agreement not accepted. Login from CLI/GUI to accept it." NSERR_FORCE_PWDCHANGE_ERROR_CODE errorCode = 1046 NSERR_FORCE_PWDCHANGE_ERROR_MESSAGE string = "ForcePasswordChange is enabled. Please login from CLI/GUI to change the default nsroot password" NSERR_PWD_EXISTS_ERROR_CODE errorCode = 1047 NSERR_PWD_EXISTS_ERROR_MESSAGE string = "Default nsroot password is not allowed. Please enter a new password." NSERR_STRMAXLEN_255_ERROR_CODE errorCode = 1048 NSERR_STRMAXLEN_255_ERROR_MESSAGE string = "String length exceeds maximum. Allowed maximum length is 255 bytes." NSERR_STRMAXLEN_32_ERROR_CODE errorCode = 1049 NSERR_STRMAXLEN_32_ERROR_MESSAGE string = "String length exceeds maximum. Allowed maximum length is 32." NSERR_NOPREFIX_LENGTH_ERROR_CODE errorCode = 1050 NSERR_NOPREFIX_LENGTH_ERROR_MESSAGE string = "Prefix length must be given with network" NSERR_INVALIDPOLLVAL_ERROR_CODE errorCode = 1051 NSERR_INVALIDPOLLVAL_ERROR_MESSAGE string = "Minpoll value should not be greater than maxpoll" NSERR_SHELL_ACCESS_ERROR_CODE errorCode = 1052 NSERR_SHELL_ACCESS_ERROR_MESSAGE string = "User has shell access" NSERR_NORESPONSE_ERROR_CODE errorCode = 1056 NSERR_NORESPONSE_ERROR_MESSAGE string = "No response from NetScaler" NSERR_IOERROR_ERROR_CODE errorCode = 1057 NSERR_IOERROR_ERROR_MESSAGE string = "I/O error" NSERR_ENV_ERROR_CODE errorCode = 1058 NSERR_ENV_ERROR_MESSAGE string = "Environment error" NSERR_CMDSFAILED_ERROR_CODE errorCode = 1059 NSERR_CMDSFAILED_ERROR_MESSAGE string = "Some commands failed" NSERR_ALLCMDSFAILED_ERROR_CODE errorCode = 1060 NSERR_ALLCMDSFAILED_ERROR_MESSAGE string = "All commands failed" NSERR_INTMINVAL_CLT_IDLETIMEOUT_ERROR_CODE errorCode = 1061 NSERR_INTMINVAL_CLT_IDLETIMEOUT_ERROR_MESSAGE string = "Integer value below minimum for client idle timeout." NSERR_INTMINVAL_SRV_IDLETIMEOUT_ERROR_CODE errorCode = 1062 NSERR_INTMINVAL_SRV_IDLETIMEOUT_ERROR_MESSAGE string = "Integer value below minimum for server idle timeout." NSERR_INVALID_TCP_OPTION_TYPE_ERROR_CODE errorCode = 1063 NSERR_INVALID_TCP_OPTION_TYPE_ERROR_MESSAGE string = "Invalid tcp option type value. Allowed type values are 0 to 254" NSERR_NSINTERNAL_DEFPSWD_WARN_ERROR_CODE errorCode = 1064 NSERR_NSINTERNAL_DEFPSWD_WARN_ERROR_MESSAGE string = "" /* 130-byte string literal not displayed */ NSERR_OPNOTALLOW_ONCLIP_ERROR_CODE errorCode = 1065 NSERR_OPNOTALLOW_ONCLIP_ERROR_MESSAGE string = "Operation not permitted on CLIP" NSERR_LICEXPIRED_ERROR_CODE errorCode = 1066 NSERR_LICEXPIRED_ERROR_MESSAGE string = "Features(s) license expired" NSERR_FEATDISABLED_ERROR_CODE errorCode = 1067 NSERR_FEATDISABLED_ERROR_MESSAGE string = "Feature(s) not enabled" NSERR_LESS_PE_ERROR_CODE errorCode = 1068 NSERR_LESS_PE_ERROR_MESSAGE string = "Operation not permitted. PE pool is not enough to enable additional management CPU" NSERR_MAXLIMIT_ERROR_CODE errorCode = 1072 NSERR_MAXLIMIT_ERROR_MESSAGE string = "Maximum resource limit reached" NSERR_SET_NOSUPPORT_ERROR_CODE errorCode = 1073 NSERR_SET_NOSUPPORT_ERROR_MESSAGE string = "Set operation not supported" NSERR_INVALIDVALUE_ERROR_CODE errorCode = 1074 NSERR_INVALIDVALUE_ERROR_MESSAGE string = "Invalid value" NSERR_INVALIDNAME_ERROR_CODE errorCode = 1075 NSERR_INVALIDNAME_ERROR_MESSAGE string = "" /* 153-byte string literal not displayed */ NSERR_INVALIDPASSWORD_ERROR_CODE errorCode = 1076 NSERR_INVALIDPASSWORD_ERROR_MESSAGE string = "" /* 180-byte string literal not displayed */ NSERR_INVALIDMINPASSWORDLENGTH_ERROR_CODE errorCode = 1077 NSERR_INVALIDMINPASSWORDLENGTH_ERROR_MESSAGE string = "Minimum password length should be greater than or equal to 8 when strong password is enabled" NSERR_ENABLINGPASSWORDCOMPLEXITY_ERROR_CODE errorCode = 1078 NSERR_ENABLINGPASSWORDCOMPLEXITY_ERROR_MESSAGE string = "" /* 150-byte string literal not displayed */ NSERR_INVALIDPASSWORDLENGTH_ERROR_CODE errorCode = 1079 NSERR_INVALIDPASSWORDLENGTH_ERROR_MESSAGE string = "Password length should adhere to minimum password length value in system parameter settings." NSERR_CANNOTSETMINPASSWORDLENGTH_ERROR_CODE errorCode = 1080 NSERR_CANNOTSETMINPASSWORDLENGTH_ERROR_MESSAGE string = "Strong Password needs to be enabled to set the Minimum Password Length value." NSERR_NOSUCHCMD_ERROR_CODE errorCode = 1088 NSERR_NOSUCHCMD_ERROR_MESSAGE string = "No such command" NSERR_CMDAMBIGUOUS_ERROR_CODE errorCode = 1089 NSERR_CMDAMBIGUOUS_ERROR_MESSAGE string = "Ambiguous command name" NSERR_NOSUCHARG_ERROR_CODE errorCode = 1090 NSERR_NOSUCHARG_ERROR_MESSAGE string = "No such argument" NSERR_ARGVALMISSING_ERROR_CODE errorCode = 1091 NSERR_ARGVALMISSING_ERROR_MESSAGE string = "Required argument value missing" NSERR_ARGSMUTEX_ERROR_CODE errorCode = 1092 NSERR_ARGSMUTEX_ERROR_MESSAGE string = "Arguments cannot both be specified" NSERR_ARGPREREQ_ERROR_CODE errorCode = 1093 NSERR_ARGPREREQ_ERROR_MESSAGE string = "Argument pre-requisite missing" NSERR_ARGSTOOFEW_ERROR_CODE errorCode = 1094 NSERR_ARGSTOOFEW_ERROR_MESSAGE string = "Too few arguments" NSERR_ARGMISSING_ERROR_CODE errorCode = 1095 NSERR_ARGMISSING_ERROR_MESSAGE string = "Required argument missing" NSERR_ARGORDER_ERROR_CODE errorCode = 1096 NSERR_ARGORDER_ERROR_MESSAGE string = "Argument(s) out of order" NSERR_ARGVALBAD_ERROR_CODE errorCode = 1097 NSERR_ARGVALBAD_ERROR_MESSAGE string = "Invalid argument value" NSERR_ARGVALSEQ_ERROR_CODE errorCode = 1098 NSERR_ARGVALSEQ_ERROR_MESSAGE string = "Arguments cannot have the same value" NSERR_ARGAMBIGUOUS_ERROR_CODE errorCode = 1099 NSERR_ARGAMBIGUOUS_ERROR_MESSAGE string = "Ambiguous argument name" NSERR_SYNCGSLBCONFIG_ERROR_CODE errorCode = 1100 NSERR_SYNCGSLBCONFIG_ERROR_MESSAGE string = "Please confirm whether you want to sync-config (Y/N)? [N]:" NSERR_SYNCGSLBCONFIG_WARN_ERROR_CODE errorCode = 1101 NSERR_SYNCGSLBCONFIG_WARN_ERROR_MESSAGE string = "" /* 166-byte string literal not displayed */ NSERR_FORCESYNCGSLBCONFIG_WARN_ERROR_CODE errorCode = 1134 NSERR_FORCESYNCGSLBCONFIG_WARN_ERROR_MESSAGE string = "" /* 190-byte string literal not displayed */ NSERR_ARGVALSNEQ_ERROR_CODE errorCode = 1104 NSERR_ARGVALSNEQ_ERROR_MESSAGE string = "Arguments must have the same value" NSERR_ARGVALAMBIGUOUS_ERROR_CODE errorCode = 1105 NSERR_ARGVALAMBIGUOUS_ERROR_MESSAGE string = "Ambiguous argument value" NSERR_STRMAXLEN_ERROR_CODE errorCode = 1106 NSERR_STRMAXLEN_ERROR_MESSAGE string = "String length exceeds maximum" NSERR_STRMINLEN_ERROR_CODE errorCode = 1107 NSERR_STRMINLEN_ERROR_MESSAGE string = "String too short" NSERR_INTMAXVAL_ERROR_CODE errorCode = 1108 NSERR_INTMAXVAL_ERROR_MESSAGE string = "Integer value exceeds maximum" NSERR_INTMINVAL_ERROR_CODE errorCode = 1109 NSERR_INTMINVAL_ERROR_MESSAGE string = "Integer value below minimum" NSERR_INVALIDIP_ERROR_CODE errorCode = 1110 NSERR_INVALIDIP_ERROR_MESSAGE string = "Invalid IP address" NSERR_INVALIDNETMASK_ERROR_CODE errorCode = 1111 NSERR_INVALIDNETMASK_ERROR_MESSAGE string = "Invalid netmask" NSERR_TOOMANYVALS_ERROR_CODE errorCode = 1112 NSERR_TOOMANYVALS_ERROR_MESSAGE string = "Argument has too many values" NSERR_BADRANGE_ERROR_CODE errorCode = 1113 NSERR_BADRANGE_ERROR_MESSAGE string = "Range minimum exceeds range maximum" NSERR_EXPRQUOTES_ERROR_CODE errorCode = 1114 NSERR_EXPRQUOTES_ERROR_MESSAGE string = "Expression must be enclosed in quotes" NSERR_BADQUOTES_ERROR_CODE errorCode = 1115 NSERR_BADQUOTES_ERROR_MESSAGE string = "Unmatched quote" NSERR_INVALIDRANGE_ERROR_CODE errorCode = 1116 NSERR_INVALIDRANGE_ERROR_MESSAGE string = "Invalid range specification" NSERR_MISMATCHRANGES_ERROR_CODE errorCode = 1117 NSERR_MISMATCHRANGES_ERROR_MESSAGE string = "Ranges are different sizes" NSERR_MULTIRANGES_ERROR_CODE errorCode = 1118 NSERR_MULTIRANGES_ERROR_MESSAGE string = "Only one range allowed per argument" NSERR_NOMATCHCHAR_ERROR_CODE errorCode = 1119 NSERR_NOMATCHCHAR_ERROR_MESSAGE string = "Unmatched character" NSERR_NEEDREBOOT_ERROR_CODE errorCode = 1120 NSERR_NEEDREBOOT_ERROR_MESSAGE string = "The configuration must be saved and the system rebooted for these settings to take effect" NSQ_SAVECONFIG_ERROR_CODE errorCode = 1121 NSQ_SAVECONFIG_ERROR_MESSAGE string = "Do you want to save the new configuration?" NSERR_NOTSAVED_ERROR_CODE errorCode = 1122 NSERR_NOTSAVED_ERROR_MESSAGE string = "The configuration changes were not saved - they will be lost on the next reboot" NSERR_CMDEXEC_ERROR_CODE errorCode = 1123 NSERR_CMDEXEC_ERROR_MESSAGE string = "Error(s) occurred - some or all changes may not be applied" NSQ_REBOOT_ERROR_CODE errorCode = 1124 NSQ_REBOOT_ERROR_MESSAGE string = "Do you want to reboot the system now?" NSERR_NOREBOOT_ERROR_CODE errorCode = 1125 NSERR_NOREBOOT_ERROR_MESSAGE string = "The configuration changes will not take effect until the system is rebooted" NSERR_PGMFAILED_ERROR_CODE errorCode = 1126 NSERR_PGMFAILED_ERROR_MESSAGE string = "External program failed" NSERR_CTXMODE_ERROR_CODE errorCode = 1127 NSERR_CTXMODE_ERROR_MESSAGE string = "Contextual CLI mode" NSERR_CMDINCOMPLETE_ERROR_CODE errorCode = 1128 NSERR_CMDINCOMPLETE_ERROR_MESSAGE string = "Incomplete command" NSERR_CMDOUTOFCTX_ERROR_CODE errorCode = 1129 NSERR_CMDOUTOFCTX_ERROR_MESSAGE string = "Command not valid here" NSERR_CONFIGSAVED_ERROR_CODE errorCode = 1130 NSERR_CONFIGSAVED_ERROR_MESSAGE string = "The running configuration has been saved" NSERR_CONFIGCLEARED_ERROR_CODE errorCode = 1131 NSERR_CONFIGCLEARED_ERROR_MESSAGE string = "The running configuration has been cleared" NSERR_REBOOTING_ERROR_CODE errorCode = 1132 NSERR_REBOOTING_ERROR_MESSAGE string = "NetScaler is rebooting now" NSERR_NOCONFIGSAVE_ERROR_CODE errorCode = 1133 NSERR_NOCONFIGSAVE_ERROR_MESSAGE string = "The running configuration has not changed" NSERR_REGEXNOANCHOR_ERROR_CODE errorCode = 1135 NSERR_REGEXNOANCHOR_ERROR_MESSAGE string = "First character of regular expression must be '^'" NSERR_REGEXNOMATCH_ERROR_CODE errorCode = 1136 NSERR_REGEXNOMATCH_ERROR_MESSAGE string = "Regular expression does not match" NSERR_REGEXINVALID_ERROR_CODE errorCode = 1137 NSERR_REGEXINVALID_ERROR_MESSAGE string = "Invalid regular expression" NSERR_REGEXNOTALLOWED_ERROR_CODE errorCode = 1138 NSERR_REGEXNOTALLOWED_ERROR_MESSAGE string = "Regular expression not allowed" NSERR_REGEXNOCMD_ERROR_CODE errorCode = 1139 NSERR_REGEXNOCMD_ERROR_MESSAGE string = "No matches" NSERR_INVALIDIPV6_FORMAT_ERROR_CODE errorCode = 1140 NSERR_INVALIDIPV6_FORMAT_ERROR_MESSAGE string = "Invalid IPv6 address" NSERR_INVALIDIPV6_TWO_DOUBECOLON_ERROR_CODE errorCode = 1141 NSERR_INVALIDIPV6_TWO_DOUBECOLON_ERROR_MESSAGE string = "Double-colon can appear only once in an IPv6 address" NSERR_INVALIDIPV6_NOPREFIX_LENGTH_ERROR_CODE errorCode = 1142 NSERR_INVALIDIPV6_NOPREFIX_LENGTH_ERROR_MESSAGE string = "Prefix length must be given with an IPv6 address" NSERR_INVALIDIPV6_PREFIX_VALUE_ERROR_CODE errorCode = 1143 NSERR_INVALIDIPV6_PREFIX_VALUE_ERROR_MESSAGE string = "Prefix length must be in the range of 0-128" NSERR_TERMNAMEINVALID_ERROR_CODE errorCode = 1144 NSERR_TERMNAMEINVALID_ERROR_MESSAGE string = "Invalid term name" NSERR_TERMINVALID_ERROR_CODE errorCode = 1145 NSERR_TERMINVALID_ERROR_MESSAGE string = "Invalid syntax in term" NSERR_FORCEFAILOVER_ERROR_CODE errorCode = 1146 NSERR_FORCEFAILOVER_ERROR_MESSAGE string = "Please confirm whether you want force-failover (Y/N)? [N]:" NSERR_FORCEFAIL_HEALTH_WARN_ERROR_CODE errorCode = 1147 NSERR_FORCEFAIL_HEALTH_WARN_ERROR_MESSAGE string = "Force Failover may cause configuration loss, peer health not optimum. Reason(s):" NSERR_HELLOTIME_MULTIPLE_ERROR_CODE errorCode = 1148 NSERR_HELLOTIME_MULTIPLE_ERROR_MESSAGE string = "Invalid value. Hellotime Interval must be a multiple of 200" NSERR_FORCESYNCSAVE_ERROR_CODE errorCode = 1149 NSERR_FORCESYNCSAVE_ERROR_MESSAGE string = "Do you want to save the config after sync (Y/N)? [Y]:" NSERR_ERROUTFILENAME_ERROR_CODE errorCode = 1150 NSERR_ERROUTFILENAME_ERROR_MESSAGE string = "Character '/' not allowed in outfilename" NSERR_RNATIPDEL_ERROR_CODE errorCode = 1151 NSERR_RNATIPDEL_ERROR_MESSAGE string = "address is bound to rnat config, can not be removed" NSERR_INVALIDALIAS_ERROR_CODE errorCode = 1152 NSERR_INVALIDALIAS_ERROR_MESSAGE string = "Invalid alias" NSERR_NOSUCHALIAS_ERROR_CODE errorCode = 1153 NSERR_NOSUCHALIAS_ERROR_MESSAGE string = "No such alias" NSERR_ALIASEXISTS_ERROR_CODE errorCode = 1154 NSERR_ALIASEXISTS_ERROR_MESSAGE string = "Alias already exists" NSERR_NOSUCHFILE_ERROR_CODE errorCode = 1155 NSERR_NOSUCHFILE_ERROR_MESSAGE string = "No such file" NSERR_NOTREGFILE_ERROR_CODE errorCode = 1156 NSERR_NOTREGFILE_ERROR_MESSAGE string = "Not a file" NSERR_DEPRCMD_ERROR_CODE errorCode = 1157 NSERR_DEPRCMD_ERROR_MESSAGE string = "Command deprecated" NSERR_DEPRARG_ERROR_CODE errorCode = 1158 NSERR_DEPRARG_ERROR_MESSAGE string = "Argument deprecated" NSERR_NOTLOGFILE_ERROR_CODE errorCode = 1159 NSERR_NOTLOGFILE_ERROR_MESSAGE string = "Not a NetScaler log file" NSERR_NOPLENFORIPV6RANGE_ERROR_CODE errorCode = 1160 NSERR_NOPLENFORIPV6RANGE_ERROR_MESSAGE string = "Prefix length cannot be specified for an IPv6 range" NSERR_INVALIDINT_ERROR_CODE errorCode = 1161 NSERR_INVALIDINT_ERROR_MESSAGE string = "Integer not in range" NSERR_CMDAMBIGUOUS_USECOMPLETIONSOPTIONS_ERROR_CODE errorCode = 1162 NSERR_CMDAMBIGUOUS_USECOMPLETIONSOPTIONS_ERROR_MESSAGE string = "Ambiguous (use cmd completion for options)" NSERR_METADATA_INVAL_ENTITYTYPE_ERROR_CODE errorCode = 1163 NSERR_METADATA_INVAL_ENTITYTYPE_ERROR_MESSAGE string = "Invalid Entity Type" NSERR_SETNOTEXIST_ERROR_CODE errorCode = 1164 NSERR_SETNOTEXIST_ERROR_MESSAGE string = "set operation does not exist" NSERR_SETARGNOTEXIST_ERROR_CODE errorCode = 1165 NSERR_SETARGNOTEXIST_ERROR_MESSAGE string = "set operation for one of the modified argument does not exist" NSERR_INVALID_DS_ERROR_CODE errorCode = 1166 NSERR_INVALID_DS_ERROR_MESSAGE string = "Invalid datasource" NSERR_NOSUCHCOUNTER_ERROR_CODE errorCode = 1167 NSERR_NOSUCHCOUNTER_ERROR_MESSAGE string = "No such counter" NSERR_INVALIDIPMASK_ERROR_CODE errorCode = 1168 NSERR_INVALIDIPMASK_ERROR_MESSAGE string = "Invalid IP address mask" NSERR_INVALIDIPPAT_ERROR_CODE errorCode = 1169 NSERR_INVALIDIPPAT_ERROR_MESSAGE string = "Invalid IP address pattern" NSERR_BADRC_ERROR_CODE errorCode = 1170 NSERR_BADRC_ERROR_MESSAGE string = "Unexpected return code" NSERR_INVALIDRANGETYPE_ERROR_CODE errorCode = 1171 NSERR_INVALIDRANGETYPE_ERROR_MESSAGE string = "Inappropriate range values for value type" NSERR_INVALIDRANGEVAL_ERROR_CODE errorCode = 1172 NSERR_INVALIDRANGEVAL_ERROR_MESSAGE string = "Invalid range value" NSERR_INVALIDIPV6_PREFIX_LENGTH_ERROR_CODE errorCode = 1173 NSERR_INVALIDIPV6_PREFIX_LENGTH_ERROR_MESSAGE string = "Prefix length must not be given" NSERR_ENTITYDELETE_FAIL_ERROR_CODE errorCode = 1174 NSERR_ENTITYDELETE_FAIL_ERROR_MESSAGE string = "Can not delete active entity" NSERR_DONE_ERROR_CODE errorCode = 1175 NSERR_DONE_ERROR_MESSAGE string = "This is the last result" NSERR_RNATIPDEL2_ERROR_CODE errorCode = 1176 NSERR_RNATIPDEL2_ERROR_MESSAGE string = "An RNAT address requires an IP address to exist" NSERR_INCOMPATIBLEIP_ERROR_CODE errorCode = 1181 NSERR_INCOMPATIBLEIP_ERROR_MESSAGE string = "Private IP and public IP must be either IPv4 or IPv6" NSERR_TRANSCR_IP_ERROR_CODE errorCode = 1182 NSERR_TRANSCR_IP_ERROR_MESSAGE string = "For transparent CR vserver, you cannot specify IP address" NSERR_PASSWORD_MISMATCH_ERROR_CODE errorCode = 1183 NSERR_PASSWORD_MISMATCH_ERROR_MESSAGE string = "Passwords entered do not match" NSERR_LEADING_TRAILING_SPACES_ERROR_CODE errorCode = 1053 NSERR_LEADING_TRAILING_SPACES_ERROR_MESSAGE string = "Leading or Trailing spaces in string" NSERR_SAVENOTDONE_ERROR_CODE errorCode = 1054 NSERR_SAVENOTDONE_ERROR_MESSAGE string = "The running configuration is not saved" NSERR_INVALIDIP_VSVRTYPE_ERROR_CODE errorCode = 1178 NSERR_INVALIDIP_VSVRTYPE_ERROR_MESSAGE string = "Invalid IP address or Vserver Type" NSERR_HELLOTIME_DEADINTERVAL_COMBINATION_ERROR_CODE errorCode = 1177 NSERR_HELLOTIME_DEADINTERVAL_COMBINATION_ERROR_MESSAGE string = "The Hello Interval must be set to 200 msec when dead interval is less than 3 sec" NSERR_MAXSESSION_ERROR_CODE errorCode = 1179 NSERR_MAXSESSION_ERROR_MESSAGE string = "Maxsession cannot be set for this user" NSERR_NEEDREPLICATE_ERROR_CODE errorCode = 1180 NSERR_NEEDREPLICATE_ERROR_MESSAGE string = "This command will not be propagated to the other cluster nodes as you are connected to the NSIP of this cluster node" NSERR_HDOSP_DEPRECATED_ERROR_CODE errorCode = 3917 NSERR_HDOSP_DEPRECATED_ERROR_MESSAGE string = "HTTP DOS protection feature is no longer supported. Please use AppQOE feature." NSERR_PQ_DEPRECATED_ERROR_CODE errorCode = 3871 NSERR_PQ_DEPRECATED_ERROR_MESSAGE string = "Priority Queuing feature is no longer supported. Please use AppQOE feature." NSERR_IOH_DEPRECATED_ERROR_CODE errorCode = 3870 NSERR_IOH_DEPRECATED_ERROR_MESSAGE string = "Sure Connect feature is no longer supported. Please use AppQOE feature." NSERR_NOT_PRIVATE_EXPORT_ERROR_CODE errorCode = 1069 NSERR_NOT_PRIVATE_EXPORT_ERROR_MESSAGE string = "Private entities can not be exported" NSERR_OBJECT_IN_USE_ERROR_CODE errorCode = 1070 NSERR_OBJECT_IN_USE_ERROR_MESSAGE string = "Object in use, cannot delete" NSERR_CERBUNDLE_NOT_FOUND_ERROR_CODE errorCode = 1071 NSERR_CERBUNDLE_NOT_FOUND_ERROR_MESSAGE string = "Certbundle name not found in mapping file" NSERR_CERTBUNDLE_CANNOT_OPEN_PID_ERROR_CODE errorCode = 1086 NSERR_CERTBUNDLE_CANNOT_OPEN_PID_ERROR_MESSAGE string = "Cannot open nscertforgerd pid file" NSERR_FAILED_TO_APPLY_ERROR_CODE errorCode = 1087 NSERR_FAILED_TO_APPLY_ERROR_MESSAGE string = "Failed to apply new cert bundle" NSERR_AWS_UNSUP_ERROR_CODE errorCode = 1103 NSERR_AWS_UNSUP_ERROR_MESSAGE string = "Command not supported on AWS VPX" NSERR_POOLED_VPX_ERROR_CODE errorCode = 1102 NSERR_POOLED_VPX_ERROR_MESSAGE string = "Ensure to provision the VPX with the recommended settings for this Bandwidth." NSERR_GCP_UNSUPPORTED_MTU_ERROR_CODE errorCode = 2439 NSERR_GCP_UNSUPPORTED_MTU_ERROR_MESSAGE string = "MTU greater than 1460 bytes is not supported on this platform." NSERR_AWS_UNSUPPORTED_MTU_ERROR_CODE errorCode = 2440 NSERR_AWS_UNSUPPORTED_MTU_ERROR_MESSAGE string = "MTU greater than 9000 bytes is not supported on this platform." NSERR_INVALID_QUERYTYPE_FOR_IPV6_ERROR_CODE errorCode = 2441 NSERR_INVALID_QUERYTYPE_FOR_IPV6_ERROR_MESSAGE string = "Cannot use ipv6Address option with querytype set to A" NSERR_INVALID_CLIENTIP_TCPOPTION_ERROR_CODE errorCode = 2438 NSERR_INVALID_CLIENTIP_TCPOPTION_ERROR_MESSAGE string = "Invalid tcp option number for client ip" NSERR_ESX_UNSUPPORTED_MTU_ERROR_CODE errorCode = 1518 NSERR_ESX_UNSUPPORTED_MTU_ERROR_MESSAGE string = "MTU greater than 9000 bytes is not supported on this platform." NSERR_DYNAMIC_MESSAGE_ERROR_CODE errorCode = 407 NSERR_DYNAMIC_MESSAGE_ERROR_MESSAGE string = "" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cloudparam-errors NSERR_UUID_FORMAT_ERROR_CODE errorCode = 3563 NSERR_UUID_FORMAT_ERROR_MESSAGE string = "Invalid UUID format" NSERR_CUSTID_FORMAT_ERROR_CODE errorCode = 3564 NSERR_CUSTID_FORMAT_ERROR_MESSAGE string = "Invalid Citrix Cloud Customer ID format" NSERR_FQDN_FORMAT_ERROR_CODE errorCode = 3565 NSERR_FQDN_FORMAT_ERROR_MESSAGE string = "Invalid FQDN format" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cluster-errors NSERR_CLNOTEXIST_ERROR_CODE errorCode = 2448 NSERR_CLNOTEXIST_ERROR_MESSAGE string = "Cluster does not exist" NSERR_TOOMANYCLS_ERROR_CODE errorCode = 2449 NSERR_TOOMANYCLS_ERROR_MESSAGE string = "This node is already added to another cluster" NSERR_RMLOCALNODE_ERROR_CODE errorCode = 2450 NSERR_RMLOCALNODE_ERROR_MESSAGE string = "Local Node cannot be deleted" NSERR_BKPLANEENABLED_ERROR_CODE errorCode = 2451 NSERR_BKPLANEENABLED_ERROR_MESSAGE string = "Cluster Backplane is enabled on this interface" NSERR_LOCALNODE_NOTCONFIGURED_ERROR_CODE errorCode = 2452 NSERR_LOCALNODE_NOTCONFIGURED_ERROR_MESSAGE string = "Clustering cannot be enabled as the local node is not a member of the cluster." NSERR_HACL_CANNOT_COEXIST_ERROR_CODE errorCode = 2453 NSERR_HACL_CANNOT_COEXIST_ERROR_MESSAGE string = "Clustering and HA cannot coexist." NSERR_CLACPKEYNOTCRT_ERROR_CODE errorCode = 2454 NSERR_CLACPKEYNOTCRT_ERROR_MESSAGE string = "LACP key for Node/cluster is not correct" NSERR_CLNODE_EXIST_ERROR_CODE errorCode = 2455 NSERR_CLNODE_EXIST_ERROR_MESSAGE string = "already in cluster" NSERR_BKPLANEDISABLED_ERROR_CODE errorCode = 2456 NSERR_BKPLANEDISABLED_ERROR_MESSAGE string = "Disabling Cluster backplane interface" NSERR_CLAGTHROUGHPUT_ERROR_CODE errorCode = 2457 NSERR_CLAGTHROUGHPUT_ERROR_MESSAGE string = "Currently throughput settings are not allowed on CLAG" NSERR_LICMISMATCH_ERROR_CODE errorCode = 2458 NSERR_LICMISMATCH_ERROR_MESSAGE string = "License mismatch between Configuration Coordinator and local node" NSERR_CLIP_INVALIDNETMASK_ERROR_CODE errorCode = 2459 NSERR_CLIP_INVALIDNETMASK_ERROR_MESSAGE string = "CLIP netmask should be 255.255.255.255." NSERR_BKPLANELACPDELETE_ERROR_CODE errorCode = 2460 NSERR_BKPLANELACPDELETE_ERROR_MESSAGE string = "This is the last interface in LACP channel configured as backplane" NSERR_LINKSETMEMBER_ERROR_CODE errorCode = 2461 NSERR_LINKSETMEMBER_ERROR_MESSAGE string = "Interface/Channel is Linkset member." NSERR_CONFIG_PARAM_ERROR_CODE errorCode = 2462 NSERR_CONFIG_PARAM_ERROR_MESSAGE string = "Setting up of netscaler parameter ignored using this command in HA/Cluster mode. Use 'set nsparam' command for this purpose." NSERR_CLIP_INVALIDPREFIXLEN_ERROR_CODE errorCode = 2463 NSERR_CLIP_INVALIDPREFIXLEN_ERROR_MESSAGE string = "CLIP prefix length should be 128." NSERR_CLUSTER_L2NOTSUPP_ERROR_CODE errorCode = 2464 NSERR_CLUSTER_L2NOTSUPP_ERROR_MESSAGE string = "L2 Mode not supported in Cluster mode." NSERR_LINKSET_ONEPERNODE_ERROR_CODE errorCode = 2465 NSERR_LINKSET_ONEPERNODE_ERROR_MESSAGE string = "Linkset can have only one Interface/Channel per Node" NSERR_LINKSET_NOTBOUND_ERROR_CODE errorCode = 2466 NSERR_LINKSET_NOTBOUND_ERROR_MESSAGE string = "Interface/Channel not bound to Linkset" NSERR_LINKSET_IDINVALID_ERROR_CODE errorCode = 2467 NSERR_LINKSET_IDINVALID_ERROR_MESSAGE string = "Linkset name should be of form LS/, id range:1-32" NSERR_CLUSTER_NBNOTSUPP_ERROR_CODE errorCode = 2468 NSERR_CLUSTER_NBNOTSUPP_ERROR_MESSAGE string = "CloudBridge is not supported in Cluster mode." NSERR_CLUSTER_VPNNOTSUPP_ERROR_CODE errorCode = 2469 NSERR_CLUSTER_VPNNOTSUPP_ERROR_MESSAGE string = "SSLVPN is not supported in Cluster mode." NSERR_CLUSTER_AAANOTSUPP_ERROR_CODE errorCode = 2470 NSERR_CLUSTER_AAANOTSUPP_ERROR_MESSAGE string = "AAA is not supported in Cluster mode." NSERR_CLUSTER_IPSECNOTSUPP_ERROR_CODE errorCode = 2471 NSERR_CLUSTER_IPSECNOTSUPP_ERROR_MESSAGE string = "IPSEC is not supported in Cluster mode." NSERR_LINKSET_LAMEMBER_ERROR_CODE errorCode = 2472 NSERR_LINKSET_LAMEMBER_ERROR_MESSAGE string = "Interface part of a Channel" NSERR_CLIP_LOCALNODE_NOTCONFIGURED_ERROR_CODE errorCode = 2473 NSERR_CLIP_LOCALNODE_NOTCONFIGURED_ERROR_MESSAGE string = "CLIP cannot be added as the local node is not a member of the cluster." NSERR_CLVERSIONMISMATCH_ERROR_CODE errorCode = 2474 NSERR_CLVERSIONMISMATCH_ERROR_MESSAGE string = "Cluster version mismatch between Configuration Coordinator and local node" NSERR_CLUSTER_CMNOTSUPP_ERROR_CODE errorCode = 2475 NSERR_CLUSTER_CMNOTSUPP_ERROR_MESSAGE string = "Connection Mirroring is not supported in Cluster mode" NSERR_ARP_CLAG_OWNERNODE_MANDATORY_ERROR_CODE errorCode = 2476 NSERR_ARP_CLAG_OWNERNODE_MANDATORY_ERROR_MESSAGE string = "Owner Node should be specified for CLAG." NSERR_ARP_OWNERNODE_MANDATORY_ERROR_CODE errorCode = 2477 NSERR_ARP_OWNERNODE_MANDATORY_ERROR_MESSAGE string = "Owner Node should be specified." NSERR_NOOPCCO_ERROR_CODE errorCode = 2478 NSERR_NOOPCCO_ERROR_MESSAGE string = "Operation not permitted on the Configuration Coordinator." NSERR_SPOTTED_CONFIG_PRESENT_ERROR_CODE errorCode = 2479 NSERR_SPOTTED_CONFIG_PRESENT_ERROR_MESSAGE string = "Operation not permitted as the node is part of spotted entity configuration." NSERR_NOT_CLUSTER_IP_ERROR_CODE errorCode = 2480 NSERR_NOT_CLUSTER_IP_ERROR_MESSAGE string = "IP address should be a CLIP address." NSERR_CLUSTER_NNRES_ERROR_CODE errorCode = 2481 NSERR_CLUSTER_NNRES_ERROR_MESSAGE string = "Error in communication with other nodes in the cluster" NSERR_LAST_CLUSTER_IP_REMOVAL_ERROR_CODE errorCode = 2482 NSERR_LAST_CLUSTER_IP_REMOVAL_ERROR_MESSAGE string = "" /* 144-byte string literal not displayed */ NSERR_CONFIG_PARAM_INVALID_ERROR_CODE errorCode = 2483 NSERR_CONFIG_PARAM_INVALID_ERROR_MESSAGE string = "Configured Param(s) too small for Cluster. Parameter value(s) will be bumped to OVS node count." NSERR_CLUSTER_INVALIDNODE_ERROR_CODE errorCode = 2484 NSERR_CLUSTER_INVALIDNODE_ERROR_MESSAGE string = "Owner node value should be between 0 and 31, both inclusive." NSERR_LRONCLACPONLY_ERROR_CODE errorCode = 2485 NSERR_LRONCLACPONLY_ERROR_MESSAGE string = "Link Redundancy can be set only in Cluster LACP Channels" NSERR_MULTIBIND_NOT_SUPPINCLUSTER_ERROR_CODE errorCode = 2486 NSERR_MULTIBIND_NOT_SUPPINCLUSTER_ERROR_MESSAGE string = "Multiple Bindings in Single Bind Command not Supported in Cluster." NSERR_CLUSTER_FISNAMES_DUPNOTALLOWED_ERROR_CODE errorCode = 2487 NSERR_CLUSTER_FISNAMES_DUPNOTALLOWED_ERROR_MESSAGE string = "In a cluster setup, the FIS name on each node must be unique." NSERR_CLUSTER_CLAG_NOLOCALINTF_ERROR_CODE errorCode = 2488 NSERR_CLUSTER_CLAG_NOLOCALINTF_ERROR_MESSAGE string = "CLA cannot be bound to the FIS as the CLA does not contain a local interface." NSERR_FIS_MAX_LIMIT_ERROR_CODE errorCode = 2489 NSERR_FIS_MAX_LIMIT_ERROR_MESSAGE string = "" /* 151-byte string literal not displayed */ NSERR_BOUND_TO_FIS_ERROR_CODE errorCode = 2490 NSERR_BOUND_TO_FIS_ERROR_MESSAGE string = "Interface bound to FIS." NSERR_CHANNEL_OPEN_FAILED_ERROR_CODE errorCode = 2491 NSERR_CHANNEL_OPEN_FAILED_ERROR_MESSAGE string = "Unable to open channel" NSERR_NOT_BOUND_TO_FIS_ERROR_CODE errorCode = 2492 NSERR_NOT_BOUND_TO_FIS_ERROR_MESSAGE string = "Interface not bound to this FIS" NSERR_CLUSTER_INC_NOTSUPP_ERROR_CODE errorCode = 2493 NSERR_CLUSTER_INC_NOTSUPP_ERROR_MESSAGE string = "Feature not supported when cluster is configured in INC mode" NSERR_CONFIG_NG_CHANGED_ERROR_CODE errorCode = 4095 NSERR_CONFIG_NG_CHANGED_ERROR_MESSAGE string = "Config NodeGroup changed, force cluster sync should be fired on newly added node to be in sync" NSERR_STRIPED_IP_EXIST_ERROR_CODE errorCode = 2494 NSERR_STRIPED_IP_EXIST_ERROR_MESSAGE string = "Striped SNIPs/MIPs must be removed when transitioning to cluster-inc" NSERR_WRONG_NG_ERROR_CODE errorCode = 2495 NSERR_WRONG_NG_ERROR_MESSAGE string = "All cluster nodes should be bound to DEFAULT_NG before transitioning to cluster-inc" NSERR_NG_REQUIRED_ERROR_CODE errorCode = 2496 NSERR_NG_REQUIRED_ERROR_MESSAGE string = "The nodegroup parameter is mandatory when the -inc parameter is enabled" NSERR_NG_CHANGE_ERROR_CODE errorCode = 2497 NSERR_NG_CHANGE_ERROR_MESSAGE string = "NodeGroup can be changed only for transition from cluster to cluster-inc" NSERR_NG_INVALID_ERROR_CODE errorCode = 2498 NSERR_NG_INVALID_ERROR_MESSAGE string = "Invalid nodegroup" NSERR_NOT_LAST_NODE_ERROR_CODE errorCode = 2499 NSERR_NOT_LAST_NODE_ERROR_MESSAGE string = "The -flushall parameter can be enabled only when there is one node in the nodegroup" NSERR_MULTI_NG_BINDING_EXIST_ERROR_CODE errorCode = 2500 NSERR_MULTI_NG_BINDING_EXIST_ERROR_MESSAGE string = "More than one Nodegroup has nodes bound to it" NSERR_INVALID_NC_CONFIG_ERROR_CODE errorCode = 2501 NSERR_INVALID_NC_CONFIG_ERROR_MESSAGE string = "The owner group parameter is applicable only when the INC parameter is enabled on the cluster instance" NSERR_FIPSCL_CANNOT_COEXIST_ERROR_CODE errorCode = 2502 NSERR_FIPSCL_CANNOT_COEXIST_ERROR_MESSAGE string = "Clustering and FIPs configuration cannot coexist." NSERR_LS_CLAG_INTF_SAME_NG_ERROR_CODE errorCode = 2503 NSERR_LS_CLAG_INTF_SAME_NG_ERROR_MESSAGE string = "All interfaces of LinkSet/CLAG should belong to same nodegroup" NSERR_NODE_BINDING_INC_ERROR_CODE errorCode = 2504 NSERR_NODE_BINDING_INC_ERROR_MESSAGE string = "Node cannot be bound to Default nodeGroup on cluster-inc setup" NSERR_IP_OWNERDOWN_PARAM_ERROR_CODE errorCode = 2522 NSERR_IP_OWNERDOWN_PARAM_ERROR_MESSAGE string = "OwnerDownResponse allowed only for spotted SNIP on cluster" NSERR_INVALID_LS_ERROR_CODE errorCode = 2411 NSERR_INVALID_LS_ERROR_MESSAGE string = "Invalid linkset" NSERR_IP_ALREADY_OWNED_ERROR_CODE errorCode = 2541 NSERR_IP_ALREADY_OWNED_ERROR_MESSAGE string = "Cannot add ip address as the address is already owned by cluster or peer node" NSERR_LS_UNABLE_GET_VLAN_ERROR_CODE errorCode = 2542 NSERR_LS_UNABLE_GET_VLAN_ERROR_MESSAGE string = "Unable to get the current vlan of this linkset." NSERR_LS_NOT_BOUND_VLAN_ERROR_CODE errorCode = 2543 NSERR_LS_NOT_BOUND_VLAN_ERROR_MESSAGE string = "Linkset not a member of this vlan" NSERR_CL_UNSUPPORTED_PROTO_ERROR_CODE errorCode = 2544 NSERR_CL_UNSUPPORTED_PROTO_ERROR_MESSAGE string = "Retain connections on joining a new node is not supported for this protocol" NSERR_CL_UNSUPPORTED_IN_NCORE_ERROR_CODE errorCode = 2545 NSERR_CL_UNSUPPORTED_IN_NCORE_ERROR_MESSAGE string = "This feature/option is not supported in n-core" NSERR_NO_SETTING_PROP_ERROR_CODE errorCode = 2546 NSERR_NO_SETTING_PROP_ERROR_MESSAGE string = "This setting will not be propagated to other nodes." NSERR_OWNERNODE_ALLOWED_ON_CLU_ERROR_CODE errorCode = 2547 NSERR_OWNERNODE_ALLOWED_ON_CLU_ERROR_MESSAGE string = "ownerNode setting is allowed only on CLIP." NSERR_CL_NOT_DFLT_NG_ERROR_CODE errorCode = 2548 NSERR_CL_NOT_DFLT_NG_ERROR_MESSAGE string = "In L2 cluster, adding a node with nodegroup other than DEFAULT_NG is not permitted." NSERR_CL_RECOVERY_IN_PROGRESS_ERROR_CODE errorCode = 2555 NSERR_CL_RECOVERY_IN_PROGRESS_ERROR_MESSAGE string = "Operation not permitted - Cluster node recovery is in progress." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cqa-errors NSERR_CQA_LABEL_3_NOTSET_ERROR_CODE errorCode = 3782 NSERR_CQA_LABEL_3_NOTSET_ERROR_MESSAGE string = "Network type net3 is not set" NSERR_CQA_WRONG_COEF_ERROR_CODE errorCode = 3783 NSERR_CQA_WRONG_COEF_ERROR_MESSAGE string = "Coefficient values are not proper Need to give intercept and one feature from list. Check man page" NSERR_CQA_WRONG_CCL_ERROR_CODE errorCode = 3784 NSERR_CQA_WRONG_CCL_ERROR_MESSAGE string = "Congestion level scale is not proper" NSERR_CQA_WRONG_CSQ_ERROR_CODE errorCode = 3785 NSERR_CQA_WRONG_CSQ_ERROR_MESSAGE string = "Signal Quality scale is not proper" NSERR_CQA_LR1_DEPENDENCY_ERROR_CODE errorCode = 3786 NSERR_CQA_LR1_DEPENDENCY_ERROR_MESSAGE string = "Need to set network type net1 and net2" NSERR_CQA_LR2_DEPENDENCY_ERROR_CODE errorCode = 3787 NSERR_CQA_LR2_DEPENDENCY_ERROR_MESSAGE string = "Need to set network type net2 and net3" NSERR_CQA_WRONG_LOG_COEF_ERROR_CODE errorCode = 3788 NSERR_CQA_WRONG_LOG_COEF_ERROR_MESSAGE string = "Log Coefficient values are not proper" NSERR_CQA_LABEL_1_NOTSET_ERROR_CODE errorCode = 3789 NSERR_CQA_LABEL_1_NOTSET_ERROR_MESSAGE string = "Network type net1 is not set" NSERR_CQA_LABEL_2_NOTSET_ERROR_CODE errorCode = 3791 NSERR_CQA_LABEL_2_NOTSET_ERROR_MESSAGE string = "Network type net2 is not set" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cr-errors NSERR_PXY_CACHE_HMG_ERROR_CODE errorCode = 512 NSERR_PXY_CACHE_HMG_ERROR_MESSAGE string = "All caches in a content group should be of the same type" NSERR_PXY_RM_LAST_MEMT_ERROR_CODE errorCode = 513 NSERR_PXY_RM_LAST_MEMT_ERROR_MESSAGE string = "Cannot remove last map entry from the table; remove the map table instead" NSERR_CSW_INS_INVAL_PFX_ERROR_CODE errorCode = 514 NSERR_CSW_INS_INVAL_PFX_ERROR_MESSAGE string = "Invalid prefix specified in the URL" NSERR_PENG_EXPR_IVAL_NAME_ERROR_CODE errorCode = 515 NSERR_PENG_EXPR_IVAL_NAME_ERROR_MESSAGE string = "Invalid expression name" NSERR_CSW_BIG_URL_ERROR_CODE errorCode = 516 NSERR_CSW_BIG_URL_ERROR_MESSAGE string = "URL specified is too long - maximum is 208, including . and *" NSERR_CSW_BIG_PFX_ERROR_CODE errorCode = 517 NSERR_CSW_BIG_PFX_ERROR_MESSAGE string = "Prefix specified is too long - maximum is 199, excluding *" NSERR_CSW_BIG_SFX_ERROR_CODE errorCode = 518 NSERR_CSW_BIG_SFX_ERROR_MESSAGE string = "Extension specified is too long, maximum is 8" NSERR_CSW_INVAL_SFX_ERROR_CODE errorCode = 519 NSERR_CSW_INVAL_SFX_ERROR_MESSAGE string = "Extension is invalid" NSERR_EXPR_NOMETHOD_ERROR_CODE errorCode = 520 NSERR_EXPR_NOMETHOD_ERROR_MESSAGE string = "Invalid method name" NSERR_EXPR_NOURLTOKENS_ERROR_CODE errorCode = 521 NSERR_EXPR_NOURLTOKENS_ERROR_MESSAGE string = "Invalid HTTP URL tokens" NSERR_EXPR_NOVERSION_ERROR_CODE errorCode = 522 NSERR_EXPR_NOVERSION_ERROR_MESSAGE string = "Invalid HTTP version" NSERR_EXPR_NOHDR_ERROR_CODE errorCode = 523 NSERR_EXPR_NOHDR_ERROR_MESSAGE string = "Invalid HTTP header" NSERR_EXPR_NOCACNTL_ERROR_CODE errorCode = 524 NSERR_EXPR_NOCACNTL_ERROR_MESSAGE string = "Invalid cache-control value" NSERR_EXPR_NOPRAG_ERROR_CODE errorCode = 525 NSERR_EXPR_NOPRAG_ERROR_MESSAGE string = "Invalid pragma value" NSERR_EXPR_NOQUERY_ERROR_CODE errorCode = 526 NSERR_EXPR_NOQUERY_ERROR_MESSAGE string = "Invalid query string" NSERR_EXPR_NOQUAL_ERROR_CODE errorCode = 527 NSERR_EXPR_NOQUAL_ERROR_MESSAGE string = "Invalid qualifier" NSERR_ACTION_INUSE_ERROR_CODE errorCode = 528 NSERR_ACTION_INUSE_ERROR_MESSAGE string = "Action name is already in use" NSERR_ACTION_HDR_INVAL_ERROR_CODE errorCode = 529 NSERR_ACTION_HDR_INVAL_ERROR_MESSAGE string = "Invalid header" NSERR_URLQ_INVAL_ERROR_CODE errorCode = 530 NSERR_URLQ_INVAL_ERROR_MESSAGE string = "" NSERR_UNDEF_ACTION_ERROR_CODE errorCode = 531 NSERR_UNDEF_ACTION_ERROR_MESSAGE string = "Action directive or qualifier is not valid" NSERR_CPE_INUSE_ERROR_CODE errorCode = 532 NSERR_CPE_INUSE_ERROR_MESSAGE string = "Policy name is already in use" NSERR_CPE_REQACT_INVAL_ERROR_CODE errorCode = 533 NSERR_CPE_REQACT_INVAL_ERROR_MESSAGE string = "Request action is not valid" NSERR_CPE_RSPACT_INVAL_ERROR_CODE errorCode = 534 NSERR_CPE_RSPACT_INVAL_ERROR_MESSAGE string = "Response action is not valid" NSERR_CPE_REQRULE_INVAL_ERROR_CODE errorCode = 535 NSERR_CPE_REQRULE_INVAL_ERROR_MESSAGE string = "Request rule is not valid" NSERR_ACTION_DEFINVAL_ERROR_CODE errorCode = 537 NSERR_ACTION_DEFINVAL_ERROR_MESSAGE string = "Default actions cannot be removed" NSERR_ACTION_NOTPRESENT_ERROR_CODE errorCode = 538 NSERR_ACTION_NOTPRESENT_ERROR_MESSAGE string = "Action does not exist" NSERR_PXY_INVAL_SERVICETYPE_ERROR_CODE errorCode = 539 NSERR_PXY_INVAL_SERVICETYPE_ERROR_MESSAGE string = "Invalid service type for virtual server" NSERR_CACHEPOLICY_INUSE_ERROR_CODE errorCode = 540 NSERR_CACHEPOLICY_INUSE_ERROR_MESSAGE string = "Caching policy name is already in use" NSERR_CACHEGROUP_INTERNAL_ERROR_CODE errorCode = 543 NSERR_CACHEGROUP_INTERNAL_ERROR_MESSAGE string = "Built-in content groups cannot be removed" NSERR_CPE_INVAL_ERROR_CODE errorCode = 544 NSERR_CPE_INVAL_ERROR_MESSAGE string = "Policy name is invalid" NSERR_EXPR_NOLEN_ERROR_CODE errorCode = 545 NSERR_EXPR_NOLEN_ERROR_MESSAGE string = "URL length is not valid" NSERR_DNSWAIT_ERROR_CODE errorCode = 546 NSERR_DNSWAIT_ERROR_MESSAGE string = "" NSERR_GW_TIMEOUT_ERROR_CODE errorCode = 547 NSERR_GW_TIMEOUT_ERROR_MESSAGE string = "" NSERR_CSWDMN_INUSE_ERROR_CODE errorCode = 548 NSERR_CSWDMN_INUSE_ERROR_MESSAGE string = "Domain is already hosted by another server" NSERR_CSWDMN_PLCY_EXIST_ERROR_CODE errorCode = 549 NSERR_CSWDMN_PLCY_EXIST_ERROR_MESSAGE string = "" NSERR_ACTION_NOMOD_HDR_ERROR_CODE errorCode = 550 NSERR_ACTION_NOMOD_HDR_ERROR_MESSAGE string = "Action has missing argument" NSERR_EXPR_INVAL_OPERATOR_ERROR_CODE errorCode = 551 NSERR_EXPR_INVAL_OPERATOR_ERROR_MESSAGE string = "Invalid operator for the qualifier" NSERR_EXPR_DEF_REM_INVAL_ERROR_CODE errorCode = 552 NSERR_EXPR_DEF_REM_INVAL_ERROR_MESSAGE string = "Default expression cannot be removed" NSERR_EXPR_TOOMANY_ERROR_CODE errorCode = 553 NSERR_EXPR_TOOMANY_ERROR_MESSAGE string = "Expression limit reached" NSERR_ACTION_TOOMANY_ERROR_CODE errorCode = 554 NSERR_ACTION_TOOMANY_ERROR_MESSAGE string = "Action limit reached" NSERR_CSWPOLICY_TOOMANY_ERROR_CODE errorCode = 555 NSERR_CSWPOLICY_TOOMANY_ERROR_MESSAGE string = "CS policy limit reached" NSERR_CRDPOLICY_TOOMANY_ERROR_CODE errorCode = 556 NSERR_CRDPOLICY_TOOMANY_ERROR_MESSAGE string = "CR policy limit reached" NSERR_MAPPOLICY_TOOMANY_ERROR_CODE errorCode = 557 NSERR_MAPPOLICY_TOOMANY_ERROR_MESSAGE string = "Map policy limit reached" NSERR_FILTER_NOT_SUPPORT_ERROR_CODE errorCode = 558 NSERR_FILTER_NOT_SUPPORT_ERROR_MESSAGE string = "Content Filtering is no longer supported; this feature flag will be removed on the next major release" NSERR_CACHEPOLICY_TOOMANY_ERROR_CODE errorCode = 559 NSERR_CACHEPOLICY_TOOMANY_ERROR_MESSAGE string = "Integrated cache policy limit reached" NSERR_CACHEGROUP_TOOMANY_ERROR_CODE errorCode = 560 NSERR_CACHEGROUP_TOOMANY_ERROR_MESSAGE string = "Integrated cache content group limit reached" NSERR_CACHEPARAM_MEMALLOC_FAILED_ERROR_CODE errorCode = 561 NSERR_CACHEPARAM_MEMALLOC_FAILED_ERROR_MESSAGE string = "Unable to allocate specified amount of memory" NSERR_CACHEGROUP_INUSE_ERROR_CODE errorCode = 562 NSERR_CACHEGROUP_INUSE_ERROR_MESSAGE string = "Content group name is already in use" NSERR_CACHEGROUP_EXPCONFLICT_ERROR_CODE errorCode = 563 NSERR_CACHEGROUP_EXPCONFLICT_ERROR_MESSAGE string = "Expiry times conflict" NSERR_CACHEPARAM_INVAL_ERROR_CODE errorCode = 564 NSERR_CACHEPARAM_INVAL_ERROR_MESSAGE string = "Cache parameter is invalid" NSERR_CACHEGROUP_PARAM_INVAL_ERROR_CODE errorCode = 565 NSERR_CACHEGROUP_PARAM_INVAL_ERROR_MESSAGE string = "Invalid invalidation parameter" NSERR_CACHEGROUP_QUERY_INVAL_ERROR_CODE errorCode = 566 NSERR_CACHEGROUP_QUERY_INVAL_ERROR_MESSAGE string = "Invalid query string" NSERR_ACTION_INVAL_ERROR_CODE errorCode = 567 NSERR_ACTION_INVAL_ERROR_MESSAGE string = "Action name is invalid" NSERR_EXPR_DEF_SET_INVAL_ERROR_CODE errorCode = 568 NSERR_EXPR_DEF_SET_INVAL_ERROR_MESSAGE string = "Default expression cannot be set" NSERR_CACHEGROUP_RESSZ_MIN_GT_MAX_ERROR_CODE errorCode = 569 NSERR_CACHEGROUP_RESSZ_MIN_GT_MAX_ERROR_MESSAGE string = "Minimum response size cannot exceed the maximum response size" NSERR_SVPN_CERT_CHALLENGE_ERROR_CODE errorCode = 571 NSERR_SVPN_CERT_CHALLENGE_ERROR_MESSAGE string = "Destination Server challenged for a client certificate" NSERR_CACHEGROUP_HOST_REQ_ERROR_CODE errorCode = 576 NSERR_CACHEGROUP_HOST_REQ_ERROR_MESSAGE string = "Host required for a group with invalidation restricted to host" NSERR_CACHEGROUP_HOST_NREQ_ERROR_CODE errorCode = 577 NSERR_CACHEGROUP_HOST_NREQ_ERROR_MESSAGE string = "Host not required" NSERR_CACHEGROUP_DYNGRP_NEXP_ERROR_CODE errorCode = 578 NSERR_CACHEGROUP_DYNGRP_NEXP_ERROR_MESSAGE string = "Cannot expire a parameterized content group" NSERR_CACHEGROUP_ONE_GRP_REQ_ERROR_CODE errorCode = 579 NSERR_CACHEGROUP_ONE_GRP_REQ_ERROR_MESSAGE string = "Only one content group required" NSERR_CACHEGROUP_ONE_ALL_REQ_ERROR_CODE errorCode = 580 NSERR_CACHEGROUP_ONE_ALL_REQ_ERROR_MESSAGE string = "ALL should be the only content group specified" NSERR_CACHEGROUP_MATCH_PARAM_INVAL_ERROR_CODE errorCode = 581 NSERR_CACHEGROUP_MATCH_PARAM_INVAL_ERROR_MESSAGE string = "Invalid request hit parameter" NSERR_CACHEGROUP_DYN_RES_CACHE_ERROR_CODE errorCode = 582 NSERR_CACHEGROUP_DYN_RES_CACHE_ERROR_MESSAGE string = "Cannot specify a parameterized group with a response time CACHE action" NSERR_EXPR_INVAL_VALUE_ERROR_CODE errorCode = 583 NSERR_EXPR_INVAL_VALUE_ERROR_MESSAGE string = "Invalid expression value" NSERR_CACHEGROUP_PREFETCH_CONFLICT_ERROR_CODE errorCode = 584 NSERR_CACHEGROUP_PREFETCH_CONFLICT_ERROR_MESSAGE string = "Prefetch periods conflict" NSERR_CACHEGROUP_PREFETCH_ENABLE_ERROR_CODE errorCode = 585 NSERR_CACHEGROUP_PREFETCH_ENABLE_ERROR_MESSAGE string = "Enable prefetch to set prefetch period" NSERR_CACHEGROUP_CCH_UNKNOWN_ERROR_CODE errorCode = 586 NSERR_CACHEGROUP_CCH_UNKNOWN_ERROR_MESSAGE string = "Unknown cache-control header" NSERR_CACHEGROUP_RELEXP_X10MS_ERROR_CODE errorCode = 587 NSERR_CACHEGROUP_RELEXP_X10MS_ERROR_MESSAGE string = "Relative expiry milliseconds must be multiples of 10" NSERR_CACHEGROUP_PREFETCH_X10MS_ERROR_CODE errorCode = 588 NSERR_CACHEGROUP_PREFETCH_X10MS_ERROR_MESSAGE string = "Prefetch period milliseconds must be multiples of 10" NSERR_CACHEGROUP_STATIC_TO_DYNAMIC_ERROR_CODE errorCode = 589 NSERR_CACHEGROUP_STATIC_TO_DYNAMIC_ERROR_MESSAGE string = "This content group cannot be made parameterized" NSERR_CLASSIC_POLICY_DEPRECATED_ERROR_CODE errorCode = 590 NSERR_CLASSIC_POLICY_DEPRECATED_ERROR_MESSAGE string = "" /* 208-byte string literal not displayed */ NSERR_PLCY_DEF_REM_INVAL_ERROR_CODE errorCode = 591 NSERR_PLCY_DEF_REM_INVAL_ERROR_MESSAGE string = "Default policy cannot be removed" NSERR_CACHEGROUP_PREFETCH_REL_NREQ_ERROR_CODE errorCode = 592 NSERR_CACHEGROUP_PREFETCH_REL_NREQ_ERROR_MESSAGE string = "Relative expiry and prefetch period should both be seconds or milliseconds" NSERR_EXPR_SET_INVAL_FLOWTYPE_ERROR_CODE errorCode = 593 NSERR_EXPR_SET_INVAL_FLOWTYPE_ERROR_MESSAGE string = "Flow type cannot be changed" NSERR_EXPR_TOO_BIG_ERROR_CODE errorCode = 594 NSERR_EXPR_TOO_BIG_ERROR_MESSAGE string = "Expression too long - maximum length is 1500, in fully-qualified form" NSERR_CPE_INVALID_IDRANGE_ERROR_CODE errorCode = 595 NSERR_CPE_INVALID_IDRANGE_ERROR_MESSAGE string = "Priority should be between 0 and 64000 (inclusive)" NSERR_EXPR_TOO_BIG_EXT_ERROR_CODE errorCode = 596 NSERR_EXPR_TOO_BIG_EXT_ERROR_MESSAGE string = "Expression too long - maximum length is 800, in fully-qualified form" NSERR_CACHEGROUP_MATCHCOOKIE_DYN_REQ_ERROR_CODE errorCode = 597 NSERR_CACHEGROUP_MATCHCOOKIE_DYN_REQ_ERROR_MESSAGE string = "Match cookies argument allowed only with parameterized groups" NSERR_CACHEGROUP_MATCHCOOKIE_NREQ_ERROR_CODE errorCode = 598 NSERR_CACHEGROUP_MATCHCOOKIE_NREQ_ERROR_MESSAGE string = "Cannot modify match cookies" NSERR_CACHEFWPXY_PRESENT_ERROR_CODE errorCode = 599 NSERR_CACHEFWPXY_PRESENT_ERROR_MESSAGE string = "Forward proxy is already present" NSERR_CACHE_PREFETCH_REEVAL_NREQ_ERROR_CODE errorCode = 600 NSERR_CACHE_PREFETCH_REEVAL_NREQ_ERROR_MESSAGE string = "Cannot configure a content group to both prefetch and evaluate every miss" NSERR_CACHEFWPXY_TOOMANY_ERROR_CODE errorCode = 601 NSERR_CACHEFWPXY_TOOMANY_ERROR_MESSAGE string = "Forward proxy limit reached" NSERR_CACHE_PET_FC_NREQ_ERROR_CODE errorCode = 602 NSERR_CACHE_PET_FC_NREQ_ERROR_MESSAGE string = "Cannot enable both 'Poll Every Time' and 'Flash Cache'" NSERR_SAVECONFIG_IN_PROGRESS_ERROR_CODE errorCode = 603 NSERR_SAVECONFIG_IN_PROGRESS_ERROR_MESSAGE string = "Configuration is being saved, please try again later" NSERR_GWSUBNET_NOT_EXIST_ERROR_CODE errorCode = 604 NSERR_GWSUBNET_NOT_EXIST_ERROR_MESSAGE string = "The gateway is not directly reachable" NSERR_GW_REQ_SUBNET_ERROR_CODE errorCode = 605 NSERR_GW_REQ_SUBNET_ERROR_MESSAGE string = "An existing route relies on the presence of this subnet" NSERR_BAD_CR_ATTRIBS_ERROR_CODE errorCode = 607 NSERR_BAD_CR_ATTRIBS_ERROR_MESSAGE string = "Bad cache redirection VIP attributes given" NSERR_MAC_NOT_SUPPORTED_ERROR_CODE errorCode = 608 NSERR_MAC_NOT_SUPPORTED_ERROR_MESSAGE string = "MAC redirection not supported" NSERR_POLICY_NOT_SUPPORTED_ERROR_CODE errorCode = 609 NSERR_POLICY_NOT_SUPPORTED_ERROR_MESSAGE string = "Policy redirection not supported with NNTP" NSERR_CACHEABILITY_NOT_SUPPORTED_ERROR_CODE errorCode = 610 NSERR_CACHEABILITY_NOT_SUPPORTED_ERROR_MESSAGE string = "Cannot set cacheability on cache" NSERR_HOST_RT_NOT_ALLOWED_ERROR_CODE errorCode = 611 NSERR_HOST_RT_NOT_ALLOWED_ERROR_MESSAGE string = "Host route advertisement not permitted for this IP" NSERR_ROUTING_NOT_ALLOWED_ERROR_CODE errorCode = 612 NSERR_ROUTING_NOT_ALLOWED_ERROR_MESSAGE string = "Routing protocols can run only on SNIP's or NSIP" NSERR_CONFIG_NOTSAVED_ERROR_CODE errorCode = 613 NSERR_CONFIG_NOTSAVED_ERROR_MESSAGE string = "Configuration is not saved" NSERR_DIS_ROUTING_NSIP_ERROR_CODE errorCode = 614 NSERR_DIS_ROUTING_NSIP_ERROR_MESSAGE string = "Cannot disable dynamic routing on NSIP" NSERR_NETWORK_RT_NOT_ALLOWED_ERROR_CODE errorCode = 615 NSERR_NETWORK_RT_NOT_ALLOWED_ERROR_MESSAGE string = "Network route advertisement not permitted on this IP" NSERR_NR_ENABLE_ERROR_CODE errorCode = 616 NSERR_NR_ENABLE_ERROR_MESSAGE string = "networkRoute can be enabled only for one IP per subnet" NSERR_EXPRMISMATCH_ERROR_CODE errorCode = 624 NSERR_EXPRMISMATCH_ERROR_MESSAGE string = "" NSERR_NO_HOST_ERROR_CODE errorCode = 627 NSERR_NO_HOST_ERROR_MESSAGE string = "No host header and default not set" NSERR_NO_DFLT_ERROR_CODE errorCode = 628 NSERR_NO_DFLT_ERROR_MESSAGE string = "Host header present, no match, and default not set" NSERR_DFLTDMN_FIRST_ERROR_CODE errorCode = 629 NSERR_DFLTDMN_FIRST_ERROR_MESSAGE string = "No default domain translation entry" NSERR_PXY_CONF_LOOP_ERROR_CODE errorCode = 630 NSERR_PXY_CONF_LOOP_ERROR_MESSAGE string = "Source and target domains cannot be the same" NSERR_PXY_ME_DUP_ERROR_CODE errorCode = 632 NSERR_PXY_ME_DUP_ERROR_MESSAGE string = "Duplicate map entry" NSERR_PXY_IVAL_TGT_ERROR_CODE errorCode = 633 NSERR_PXY_IVAL_TGT_ERROR_MESSAGE string = "Target is invalid during map entry addition" NSERR_CONNECTED_ERROR_CODE errorCode = 634 NSERR_CONNECTED_ERROR_MESSAGE string = "Proxy connection established" NSERR_AUTHENTICATE_ERROR_CODE errorCode = 635 NSERR_AUTHENTICATE_ERROR_MESSAGE string = "Authentication required" NSERR_LARGE_DOMAIN_ERROR_CODE errorCode = 636 NSERR_LARGE_DOMAIN_ERROR_MESSAGE string = "Domain length overflow" NSERR_PXY_IVAL_URL_ERROR_CODE errorCode = 640 NSERR_PXY_IVAL_URL_ERROR_MESSAGE string = "Source/destination URL or the combination is not valid" NSERR_PXY_ME_USE_ERROR_CODE errorCode = 641 NSERR_PXY_ME_USE_ERROR_MESSAGE string = "Map entry is already in use" NSERR_PXY_MT_TYPE_ERROR_CODE errorCode = 642 NSERR_PXY_MT_TYPE_ERROR_MESSAGE string = "Map entries in a table should be homogeneous" NSERR_PXY_MT_USE_ERROR_CODE errorCode = 643 NSERR_PXY_MT_USE_ERROR_MESSAGE string = "Map table is in use" NSERR_PXY_MB_INVAL_ERROR_CODE errorCode = 644 NSERR_PXY_MB_INVAL_ERROR_MESSAGE string = "Invalid map bind operation" NSERR_PXY_MB_USE_ERROR_CODE errorCode = 645 NSERR_PXY_MB_USE_ERROR_MESSAGE string = "You can bind only one table to a vserver" NSERR_PXY_SETDCDN_ERROR_CODE errorCode = 646 NSERR_PXY_SETDCDN_ERROR_MESSAGE string = "Invalid DCDN configuration" NSERR_PXY_SETDFLT_ERROR_CODE errorCode = 647 NSERR_PXY_SETDFLT_ERROR_MESSAGE string = "Invalid default domain specification" NSERR_PXY_DFLT_NOTSET_ERROR_CODE errorCode = 648 NSERR_PXY_DFLT_NOTSET_ERROR_MESSAGE string = "Removing default without setting it" NSERR_PXY_FWD_IVAL_ERROR_CODE errorCode = 649 NSERR_PXY_FWD_IVAL_ERROR_MESSAGE string = "Invalid FWD PXY map entry" NSERR_PXY_MTX_PROT_ERROR_CODE errorCode = 656 NSERR_PXY_MTX_PROT_ERROR_MESSAGE string = "PXY and cache protocol should be the same" NSERR_PXY_MTX_TRA_ERROR_CODE errorCode = 657 NSERR_PXY_MTX_TRA_ERROR_MESSAGE string = "Invalid cache type on service" NSERR_PXY_MTX_FWD_ERROR_CODE errorCode = 658 NSERR_PXY_MTX_FWD_ERROR_MESSAGE string = "Forward Pxy matrix" NSERR_PXY_MTX_REV_ERROR_CODE errorCode = 659 NSERR_PXY_MTX_REV_ERROR_MESSAGE string = "Reverse Pxy Matrix" NSERR_PXY_ADD_TRA_NONHTTP_ERROR_CODE errorCode = 660 NSERR_PXY_ADD_TRA_NONHTTP_ERROR_MESSAGE string = "transparent non-HTTP policy is invalid" NSERR_PXY_ADD_TRA_OTHER_ERROR_CODE errorCode = 661 NSERR_PXY_ADD_TRA_OTHER_ERROR_MESSAGE string = "transparent non-HTTP map/via should not be specified" NSERR_PXY_OPT_INVAL_ERROR_CODE errorCode = 662 NSERR_PXY_OPT_INVAL_ERROR_MESSAGE string = "ARP/ghost options invalid for REV/FWD proxy" NSERR_PXY_ADD_SVR_OTHER_ERROR_CODE errorCode = 663 NSERR_PXY_ADD_SVR_OTHER_ERROR_MESSAGE string = "Simple content based no proxy attribs" NSERR_PXY_MB_DUP_ERROR_CODE errorCode = 664 NSERR_PXY_MB_DUP_ERROR_MESSAGE string = "Bind entry already exists" NSERR_PXY_DFLT_DUP_ERROR_CODE errorCode = 665 NSERR_PXY_DFLT_DUP_ERROR_MESSAGE string = "Default already exists" NSERR_SEL_INUSE_ERROR_CODE errorCode = 672 NSERR_SEL_INUSE_ERROR_MESSAGE string = "Selector already exists" NSERR_SEL_PARSE_FAILED_ERROR_CODE errorCode = 673 NSERR_SEL_PARSE_FAILED_ERROR_MESSAGE string = "Error in selector expression syntax" NSERR_NOSELECTOR_ERROR_CODE errorCode = 674 NSERR_NOSELECTOR_ERROR_MESSAGE string = "No such selector" NSERR_SEL_TOOMANY_ERROR_CODE errorCode = 675 NSERR_SEL_TOOMANY_ERROR_MESSAGE string = "Selector limit reached" NSERR_CACHEGROUP_NOSELPARAM_ERROR_CODE errorCode = 677 NSERR_CACHEGROUP_NOSELPARAM_ERROR_MESSAGE string = "Cannot change param-based content group to selector-based (or vice-versa)" NSERR_NOCACHEGROUP_ERROR_CODE errorCode = 678 NSERR_NOCACHEGROUP_ERROR_MESSAGE string = "Content group does not exist" NSERR_NONREQ_SEL_ERROR_CODE errorCode = 679 NSERR_NONREQ_SEL_ERROR_MESSAGE string = "Selector expression is not request based" NSERR_INVALARG_ERROR_CODE errorCode = 680 NSERR_INVALARG_ERROR_MESSAGE string = "The action qualifier and the specified argument(s) do not match" NSERR_NOWILD_ALLOWED_ERROR_CODE errorCode = 681 NSERR_NOWILD_ALLOWED_ERROR_MESSAGE string = "Wildcard not allowed with BETWEEN operator" NSERR_DATE_INCOMPAT_ERROR_CODE errorCode = 682 NSERR_DATE_INCOMPAT_ERROR_MESSAGE string = "Time arguments incompatible" NSERR_TIMEDATE_INVALID_ERROR_CODE errorCode = 683 NSERR_TIMEDATE_INVALID_ERROR_MESSAGE string = "Date/time value invalid" NSERR_CONTENTGROUP_COOKIE_REQ_PARAM_ERROR_CODE errorCode = 684 NSERR_CONTENTGROUP_COOKIE_REQ_PARAM_ERROR_MESSAGE string = "Hit parameters or inval parameters needed to enable cookie matching" NSERR_CONTENTGROUP_IGNORECASE_REQ_HITPARAM_ERROR_CODE errorCode = 685 NSERR_CONTENTGROUP_IGNORECASE_REQ_HITPARAM_ERROR_MESSAGE string = "Hit parameters needed to enable case-insensitive param value matching" NSERR_CONTENTGROUP_INVALPARAM_REQ_ERROR_CODE errorCode = 686 NSERR_CONTENTGROUP_INVALPARAM_REQ_ERROR_MESSAGE string = "Inval parameters needed to enable host-based invalidation" NSERR_CLISEC_EXP_TOO_LONG_ERROR_CODE errorCode = 687 NSERR_CLISEC_EXP_TOO_LONG_ERROR_MESSAGE string = "Client security expression too long" NSERR_NONHTTP_CSW_BIND_HTTP_SSL_POLICY_ERROR_CODE errorCode = 688 NSERR_NONHTTP_CSW_BIND_HTTP_SSL_POLICY_ERROR_MESSAGE string = "HTTP/SSL protocol based policies can be bound only to HTTP/SSL CS vserver" NSERR_POLBOUNDTO_TOO_MANY_VSVRS_ERROR_CODE errorCode = 691 NSERR_POLBOUNDTO_TOO_MANY_VSVRS_ERROR_MESSAGE string = "Domain cannot be set - policy bound to more than one vserver." NSERR_PRIORITY_COMP_PI_CSW_ERROR_CODE errorCode = 695 NSERR_PRIORITY_COMP_PI_CSW_ERROR_MESSAGE string = "Priority is mandatory for advanced expressions." NSERR_PE_GOTO_ERROR_CODE errorCode = 697 NSERR_PE_GOTO_ERROR_MESSAGE string = "Priority Jump expression cannot be bound with a classic expression based policy." NSERR_CACHEOBJECT_EVICT_ERROR_CODE errorCode = 699 NSERR_CACHEOBJECT_EVICT_ERROR_MESSAGE string = "Cached object removed on expiry." NSERR_DNSFAIL_ERROR_CODE errorCode = 700 NSERR_DNSFAIL_ERROR_MESSAGE string = "DNS request failed" NSERR_HC_RET_TYPE_CHANGE_ERROR_CODE errorCode = 701 NSERR_HC_RET_TYPE_CHANGE_ERROR_MESSAGE string = "Cannot change callout return type." NSERR_HC_NOT_HTTP_VS_ERROR_CODE errorCode = 702 NSERR_HC_NOT_HTTP_VS_ERROR_MESSAGE string = "Not a HTTP or SSL vserver." NSERR_HC_REQ_CONFIG_XOR_ERROR_CODE errorCode = 703 NSERR_HC_REQ_CONFIG_XOR_ERROR_MESSAGE string = "Full request expression and other request attributes cannot be set at the same time." NSERR_HC_SERVICE_CONFIG_XOR_ERROR_CODE errorCode = 704 NSERR_HC_SERVICE_CONFIG_XOR_ERROR_MESSAGE string = "and vserver cannot be set at the same time." NSERR_HC_RET_TYPE_REQD_ERROR_CODE errorCode = 705 NSERR_HC_RET_TYPE_REQD_ERROR_MESSAGE string = "Return type needs to be configured first." NSERR_CSW_BIND_INCOMPAT_TGT_ERROR_CODE errorCode = 707 NSERR_CSW_BIND_INCOMPAT_TGT_ERROR_MESSAGE string = "The target vserver is not compatible with the CS verver." NSERR_CSW_BIND_INCOMPAT_CSPL_ERROR_CODE errorCode = 725 NSERR_CSW_BIND_INCOMPAT_CSPL_ERROR_MESSAGE string = "The target vserver is not compatible with the CS policylabel." NSERR_AS_BAD_XMLNAMESPACE_PREFIX_ERROR_CODE errorCode = 708 NSERR_AS_BAD_XMLNAMESPACE_PREFIX_ERROR_MESSAGE string = "Invalid XML-Namespace prefix." NSERR_INVALID_SIP_EXPR_ERROR_CODE errorCode = 709 NSERR_INVALID_SIP_EXPR_ERROR_MESSAGE string = "The SourceIP Expression specified is invalid." NSERR_NO_BACKENDVSERVER_ERROR_CODE errorCode = 710 NSERR_NO_BACKENDVSERVER_ERROR_MESSAGE string = "No backend LB vserver found." NSERR_CONTENT_GROUP_TOOMANY_ERROR_CODE errorCode = 711 NSERR_CONTENT_GROUP_TOOMANY_ERROR_MESSAGE string = "ContentGroup limit reached" NSERR_CACHE_MEM_SIZE_CHANGED_ERROR_CODE errorCode = 712 NSERR_CACHE_MEM_SIZE_CHANGED_ERROR_MESSAGE string = "To use new Integrated Cache memory limit, save the configuration and restart the NetScaler." NSERR_CACHE_MEM_SIZE_ZERO_ERROR_CODE errorCode = 713 NSERR_CACHE_MEM_SIZE_ZERO_ERROR_MESSAGE string = "No memory limit is configured for Integrated Cache. Use set cache parameter command to set the memory limit." NSERR_L2CONN_NOT_ALLOWED_ERROR_CODE errorCode = 714 NSERR_L2CONN_NOT_ALLOWED_ERROR_MESSAGE string = "l2conn feature is supported only for ncore." NSERR_SQL_NOT_ALLOWED_ERROR_CODE errorCode = 715 NSERR_SQL_NOT_ALLOWED_ERROR_MESSAGE string = "Database feature is supported only on nCore" NSERR_IPSEC_NOT_ALLOWED_ERROR_CODE errorCode = 716 NSERR_IPSEC_NOT_ALLOWED_ERROR_MESSAGE string = "IPSec feature is not supported" NSERR_HTMLPAGE_NOT_ALLOWED_ERROR_CODE errorCode = 717 NSERR_HTMLPAGE_NOT_ALLOWED_ERROR_MESSAGE string = "Respondwith/sqlresponse_ok/sqlresponse_error actions cannot be set to respondwithhtmlpage action, and vice versa." NSERR_CSW_NO_POLICY_NAME_ERROR_CODE errorCode = 719 NSERR_CSW_NO_POLICY_NAME_ERROR_MESSAGE string = "Policy name is required with priority." NSERR_SQL_MSG_EXCEED_ERROR_CODE errorCode = 720 NSERR_SQL_MSG_EXCEED_ERROR_MESSAGE string = "Message length should be smaller than 512" NSERR_ROUTING_STRIPED_SNIP_ERROR_CODE errorCode = 722 NSERR_ROUTING_STRIPED_SNIP_ERROR_MESSAGE string = "Routing protocols can run only on a spotted SNIP in a cluster" NSERR_USERNAME_MISSING_ERROR_CODE errorCode = 723 NSERR_USERNAME_MISSING_ERROR_MESSAGE string = "UserName argument Missing" NSERR_ACTION_EXIST_ERROR_CODE errorCode = 724 NSERR_ACTION_EXIST_ERROR_MESSAGE string = "Default Action for this type already exist." NSERR_WRONG_SERVICENAME_ERROR_CODE errorCode = 726 NSERR_WRONG_SERVICENAME_ERROR_MESSAGE string = "Use corresponding 'gslb service' command." NSERR_PE_NOT_ALLOWED_RULE_ERROR_CODE errorCode = 727 NSERR_PE_NOT_ALLOWED_RULE_ERROR_MESSAGE string = "PE expressions are not allowed for RULE based persistence" NSERR_NODE_NOT_IN_CLUSTER_ERROR_CODE errorCode = 728 NSERR_NODE_NOT_IN_CLUSTER_ERROR_MESSAGE string = "Node is not in the cluster" NSERR_MCMX_CNRES_ERROR_CODE errorCode = 729 NSERR_MCMX_CNRES_ERROR_MESSAGE string = "Error in communication with other cores" NSERR_HC_POST_REQ_CONFIG_XOR_ERROR_CODE errorCode = 730 NSERR_HC_POST_REQ_CONFIG_XOR_ERROR_MESSAGE string = "Parameters and body cannot be set at the same time for the POST method" NSERR_HC_CACGRP_ERROR_CODE errorCode = 731 NSERR_HC_CACGRP_ERROR_MESSAGE string = "Operation on 'calloutContentGroup' content group not permitted" NSERR_CSW_BIND_INCOMPAT_BKUP_ERROR_CODE errorCode = 732 NSERR_CSW_BIND_INCOMPAT_BKUP_ERROR_MESSAGE string = "The backup vserver of the target vserver is not compatible with the CS vserver." NSERR_CACHE_MEM_RESIZE_IN_PROGRESS_ERROR_CODE errorCode = 733 NSERR_CACHE_MEM_RESIZE_IN_PROGRESS_ERROR_MESSAGE string = "Integrated Cache memory resize is in progress. Please wait a few seconds." NSERR_CACHE_MEM_RESIZE_FAILED_ERROR_CODE errorCode = 734 NSERR_CACHE_MEM_RESIZE_FAILED_ERROR_MESSAGE string = "Integrated Cache memory resize failed." NSERR_CSW_BIND_INCOMPAT_TARGET_ERROR_CODE errorCode = 735 NSERR_CSW_BIND_INCOMPAT_TARGET_ERROR_MESSAGE string = "The target vserver has to be an LB vserver." NSERR_ATTRIB_MEM_FREED_ERROR_CODE errorCode = 736 NSERR_ATTRIB_MEM_FREED_ERROR_MESSAGE string = "ATTRIB memory already freed" NSERR_RULE_MISSING_ERROR_CODE errorCode = 737 NSERR_RULE_MISSING_ERROR_MESSAGE string = "EvalRule argument Missing" NSERR_CACHEGROUP_CCH_MAXAGE_MAX_ERROR_CODE errorCode = 738 NSERR_CACHEGROUP_CCH_MAXAGE_MAX_ERROR_MESSAGE string = "max-age value cannot be greater than 2147483647" NSERR_CACHE_MEM_REDUCTION_NOT_ALLOWED_ERROR_CODE errorCode = 739 NSERR_CACHE_MEM_REDUCTION_NOT_ALLOWED_ERROR_MESSAGE string = "Integrated Cache memory limit cannot be reduced." NSERR_CSW_POL_INCOMPAT_LB_ERROR_CODE errorCode = 740 NSERR_CSW_POL_INCOMPAT_LB_ERROR_MESSAGE string = "The target vserver is not compatible with the CS policy expression." NSERR_CS_INVALBACKUP_ERROR_CODE errorCode = 741 NSERR_CS_INVALBACKUP_ERROR_MESSAGE string = "Content-Switching or Cache-Redirection vservers cannot be used as a backupvserver." NSERR_CACHE_MEM_LIMIT_EXCEEDING_ERROR_CODE errorCode = 742 NSERR_CACHE_MEM_LIMIT_EXCEEDING_ERROR_MESSAGE string = "" /* 166-byte string literal not displayed */ NSERR_INVAL_ARG_CRPL_LBVS_ERROR_CODE errorCode = 745 NSERR_INVAL_ARG_CRPL_LBVS_ERROR_MESSAGE string = "LB vserver cannot be bound to the CR vserver along with a CR policy." NSERR_CACHE_MEM_LIMIT_NOT_CONFIGURED_ERROR_CODE errorCode = 747 NSERR_CACHE_MEM_LIMIT_NOT_CONFIGURED_ERROR_MESSAGE string = "Set the IC memory on the default partition before setting the IC memory for an admin partition." NSERR_INVALID_BIND_PIPOL_CS_ERROR_CODE errorCode = 748 NSERR_INVALID_BIND_PIPOL_CS_ERROR_MESSAGE string = "The Advanced Policy cannot be bound to a CS vserver" NSERR_INVALID_BIND_PIPOL_CR_ERROR_CODE errorCode = 749 NSERR_INVALID_BIND_PIPOL_CR_ERROR_MESSAGE string = "The Advanced Policy cannot be bound to a CR vserver" NSERR_MEDIAC_MEMORY_ALLOC_FAILED_ERROR_CODE errorCode = 750 NSERR_MEDIAC_MEMORY_ALLOC_FAILED_ERROR_MESSAGE string = "Memory allocation for media classification failed" NSERR_CSPOL_VPN_BIND_ERROR_CODE errorCode = 756 NSERR_CSPOL_VPN_BIND_ERROR_MESSAGE string = "Invalid bind, VPN vserver is already set as a target Vserver on a CS action." NSERR_CSACT_VPN_ERROR_CODE errorCode = 757 NSERR_CSACT_VPN_ERROR_MESSAGE string = "VPN vserver cannot be set as a target Vserver since CS policies are bound to it." NSERR_CSPOL_ACT_VPN_ERROR_CODE errorCode = 759 NSERR_CSPOL_ACT_VPN_ERROR_MESSAGE string = "CS policy cannot be bound to the vserver.CS action must be a LB vserver." NSERR_VPNSERVER_NOTEXIST_ERROR_CODE errorCode = 760 NSERR_VPNSERVER_NOTEXIST_ERROR_MESSAGE string = "The VPN Vserver does not exist" NSERR_VPNREFERRED_IN_CSBINDING_ERROR_CODE errorCode = 761 NSERR_VPNREFERRED_IN_CSBINDING_ERROR_MESSAGE string = "Cannot remove VPN Vserver which is referred in CS policy bindings." NSERR_DEFAULTVPN_NOT_BOUND_ERROR_CODE errorCode = 762 NSERR_DEFAULTVPN_NOT_BOUND_ERROR_MESSAGE string = "Default VPN mentioned is not bound" NSERR_HDXINVAL_ERROR_CODE errorCode = 763 NSERR_HDXINVAL_ERROR_MESSAGE string = "HDX servicetype cannot have WildCard IP and Port or 0 IP." NSERR_CSW_ACTION_INCOMPTIBLE_ERROR_CODE errorCode = 764 NSERR_CSW_ACTION_INCOMPTIBLE_ERROR_MESSAGE string = "" /* 170-byte string literal not displayed */ NSERR_FWPXY_LICENSE_ERROR_CODE errorCode = 3578 NSERR_FWPXY_LICENSE_ERROR_MESSAGE string = "Feature not licensed [FORWARDPROXY]" NSERR_GSLB_SVC_GRP_VSRVR_ERR_ERROR_CODE errorCode = 941 NSERR_GSLB_SVC_GRP_VSRVR_ERR_ERROR_MESSAGE string = "Binding of same GSLB servicegroup to heterogeneous IPV4 and IPV6 GSLB vservers is not allowed." NSERR_GSLB_SVC_GRP_IP_ERR_ERROR_CODE errorCode = 942 NSERR_GSLB_SVC_GRP_IP_ERR_ERROR_MESSAGE string = "Same GSLB servicegroup cannot be bound to both IPV4 and IPV6 addresses." NSERR_GSLB_PUB_IP_PORT_ERROR_CODE errorCode = 943 NSERR_GSLB_PUB_IP_PORT_ERROR_MESSAGE string = "" /* 133-byte string literal not displayed */ NSERR_GSLB_SVCGRP_PUBIP_PUBPORT_EXISTS_ERROR_CODE errorCode = 1341 NSERR_GSLB_SVCGRP_PUBIP_PUBPORT_EXISTS_ERROR_MESSAGE string = "The Public IP and Public port is being used by another service item in the same GSLB servicegroup." NSERR_NO_GSLBSVCGRP_ERROR_CODE errorCode = 1349 NSERR_NO_GSLBSVCGRP_ERROR_MESSAGE string = "The GSLB servicegroup does not exist" NSERR_RENAME_GSLB_SVCGRP_WARN_ERROR_CODE errorCode = 1350 NSERR_RENAME_GSLB_SVCGRP_WARN_ERROR_MESSAGE string = "" /* 155-byte string literal not displayed */ NSERR_CS_PERSIST_NT_ALLWD_ERROR_CODE errorCode = 1688 NSERR_CS_PERSIST_NT_ALLWD_ERROR_MESSAGE string = "Persistence is not supported for PROXY and CS GSLB type of CS vservers." NSERR_GSLB_WC_PER_NOT_SUPPORTED_ERROR_CODE errorCode = 1494 NSERR_GSLB_WC_PER_NOT_SUPPORTED_ERROR_MESSAGE string = "Site persistence will not be honoured for wildcard domains." NSERR_CR_SVC_ERROR_ERROR_CODE errorCode = 1903 NSERR_CR_SVC_ERROR_ERROR_MESSAGE string = "DisallowServiceAccess option is applicable only for CR Forward Cache Type vservers." NSERR_CACHE_MEM_MINIMUM_CRITERIA_NOT_MET_ERROR_CODE errorCode = 1718 NSERR_CACHE_MEM_MINIMUM_CRITERIA_NOT_MET_ERROR_MESSAGE string = "Minimum cache memory not configured" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#cvpn-errors NSERR_NO_SUCH_PROFILE_ERROR_CODE errorCode = 3248 NSERR_NO_SUCH_PROFILE_ERROR_MESSAGE string = "Profile does not exist" NSERR_PROFILE_IN_USE_ERROR_CODE errorCode = 3249 NSERR_PROFILE_IN_USE_ERROR_MESSAGE string = "Profile in use" NSERR_NO_SAMLPROFILE_ERROR_CODE errorCode = 3383 NSERR_NO_SAMLPROFILE_ERROR_MESSAGE string = "Please specify a SAML SSO profile." NSERR_NO_SUCH_PUSH_SERVICE_ERROR_CODE errorCode = 3003 NSERR_NO_SUCH_PUSH_SERVICE_ERROR_MESSAGE string = "Push service does not exist" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#dsk-cache-errors NSERR_IC_CACHE_NOT_ENB_ERROR_CODE errorCode = 752 NSERR_IC_CACHE_NOT_ENB_ERROR_MESSAGE string = "FEO enabled but IC needs to be enabled for most FEO features to work." NSERR_DISK_ENGG_NOT_RUNNING_ERROR_CODE errorCode = 753 NSERR_DISK_ENGG_NOT_RUNNING_ERROR_MESSAGE string = "Disk Engine is not running, Save the config and reboot." NSERR_DISK_ENGG_DISABLED_ERROR_CODE errorCode = 754 NSERR_DISK_ENGG_DISABLED_ERROR_MESSAGE string = "To take Disk Engine down, Save the config and reboot." NSERR_IC_DISK_CACHE_PARAM_NOT_SET_ERROR_CODE errorCode = 755 NSERR_IC_DISK_CACHE_PARAM_NOT_SET_ERROR_MESSAGE string = "Disk Cache not enabled. Set -enableDiskCache parameter to YES." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#fileupload-errors NSERR_NO_DIR_ERROR_CODE errorCode = 3440 NSERR_NO_DIR_ERROR_MESSAGE string = "Directory does not exist." NSERR_NO_FILE_ERROR_CODE errorCode = 3441 NSERR_NO_FILE_ERROR_MESSAGE string = "File does not exist." NSERR_FILEEXT_NOTSUP_ERROR_CODE errorCode = 3442 NSERR_FILEEXT_NOTSUP_ERROR_MESSAGE string = "Unsupported file format. only txt/cert/req/xml/key type of files are allowed." NSERR_FILECONT_NOTSUP_ERROR_CODE errorCode = 3443 NSERR_FILECONT_NOTSUP_ERROR_MESSAGE string = "Unsupported file content. file content should be base64 encoded." NSERR_FILEENC_NOTSUP_ERROR_CODE errorCode = 3444 NSERR_FILEENC_NOTSUP_ERROR_MESSAGE string = "Unsupported encoding type. only BASE64 encoding is allowed." NSERR_NO_DEST_ERROR_CODE errorCode = 3445 NSERR_NO_DEST_ERROR_MESSAGE string = "Destination path does not exist." NSERR_INVALID_DEST_ERROR_CODE errorCode = 3446 NSERR_INVALID_DEST_ERROR_MESSAGE string = "User doesn't have permission for given Destination path." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#fwdsession-errors NSERR_FWDSESSION_NAME_EXISTS_ERROR_CODE errorCode = 928 NSERR_FWDSESSION_NAME_EXISTS_ERROR_MESSAGE string = "A forwarding session with same name exists" NSERR_FWDSESSION_NW_EXISTS_ERROR_CODE errorCode = 929 NSERR_FWDSESSION_NW_EXISTS_ERROR_MESSAGE string = "A forwarding session with same network exists" NSERR_FWDSESSION_ACL_EXISTS_ERROR_CODE errorCode = 930 NSERR_FWDSESSION_ACL_EXISTS_ERROR_MESSAGE string = "This acl is already configured" NSERR_FWDSESSION_ACL_NOT_EXISTS_ERROR_CODE errorCode = 931 NSERR_FWDSESSION_ACL_NOT_EXISTS_ERROR_MESSAGE string = "Specified ACL is not configured" NSERR_FWDSESSION_CONN_FAILOVER_ERROR_CODE errorCode = 932 NSERR_FWDSESSION_CONN_FAILOVER_ERROR_MESSAGE string = "Connection fail-over not supported for v6 forwarding sessions" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#gentool-errors NSERR_SSL_CONFFILE_ERROR_CODE errorCode = 1601 NSERR_SSL_CONFFILE_ERROR_MESSAGE string = "Error in SSL conf file" NSERR_SSL_NOCONFFILE_ERROR_CODE errorCode = 1602 NSERR_SSL_NOCONFFILE_ERROR_MESSAGE string = "Unable to load SSL configuration info" NSERR_SSL_SIGFAIL_ERROR_CODE errorCode = 1603 NSERR_SSL_SIGFAIL_ERROR_MESSAGE string = "Signing operation failed" NSERR_SSL_INVALFORMAT_ERROR_CODE errorCode = 1604 NSERR_SSL_INVALFORMAT_ERROR_MESSAGE string = "Invalid format" NSERR_SSL_OUTFILE_ERROR_CODE errorCode = 1605 NSERR_SSL_OUTFILE_ERROR_MESSAGE string = "Problem in writing output file" NSERR_SSL_VERIFY_FAIL_ERROR_CODE errorCode = 1606 NSERR_SSL_VERIFY_FAIL_ERROR_MESSAGE string = "Signature verification failed" NSERR_SSL_FILECREATE_ERROR_CODE errorCode = 1607 NSERR_SSL_FILECREATE_ERROR_MESSAGE string = "Unable to create output file" NSERR_SSL_MINKEYSIZE_ERROR_CODE errorCode = 1608 NSERR_SSL_MINKEYSIZE_ERROR_MESSAGE string = "Key size less than 1024 is not supported on FIPS Firmware Version 1.1." NSERR_SSL_INVALID_REQ_ERROR_CODE errorCode = 1609 NSERR_SSL_INVALID_REQ_ERROR_MESSAGE string = "Invalid certificate request" NSERR_SSL_GENTOOL_ERROR_CODE errorCode = 1610 NSERR_SSL_GENTOOL_ERROR_MESSAGE string = "Internal failure in SSL cert/key generation tool" NSERR_SSL_PEM_ONLY_ERROR_CODE errorCode = 1611 NSERR_SSL_PEM_ONLY_ERROR_MESSAGE string = "Only PEM format private key can be encrypted" NSERR_SSL_PASSMISMATCH_ERROR_CODE errorCode = 1612 NSERR_SSL_PASSMISMATCH_ERROR_MESSAGE string = "Password verification failed" NSERR_SSL_PASSREQ_ERROR_CODE errorCode = 1613 NSERR_SSL_PASSREQ_ERROR_MESSAGE string = "Password required for private key" NSERR_SSL_INVALPASS_ERROR_CODE errorCode = 1614 NSERR_SSL_INVALPASS_ERROR_MESSAGE string = "Invalid password" NSERR_SSL_MAXKEYSIZE_ERROR_CODE errorCode = 1615 NSERR_SSL_MAXKEYSIZE_ERROR_MESSAGE string = "Maximum allowed key size is 2048" NSERR_SSL_GNTOOLARG_MISSING_ERROR_CODE errorCode = 1616 NSERR_SSL_GNTOOLARG_MISSING_ERROR_MESSAGE string = "Required argument missing" NSERR_SSL_INVAL_PUBEXP_ERROR_CODE errorCode = 1617 NSERR_SSL_INVAL_PUBEXP_ERROR_MESSAGE string = "Invalid public exponent value" NSERR_SSL_INVALID_VALUE_ERROR_CODE errorCode = 1618 NSERR_SSL_INVALID_VALUE_ERROR_MESSAGE string = "Invalid value" NSERR_SSL_MISSING_KVAL_ERROR_CODE errorCode = 1619 NSERR_SSL_MISSING_KVAL_ERROR_MESSAGE string = "Value missing for the argument" NSERR_SSL_INVAL_DHGEN_ERROR_CODE errorCode = 1620 NSERR_SSL_INVAL_DHGEN_ERROR_MESSAGE string = "Invalid DH generator value" NSERR_SSL_NOFILE_CERTREQ_ERROR_CODE errorCode = 1621 NSERR_SSL_NOFILE_CERTREQ_ERROR_MESSAGE string = "No such certificate request file exists" NSERR_SSL_REQ_NOMATCH_ERROR_CODE errorCode = 1622 NSERR_SSL_REQ_NOMATCH_ERROR_MESSAGE string = "Certificate Request (CSR) and private key do not match" NSERR_SSL_PKCS12_ERROR_CODE errorCode = 1623 NSERR_SSL_PKCS12_ERROR_MESSAGE string = "Problem in input PKCS12 file" NSERR_SSL_NOFILE_CAPVTKEY_ERROR_CODE errorCode = 1624 NSERR_SSL_NOFILE_CAPVTKEY_ERROR_MESSAGE string = "No such CA key file present" NSERR_SSL_NOFILE_CACERT_ERROR_CODE errorCode = 1625 NSERR_SSL_NOFILE_CACERT_ERROR_MESSAGE string = "No such CA certificate file exists" NSERR_SSL_NOFILE_SERIAL_ERROR_CODE errorCode = 1626 NSERR_SSL_NOFILE_SERIAL_ERROR_MESSAGE string = "No such serial file exists" NSERR_SSL_NOFILE_PKCS12_ERROR_CODE errorCode = 1627 NSERR_SSL_NOFILE_PKCS12_ERROR_MESSAGE string = "No such PKCS12 file exists" NSERR_SSL_READ_CACERT_ERROR_CODE errorCode = 1628 NSERR_SSL_READ_CACERT_ERROR_MESSAGE string = "In reading input CA certficate file" NSERR_READ_CERT_ERROR_CODE errorCode = 1629 NSERR_READ_CERT_ERROR_MESSAGE string = "Error in reading input certficate file" NSERR_IMP_EXP_NOT_TOGETHER_ERROR_CODE errorCode = 1630 NSERR_IMP_EXP_NOT_TOGETHER_ERROR_MESSAGE string = "Import and export can not be specified together" NSERR_NOFILE_CERT_ERROR_CODE errorCode = 1631 NSERR_NOFILE_CERT_ERROR_MESSAGE string = "No such certificate file exists" NSERR_NOFILE_KEY_ERROR_CODE errorCode = 1632 NSERR_NOFILE_KEY_ERROR_MESSAGE string = "No such key file exists" NSERR_CACERTPKEY_MISMATCH_ERROR_CODE errorCode = 1633 NSERR_CACERTPKEY_MISMATCH_ERROR_MESSAGE string = "CA certificate not matching with CA private-key" NSERR_WRONG_REV_ENTRY_ERROR_CODE errorCode = 1634 NSERR_WRONG_REV_ENTRY_ERROR_MESSAGE string = "Invalid revocation entry in CA's database" NSERR_WRONG_REV_DATE_ERROR_CODE errorCode = 1635 NSERR_WRONG_REV_DATE_ERROR_MESSAGE string = "Invalid revocation data in CA's database" NSERR_WRONG_SERIAL_NO_ERROR_CODE errorCode = 1636 NSERR_WRONG_SERIAL_NO_ERROR_MESSAGE string = "Invalid serial number in CA's database" NSERR_CREATE_DATABASE_ENTRY_ERROR_CODE errorCode = 1637 NSERR_CREATE_DATABASE_ENTRY_ERROR_MESSAGE string = "Revocation entry creation failed" NSERR_ALREADY_REVKD_ERROR_CODE errorCode = 1638 NSERR_ALREADY_REVKD_ERROR_MESSAGE string = "Certificate already revoked" NSERR_LOAD_PKEY_ERROR_CODE errorCode = 1639 NSERR_LOAD_PKEY_ERROR_MESSAGE string = "Private key loading failed" NSERR_CERTPKEY_NEEDED_ERROR_CODE errorCode = 1640 NSERR_CERTPKEY_NEEDED_ERROR_MESSAGE string = "Both certificate and private key are needed for export" NSERR_PKCS12_NEEDED_ERROR_CODE errorCode = 1641 NSERR_PKCS12_NEEDED_ERROR_MESSAGE string = "PKCS12 file missing for import" NSERR_ERR_FILEEXISTS_ERROR_CODE errorCode = 1642 NSERR_ERR_FILEEXISTS_ERROR_MESSAGE string = "Cannot create output file. File already exists" NSERR_FIPSKEY_KEYFILE_OPTION_ERROR_CODE errorCode = 1643 NSERR_FIPSKEY_KEYFILE_OPTION_ERROR_MESSAGE string = "Both -keyFileName and -fipsKeyName cannot be specified" NSERR_OUTFILELENBIG_ERROR_CODE errorCode = 1644 NSERR_OUTFILELENBIG_ERROR_MESSAGE string = "Output file name too long" NSERR_SSL_DEFPATH_ERROR_CODE errorCode = 1645 NSERR_SSL_DEFPATH_ERROR_MESSAGE string = "Output filepath should be under the partition's default SSL directory" NSERR_SSL_CRL_DEFPATH_ERROR_CODE errorCode = 1646 NSERR_SSL_CRL_DEFPATH_ERROR_MESSAGE string = "Output CRL filepath should be under the partition's default CRL directory" NSERR_SSL_DEFLOCATION_ERROR_CODE errorCode = 1647 NSERR_SSL_DEFLOCATION_ERROR_MESSAGE string = "Input file(s) not present or not accessible in current partition" NSERR_SSL_DNS_DEFPATH_ERROR_CODE errorCode = 1648 NSERR_SSL_DNS_DEFPATH_ERROR_MESSAGE string = "Output filepath should be under the partition's default DNS directory" NSERR_SSL_CERTKEY_INCOMPATIBLE_ERROR_CODE errorCode = 1649 NSERR_SSL_CERTKEY_INCOMPATIBLE_ERROR_MESSAGE string = "Cannot bind incompatible certkey type with Vserver." NSERR_DHREQD_ERROR_CODE errorCode = 1791 NSERR_DHREQD_ERROR_MESSAGE string = "DH required" NSERR_SSL_CRL_DEFLOCATION_ERROR_CODE errorCode = 1650 NSERR_SSL_CRL_DEFLOCATION_ERROR_MESSAGE string = "Input CRL file not present or not accessible under the partition's default CRL directory" NSERR_SSL_NOFIPS_KEY_ERROR_CODE errorCode = 1651 NSERR_SSL_NOFIPS_KEY_ERROR_MESSAGE string = "No such FIPS key" NSERR_SSL_IMPROPER_SERIALFILE_ERROR_CODE errorCode = 1652 NSERR_SSL_IMPROPER_SERIALFILE_ERROR_MESSAGE string = "Invalid serial file" NSERR_SSL_SERIAL_NUM_REVOKED_ERROR_CODE errorCode = 1653 NSERR_SSL_SERIAL_NUM_REVOKED_ERROR_MESSAGE string = "Certificate serial number match with another certificate already revoked in the CRL" NSERR_SSL_MAXRSAKEYSIZE_ERROR_CODE errorCode = 1654 NSERR_SSL_MAXRSAKEYSIZE_ERROR_MESSAGE string = "Maximum allowed key size is 4096" NSERR_SSL_MUSTBEPEM_ERROR_CODE errorCode = 1655 NSERR_SSL_MUSTBEPEM_ERROR_MESSAGE string = "The input file must be in PEM or SIM format." NSERR_SSL_CANTBEPEM_ERROR_CODE errorCode = 1656 NSERR_SSL_CANTBEPEM_ERROR_MESSAGE string = "The input file cannot be in PEM format." NSERR_SSL_BAD_LABEL_ERROR_CODE errorCode = 1657 NSERR_SSL_BAD_LABEL_ERROR_MESSAGE string = "The keylabel cannot be 'public' or 'private'." NSERR_SSL_HSMKEY_LOAD_ERROR_CODE errorCode = 1664 NSERR_SSL_HSMKEY_LOAD_ERROR_MESSAGE string = "Unable to Load Key in external Hardware Security Module (HSM)." NSERR_SSL_HSMKEY_PPE_ERROR_CODE errorCode = 1665 NSERR_SSL_HSMKEY_PPE_ERROR_MESSAGE string = "Internal error while adding HSM key." NSERR_ERR_SSL_HSMKEY_NOKEY_ERROR_CODE errorCode = 1666 NSERR_ERR_SSL_HSMKEY_NOKEY_ERROR_MESSAGE string = "Missing argument [Key]." NSERR_ERR_SSL_HSMKEY_DELETE_ERROR_CODE errorCode = 1667 NSERR_ERR_SSL_HSMKEY_DELETE_ERROR_MESSAGE string = "Unable to Delete Key in external Hardware Security Module (HSM)." NSERR_ERR_SSL_HSMKEY_NOMATCH_ERROR_CODE errorCode = 1668 NSERR_ERR_SSL_HSMKEY_NOMATCH_ERROR_MESSAGE string = "Specified HSM Type does not match." NSERR_ERR_SSL_HSMKEY_REFEXT_ERROR_CODE errorCode = 1669 NSERR_ERR_SSL_HSMKEY_REFEXT_ERROR_MESSAGE string = "The HSM key is referenced by a certificate" NSERR_ERR_SSL_HSMKEY_NOTEXISTS_ERROR_CODE errorCode = 1670 NSERR_ERR_SSL_HSMKEY_NOTEXISTS_ERROR_MESSAGE string = "No such HSM key." NSERR_ERR_SSL_HSMKEY_NOSTORE_ERROR_CODE errorCode = 1671 NSERR_ERR_SSL_HSMKEY_NOSTORE_ERROR_MESSAGE string = "Specified keystore does not exist." NSERR_ERR_SSL_GW_NOTUP_ERROR_CODE errorCode = 1672 NSERR_ERR_SSL_GW_NOTUP_ERROR_MESSAGE string = "Gateway daemon is booting up please wait for 20 to 30 secs." NSERR_ERR_SSL_HSMKEY_FIPS_ERROR_CODE errorCode = 1673 NSERR_ERR_SSL_HSMKEY_FIPS_ERROR_MESSAGE string = "Operation not permitted on a MPX-FIPS System." NSERR_ERR_SSL_SANCERT_DUP_ERROR_CODE errorCode = 1674 NSERR_ERR_SSL_SANCERT_DUP_ERROR_MESSAGE string = "Duplicate domain cert cannot be added." NSERR_SSL_ECDSA_SUPPORT_ERROR_CODE errorCode = 1675 NSERR_SSL_ECDSA_SUPPORT_ERROR_MESSAGE string = "ECDSA certificates are not supported for this entity/platform." NSERR_SSL_ECDSA_CURVE_SUPPORT_ERROR_CODE errorCode = 1676 NSERR_SSL_ECDSA_CURVE_SUPPORT_ERROR_MESSAGE string = "The EC curve in the ECDSA certificate is not supported." NSERR_SSL_LINK_LOOP_ERROR_CODE errorCode = 1677 NSERR_SSL_LINK_LOOP_ERROR_MESSAGE string = "Certificate can't be linked. This is creating a loop." NSERR_SSL_N3FIPSREBOOT_ERROR_CODE errorCode = 1678 NSERR_SSL_N3FIPSREBOOT_ERROR_MESSAGE string = "N3FIPS InitHSM is not done, Please reboot again" NSERR_SSL_N3FIPS_FILECREATE_ERROR_CODE errorCode = 1679 NSERR_SSL_N3FIPS_FILECREATE_ERROR_MESSAGE string = "" /* 136-byte string literal not displayed */ NSERR_SSL_SIGHASH_SUPPORT_ERROR_CODE errorCode = 1680 NSERR_SSL_SIGHASH_SUPPORT_ERROR_MESSAGE string = "List contains unsupported SigHash type for this entity/platform." NSERR_SSL_SAN_CERT_ENTRY_ERROR_CODE errorCode = 1681 NSERR_SSL_SAN_CERT_ENTRY_ERROR_MESSAGE string = "Unsupported OID for SAN entry in certificate" NSERR_CIPHER_BACKEND_ERROR_CODE errorCode = 1682 NSERR_CIPHER_BACKEND_ERROR_MESSAGE string = "The cipher alias cannot be bound to this entity. It is only applicable for a SSL backend service or a SSL serviceGroup" NSERR_SSL_CIPHER_NOT_SUPPORTED_ON_PLATFORM_ERROR_CODE errorCode = 1683 NSERR_SSL_CIPHER_NOT_SUPPORTED_ON_PLATFORM_ERROR_MESSAGE string = "This Cipher/CipherAlias is not supported on this platform." NSERR_SSL_I2D_X509_NAME_FAILURE_ERROR_CODE errorCode = 1684 NSERR_SSL_I2D_X509_NAME_FAILURE_ERROR_MESSAGE string = "Failed to encode X509_NAME into DER format" NSERR_DTLS_CIPHER_SUPPORT_ERROR_CODE errorCode = 1685 NSERR_DTLS_CIPHER_SUPPORT_ERROR_MESSAGE string = "This cipher alias cannot be bound. DTLS vServer/Service only supports DEFAULT_DTLS/DEFAULT_DTLS_BACKEND ciphers respectively." NSERR_DTLS_CIPHER_BACKEND_ERROR_CODE errorCode = 1686 NSERR_DTLS_CIPHER_BACKEND_ERROR_MESSAGE string = "The cipher alias cannot be bound to this entity. It is only applicable for a DTLS backend service or a DTLS serviceGroup." NSERR_SSL_DIGEST_FIPS_ERROR_CODE errorCode = 1689 NSERR_SSL_DIGEST_FIPS_ERROR_MESSAGE string = "Digest type is not supported on this platform" NSERR_SSL_QUIC_TLS13_ONLY_ERROR_CODE errorCode = 1694 NSERR_SSL_QUIC_TLS13_ONLY_ERROR_MESSAGE string = "SSL profiles of type QUIC Front-End only support TLS 1.3 cipher suites." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#grpc-pb-errors NSERR_GRPC_PB_UNKNOWN_WIRE_TYPE_ERROR_CODE errorCode = 1704 NSERR_GRPC_PB_UNKNOWN_WIRE_TYPE_ERROR_MESSAGE string = "Invalid Protocol Buffer wire type seen." NSERR_GRPC_PB_KEY_NOT_FOUND_ERROR_CODE errorCode = 1715 NSERR_GRPC_PB_KEY_NOT_FOUND_ERROR_MESSAGE string = "Protocol Buffer Field not found." NSERR_GRPC_PB_REP_FIELD_RANGE_ERROR_CODE errorCode = 1716 NSERR_GRPC_PB_REP_FIELD_RANGE_ERROR_MESSAGE string = "Repeated Protocol Buffer field index exceeds repeated size." NSERR_GRPC_PB_VALIDATION_FAILED_ERROR_CODE errorCode = 1717 NSERR_GRPC_PB_VALIDATION_FAILED_ERROR_MESSAGE string = "gRPC validation failed." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#gslb-errors NSERR_BAD_DNS_OPTION_ERROR_CODE errorCode = 1792 NSERR_BAD_DNS_OPTION_ERROR_MESSAGE string = "Invalid DNS option specified" NSERR_DNS_BAD_CACHETYPE_ERROR_CODE errorCode = 1793 NSERR_DNS_BAD_CACHETYPE_ERROR_MESSAGE string = "Only forward cache type can bind to DNS vserver" NSERR_DNS_NOTAVAIL_ERROR_CODE errorCode = 1794 NSERR_DNS_NOTAVAIL_ERROR_MESSAGE string = "No such DNS vserver exists" NSERR_DNS_BAD_VSTYPE_ERROR_CODE errorCode = 1795 NSERR_DNS_BAD_VSTYPE_ERROR_MESSAGE string = "DNS vserver can only be address-based" NSERR_GSLB_SITELKUP_FAILED_ERROR_CODE errorCode = 1796 NSERR_GSLB_SITELKUP_FAILED_ERROR_MESSAGE string = "GSLB site not found" NSERR_GSLBBOUNDTO_CSACT_ERROR_CODE errorCode = 1797 NSERR_GSLBBOUNDTO_CSACT_ERROR_MESSAGE string = "The GSLB Vserver referred by Content Switching action cannot be removed" NSERR_GSLBREFFERED_IN_CSBINDING_ERROR_CODE errorCode = 1798 NSERR_GSLBREFFERED_IN_CSBINDING_ERROR_MESSAGE string = "Cannot remove GSLB Vserver which is reffered in CS policy bindings" NSERR_NOAREC_ERROR_CODE errorCode = 1801 NSERR_NOAREC_ERROR_MESSAGE string = "Address record for host name not available" NSERR_INVALTTL_ERROR_CODE errorCode = 1806 NSERR_INVALTTL_ERROR_MESSAGE string = "Invalid TTL value" NSERR_CNAMEEXISTS_ERROR_CODE errorCode = 1807 NSERR_CNAMEEXISTS_ERROR_MESSAGE string = "Alias name record exists for the host name" NSERR_INVAL_SVCOPTION_ERROR_CODE errorCode = 1808 NSERR_INVAL_SVCOPTION_ERROR_MESSAGE string = "Option not applicable for this service" NSERR_GSLBBIND_EXISTS_ERROR_CODE errorCode = 1809 NSERR_GSLBBIND_EXISTS_ERROR_MESSAGE string = "GSLB binding exists for the given host" NSERR_NOT_LOCALREMOTE_ERROR_CODE errorCode = 1810 NSERR_NOT_LOCALREMOTE_ERROR_MESSAGE string = "Site information must be specified for a GSLB service" NSERR_COUNT_MISMATCH_ERROR_CODE errorCode = 1811 NSERR_COUNT_MISMATCH_ERROR_MESSAGE string = "Address record count does not match the number of services bound to the GSLB vserver" NSERR_IP_MISMATCH_ERROR_CODE errorCode = 1812 NSERR_IP_MISMATCH_ERROR_MESSAGE string = "IP addresses of bound GSLB services and the address records do not match" NSERR_SVCIP_REPEAT_ERROR_CODE errorCode = 1813 NSERR_SVCIP_REPEAT_ERROR_MESSAGE string = "A GSLB service with the same IP address is already bound to the GSLB vserver" NSERR_NOT_REMOTE_ERROR_CODE errorCode = 1814 NSERR_NOT_REMOTE_ERROR_MESSAGE string = "Service bound to GSLB VIP with -gslb remote is a local service" NSERR_NOT_LOCAL_ERROR_CODE errorCode = 1815 NSERR_NOT_LOCAL_ERROR_MESSAGE string = "Service bound to GSLB VIP with -gslb local is not a local service" NSERR_PROXY_REC_ERROR_CODE errorCode = 1816 NSERR_PROXY_REC_ERROR_MESSAGE string = "A proxy record cannot be assigned to the domain" NSERR_NOPROXY_AREC_ERROR_CODE errorCode = 1817 NSERR_NOPROXY_AREC_ERROR_MESSAGE string = "Proxy address records cannot be bound to a GSLB vserver" NSERR_SVC_GSLBBIND_EXISTS_ERROR_CODE errorCode = 1819 NSERR_SVC_GSLBBIND_EXISTS_ERROR_MESSAGE string = "GSLB binding exists - unbind the GSLB vserver first" NSERR_SVCTYPEMISMATCH_ERROR_CODE errorCode = 1820 NSERR_SVCTYPEMISMATCH_ERROR_MESSAGE string = "Service type mismatch with existing service/vserver" NSERR_INVALID_PUBIP_OPTION_ERROR_CODE errorCode = 1822 NSERR_INVALID_PUBIP_OPTION_ERROR_MESSAGE string = "The public IP and public port are valid only for GSLB local service" NSERR_INVAL_NAME_SYNTAX_ERROR_CODE errorCode = 1823 NSERR_INVAL_NAME_SYNTAX_ERROR_MESSAGE string = "Invalid domain name syntax" NSERR_GSLB_BACKUP_ERROR_CODE errorCode = 1824 NSERR_GSLB_BACKUP_ERROR_MESSAGE string = "Backup VIP is backup of other GSLB VIP. Please unset the existing association and try again" NSERR_IS_BACKUP_ERROR_CODE errorCode = 1825 NSERR_IS_BACKUP_ERROR_MESSAGE string = "Backup VIP is backup of other VIP. Please unset the existing association and try again" NSERR_GSLB_HAS_BACKUP_ERROR_CODE errorCode = 1826 NSERR_GSLB_HAS_BACKUP_ERROR_MESSAGE string = "GSLB VIP has a backup. Please unset the backup and try the operation again" NSERR_GSLB_REQUIRES_INDEPENDENT_BACKUP_ERROR_CODE errorCode = 1827 NSERR_GSLB_REQUIRES_INDEPENDENT_BACKUP_ERROR_MESSAGE string = "Backup VIP to GSLB VIP must not be backup of any other VIP. Please unset the backup and try the operation again" NSERR_GSLB_NOQUALIFIER_ERROR_CODE errorCode = 1828 NSERR_GSLB_NOQUALIFIER_ERROR_MESSAGE string = "At least one qualifier should be given for the location" NSERR_GSLB_NONAME_ERROR_CODE errorCode = 1829 NSERR_GSLB_NONAME_ERROR_MESSAGE string = "The qualifier does not exist in the repository" NSERR_GSLB_CUSTOM_NOSPACE_ERROR_CODE errorCode = 1830 NSERR_GSLB_CUSTOM_NOSPACE_ERROR_MESSAGE string = "Too many custom locations" NSERR_GSLB_STATIC_NOSPACE_ERROR_CODE errorCode = 1836 NSERR_GSLB_STATIC_NOSPACE_ERROR_MESSAGE string = "Too many static locations" NSERR_GSLBSITENAME_EXISTS_ERROR_CODE errorCode = 1831 NSERR_GSLBSITENAME_EXISTS_ERROR_MESSAGE string = "A GSLB site with the same name exists" NSERR_GSLBSITEIP_EXISTS_ERROR_CODE errorCode = 1832 NSERR_GSLBSITEIP_EXISTS_ERROR_MESSAGE string = "A GSLB site with the same IP address exists" NSERR_NO_GSLBSITE_ERROR_CODE errorCode = 1833 NSERR_NO_GSLBSITE_ERROR_MESSAGE string = "The GSLB site does not exist" NSERR_LOCAL_EXISTS_ERROR_CODE errorCode = 1834 NSERR_LOCAL_EXISTS_ERROR_MESSAGE string = "The local site already exists" NSERR_NO_GSLBSVC_ERROR_CODE errorCode = 1835 NSERR_NO_GSLBSVC_ERROR_MESSAGE string = "The GSLB service does not exist" NSERR_NO_GSLBVIP_ERROR_CODE errorCode = 1837 NSERR_NO_GSLBVIP_ERROR_MESSAGE string = "The GSLB vserver does not exist" NSERR_NO_DMN_ERROR_CODE errorCode = 1839 NSERR_NO_DMN_ERROR_MESSAGE string = "The domain does not exist" NSERR_DMN_NOTBOUND_ERROR_CODE errorCode = 1840 NSERR_DMN_NOTBOUND_ERROR_MESSAGE string = "The domain is not bound to this VIP" NSERR_SVCGRP_NOT_SUPPORTED_ON_HEIRARCHICHAL_ERROR_CODE errorCode = 1841 NSERR_SVCGRP_NOT_SUPPORTED_ON_HEIRARCHICHAL_ERROR_MESSAGE string = "GSLB servicegroup is not supported in parent child topology" NSERR_GSLBDOMAIN_BOUND_ERROR_CODE errorCode = 1842 NSERR_GSLBDOMAIN_BOUND_ERROR_MESSAGE string = "The domain is already bound to a GSLB vserver" NSERR_NOT_GSLBENT_ERROR_CODE errorCode = 1844 NSERR_NOT_GSLBENT_ERROR_MESSAGE string = "Operation not permitted on a non-GSLB entity" NSERR_GSLBDOMAIN_PERM_ERROR_CODE errorCode = 1845 NSERR_GSLBDOMAIN_PERM_ERROR_MESSAGE string = "Operation not permitted on a GSLB-configured domain" NSERR_GSLB_MAXQUAL_ERROR_CODE errorCode = 1846 NSERR_GSLB_MAXQUAL_ERROR_MESSAGE string = "Maximum qualifiers allowed is six" NSERR_GSLB_MAXLOCLENGTH_ERROR_CODE errorCode = 1847 NSERR_GSLB_MAXLOCLENGTH_ERROR_MESSAGE string = "Maximum allowed location length is 256 characters" NSERR_GSLBVIP_PERM_ERROR_CODE errorCode = 1848 NSERR_GSLBVIP_PERM_ERROR_MESSAGE string = "Operation not permitted on a GSLB vserver" NSERR_GSLBSVC_PERM_ERROR_CODE errorCode = 1849 NSERR_GSLBSVC_PERM_ERROR_MESSAGE string = "Operation not permitted on a GSLB service" NSERR_GSLB_MAXSITES_ERROR_CODE errorCode = 1850 NSERR_GSLB_MAXSITES_ERROR_MESSAGE string = "Maximum number of sites is 32" NSERR_GSLB_QUALTOOLONG_ERROR_CODE errorCode = 1851 NSERR_GSLB_QUALTOOLONG_ERROR_MESSAGE string = "The qualifier is too long" NSERR_GSLB_PERSISTIDEXISTS_ERROR_CODE errorCode = 1852 NSERR_GSLB_PERSISTIDEXISTS_ERROR_MESSAGE string = "The persistence ID is already being used by a GSLB vserver" NSERR_GSLB_INVLD_LDNSTO_INTVL_ERROR_CODE errorCode = 1854 NSERR_GSLB_INVLD_LDNSTO_INTVL_ERROR_MESSAGE string = "Minimum LDNS entry timeout interval is 30 secs" NSERR_VIP_BACKUP_ISGSLB_ERROR_CODE errorCode = 1856 NSERR_VIP_BACKUP_ISGSLB_ERROR_MESSAGE string = "GSLB vserver cannot be backup of a non-GSLB vserver" NSERR_GSLB_PUBIP_PUBPORT_EXISTS_ERROR_CODE errorCode = 1857 NSERR_GSLB_PUBIP_PUBPORT_EXISTS_ERROR_MESSAGE string = "The public IP and public port are being used by another GSLB service" NSERR_GSLBLOCALSVC_ENADIS_NOTALLOWED_ERROR_CODE errorCode = 1858 NSERR_GSLBLOCALSVC_ENADIS_NOTALLOWED_ERROR_MESSAGE string = "GSLB local service status not changed - please enable or disable the corresponding LB vserver instead" NSERR_GSLBLOCALSVR_ENADIS_NOTALLOWED_ERROR_CODE errorCode = 1859 NSERR_GSLBLOCALSVR_ENADIS_NOTALLOWED_ERROR_MESSAGE string = "Server status not changed - the server has a GSLB local service" NSERR_INVALID_PERSISTID_ERROR_CODE errorCode = 1860 NSERR_INVALID_PERSISTID_ERROR_MESSAGE string = "Invalid persistence ID" NSERR_PERM_PERSISTID_ERROR_CODE errorCode = 1861 NSERR_PERM_PERSISTID_ERROR_MESSAGE string = "The persistence ID is required for persistence or spillover-persistency to be set" NSERR_INVALID_LOCALSITEIP_ERROR_CODE errorCode = 1862 NSERR_INVALID_LOCALSITEIP_ERROR_MESSAGE string = "Invalid GSLB local site IP address" NSERR_INVALID_REMOTESITEIP_ERROR_CODE errorCode = 1863 NSERR_INVALID_REMOTESITEIP_ERROR_MESSAGE string = "Invalid GSLB remote site IP address" NSERR_INVALID_SITETYPE_ERROR_CODE errorCode = 1864 NSERR_INVALID_SITETYPE_ERROR_MESSAGE string = "Invalid GSLB site type" NSERR_INVALID_BACKUPIP_ERROR_CODE errorCode = 1865 NSERR_INVALID_BACKUPIP_ERROR_MESSAGE string = "Invalid backup IP for the GSLB domain" NSERR_GSLBVIP_MAXSVC_ERROR_CODE errorCode = 1866 NSERR_GSLBVIP_MAXSVC_ERROR_MESSAGE string = "Cannot bind more than 32 services to a GSLB vserver" NSERR_INVALID_JITTER_ERROR_CODE errorCode = 1867 NSERR_INVALID_JITTER_ERROR_MESSAGE string = "RTT tolerance value must be between 1 and 100" NSERR_GSLBLOCSVC_DIS_NOTALLOWD_ERROR_CODE errorCode = 1868 NSERR_GSLBLOCSVC_DIS_NOTALLOWD_ERROR_MESSAGE string = "Cannot add GSLB local service with state set to DISABLED" NSERR_DUMMYBKUP_NOTALLOWD_ERROR_CODE errorCode = 1869 NSERR_DUMMYBKUP_NOTALLOWD_ERROR_MESSAGE string = "A backup vserver with no IP address and port must be of type GSLB" NSERR_GSLBSVC_BIND_NOTALLOWD_ERROR_CODE errorCode = 1870 NSERR_GSLBSVC_BIND_NOTALLOWD_ERROR_MESSAGE string = "Cannot bind GSLB service to a vserver with valid IP and port" NSERR_NSMAP_VERSION_ERROR_CODE errorCode = 1871 NSERR_NSMAP_VERSION_ERROR_MESSAGE string = "Unrecognized NetScaler file version" NSERR_NSMAP_FORMAT_ERROR_CODE errorCode = 1872 NSERR_NSMAP_FORMAT_ERROR_MESSAGE string = "Unrecognized file format specified" NSERR_NSMAP_EOF_ERROR_CODE errorCode = 1873 NSERR_NSMAP_EOF_ERROR_MESSAGE string = "End of file has been reached" NSERR_NSMAP_PARSE_ERROR_CODE errorCode = 1874 NSERR_NSMAP_PARSE_ERROR_MESSAGE string = "File parsing error" NSERR_NSMAP_READ_ERROR_CODE errorCode = 1875 NSERR_NSMAP_READ_ERROR_MESSAGE string = "Error reading file" NSERR_NSMAP_WRITE_ERROR_CODE errorCode = 1876 NSERR_NSMAP_WRITE_ERROR_MESSAGE string = "Error writing file" NSERR_NSMAP_IOCTL_ERROR_CODE errorCode = 1877 NSERR_NSMAP_IOCTL_ERROR_MESSAGE string = "Error occurred while transferring information to NetScaler" NSERR_NSMAP_OUTPUTFILE_ERROR_CODE errorCode = 1878 NSERR_NSMAP_OUTPUTFILE_ERROR_MESSAGE string = "Error opening output file for writing" NSERR_NSMAP_INPUTFILE_ERROR_CODE errorCode = 1879 NSERR_NSMAP_INPUTFILE_ERROR_MESSAGE string = "Error opening input file for reading" NSERR_NSMAP_REQUIRED_FIELD_ERROR_CODE errorCode = 1880 NSERR_NSMAP_REQUIRED_FIELD_ERROR_MESSAGE string = "Required field missing" NSERR_NSMAP_DBFILE_ERROR_CODE errorCode = 1881 NSERR_NSMAP_DBFILE_ERROR_MESSAGE string = "Error opening database file" NSERR_NSMAP_DBINSERT_ERROR_CODE errorCode = 1882 NSERR_NSMAP_DBINSERT_ERROR_MESSAGE string = "Error inserting entry into the database" NSERR_NSMAP_DBSEARCH_ERROR_CODE errorCode = 1883 NSERR_NSMAP_DBSEARCH_ERROR_MESSAGE string = "Error searching the database" NSERR_GSLBPROXM_LICENCE_ABSENT_ERROR_CODE errorCode = 1884 NSERR_GSLBPROXM_LICENCE_ABSENT_ERROR_MESSAGE string = "Cannot set proximity methods without GSLB proximity license" NSERR_GSLB_SITEPERSISTENCE_HTTPONLY_ERROR_CODE errorCode = 1885 NSERR_GSLB_SITEPERSISTENCE_HTTPONLY_ERROR_MESSAGE string = "Site persistence is valid only for HTTP or SSL GSLB services" NSERR_GSLB_NOSITEPFX_ERROR_CODE errorCode = 1886 NSERR_GSLB_NOSITEPFX_ERROR_MESSAGE string = "Site prefix compulsory if site persistence is HTTPRedirect" NSERR_GSLB_SITEPREFIX_SIZE_ERROR_CODE errorCode = 1888 NSERR_GSLB_SITEPREFIX_SIZE_ERROR_MESSAGE string = "Site prefix size exceeds maximum" NSERR_GSLB_SITEDOMAIN_SIZE_ERROR_CODE errorCode = 1889 NSERR_GSLB_SITEDOMAIN_SIZE_ERROR_MESSAGE string = "Site domain cannot be created - name length exceeds maximum" NSERR_GSLB_SITEDOMAIN_SYNTAX_ERROR_CODE errorCode = 1890 NSERR_GSLB_SITEDOMAIN_SYNTAX_ERROR_MESSAGE string = "Site domain cannot be created - name is invalid" NSERR_GSLB_SITEDOMAIN_REFERS_ERROR_CODE errorCode = 1891 NSERR_GSLB_SITEDOMAIN_REFERS_ERROR_MESSAGE string = "Site domain cannot be deleted - it has external DNS references" NSERR_GSLBDOMAIN_REFERS_ERROR_CODE errorCode = 1892 NSERR_GSLBDOMAIN_REFERS_ERROR_MESSAGE string = "GSLB domain cannot be deleted - it has external DNS references" NSERR_GSLB_ARECORD_EXISTS_ERROR_CODE errorCode = 1893 NSERR_GSLB_ARECORD_EXISTS_ERROR_MESSAGE string = "GSLB record cannot be created - another A record is configured with the same name" NSERR_GSLB_SITECOOKIE_TIMEOUT_RANGE_ERROR_CODE errorCode = 1894 NSERR_GSLB_SITECOOKIE_TIMEOUT_RANGE_ERROR_MESSAGE string = "Invalid GSLB site cookie timeout" NSERR_GSLBDOMAIN_SYNTAX_ERROR_CODE errorCode = 1895 NSERR_GSLBDOMAIN_SYNTAX_ERROR_MESSAGE string = "GSLB domain cannot be created - name is invalid" NSERR_GSLB_SO_PERM_ERROR_CODE errorCode = 1896 NSERR_GSLB_SO_PERM_ERROR_MESSAGE string = "Spill-over cannot be set on a GSLB vserver" NSERR_GSLB_DEPRCOOKIETOUT_ERROR_CODE errorCode = 1897 NSERR_GSLB_DEPRCOOKIETOUT_ERROR_MESSAGE string = "Ignored deprecated cookietimeout setting since it has been made a per-domain configuration" NSERR_DNS_NAMESVR_SYNTAX_ERROR_CODE errorCode = 1898 NSERR_DNS_NAMESVR_SYNTAX_ERROR_MESSAGE string = "Invalid name server syntax" NSERR_DNS_ORIGSVR_SYNTAX_ERROR_CODE errorCode = 1899 NSERR_DNS_ORIGSVR_SYNTAX_ERROR_MESSAGE string = "Invalid origin server syntax" NSERR_DNS_CONTACT_SYNTAX_ERROR_CODE errorCode = 1900 NSERR_DNS_CONTACT_SYNTAX_ERROR_MESSAGE string = "Invalid contact name syntax" NSERR_DNS_MX_SYNTAX_ERROR_CODE errorCode = 1901 NSERR_DNS_MX_SYNTAX_ERROR_MESSAGE string = "Invalid mail exchange syntax" NSERR_DNS_CNAME_SYNTAX_ERROR_CODE errorCode = 1902 NSERR_DNS_CNAME_SYNTAX_ERROR_MESSAGE string = "Invalid canonical name syntax" NSERR_DNS_ALIAS_SYNTAX_ERROR_CODE errorCode = 1904 NSERR_DNS_ALIAS_SYNTAX_ERROR_MESSAGE string = "Invalid alias name syntax" NSERR_GSLB_NOLOCALVIP_ERROR_CODE errorCode = 1905 NSERR_GSLB_NOLOCALVIP_ERROR_MESSAGE string = "Cannot create GSLB local service - add the local vserver first" NSERR_GSLB_LOCALSVCEXISTS_ERROR_CODE errorCode = 1906 NSERR_GSLB_LOCALSVCEXISTS_ERROR_MESSAGE string = "Cannot delete the vserver - corresponding GSLB local service still exists" NSERR_GSLBLOCALSVC_PERM_ERROR_CODE errorCode = 1907 NSERR_GSLBLOCALSVC_PERM_ERROR_MESSAGE string = "Operation not permitted on GSLB local service" NSERR_DNS_INVAL_REVDOMNAME_SYNTAX_ERROR_CODE errorCode = 1908 NSERR_DNS_INVAL_REVDOMNAME_SYNTAX_ERROR_MESSAGE string = "Invalid reverse domain name syntax" NSERR_DNS_ALIASREC_ERROR_CODE errorCode = 1909 NSERR_DNS_ALIASREC_ERROR_MESSAGE string = "Alias name cannot have any record" NSERR_GSLBLOCSVC_DELAYEDCLEAN_NOTALLOWD_ERROR_CODE errorCode = 1910 NSERR_GSLBLOCSVC_DELAYEDCLEAN_NOTALLOWD_ERROR_MESSAGE string = "Down state flush cannot be set on GSLB local service" NSERR_NO_BKP_VIP_ERROR_CODE errorCode = 1911 NSERR_NO_BKP_VIP_ERROR_MESSAGE string = "Set a backup Vserver, to enable it." NSERR_GSLB_NOSUCH_LDNSENTRY_ERROR_CODE errorCode = 1912 NSERR_GSLB_NOSUCH_LDNSENTRY_ERROR_MESSAGE string = "LDNS entry not present" NSERR_MAX_DNS_VIEW_ERROR_CODE errorCode = 1913 NSERR_MAX_DNS_VIEW_ERROR_MESSAGE string = "Number of DNS views exceeds limit" NSERR_GSLB_SITE_IP_EXISTS_ERROR_CODE errorCode = 1914 NSERR_GSLB_SITE_IP_EXISTS_ERROR_MESSAGE string = "GSLB Site IP already exists" NSERR_GSLB_LAST_MIP_ERROR_CODE errorCode = 1915 NSERR_GSLB_LAST_MIP_ERROR_MESSAGE string = "MIP is not removed. At least one MIP is required" NSERR_RM_GSLB_SITE_ERROR_CODE errorCode = 1916 NSERR_RM_GSLB_SITE_ERROR_MESSAGE string = "IP cannot be removed as it is being used by the GSLB local site" NSERR_GSLB_IPRM_LAST_MIP_ERROR_CODE errorCode = 1917 NSERR_GSLB_IPRM_LAST_MIP_ERROR_MESSAGE string = "GSLB Site IP removed. MIP is not removed. At least one MIP is required" NSERR_GSLB_SVC_PUB_PORT_ERR_ERROR_CODE errorCode = 1918 NSERR_GSLB_SVC_PUB_PORT_ERR_ERROR_MESSAGE string = "Cannot modify public port for remote GSLB service/service item" NSERR_REC_HAS_REF_ERROR_CODE errorCode = 1919 NSERR_REC_HAS_REF_ERROR_MESSAGE string = "DNS record has references" NSERR_DNS_VIEW_REF_ERROR_CODE errorCode = 1920 NSERR_DNS_VIEW_REF_ERROR_MESSAGE string = "The dns view cannot be removed as it has dependencies" NSERR_GSLB_SITE_PERSISTENCE_MATCH_ERROR_CODE errorCode = 1921 NSERR_GSLB_SITE_PERSISTENCE_MATCH_ERROR_MESSAGE string = "Mismatch in gslb site persistence type with other bound services" NSERR_GSLB_SITE_PERSISTENCE_CONFLICTS_ERROR_CODE errorCode = 1922 NSERR_GSLB_SITE_PERSISTENCE_CONFLICTS_ERROR_MESSAGE string = "Site persistence conflicts with other services/servicegroups bound to the gslb vserver(s)" NSERR_DNS_POLICY_INVAL_ERROR_CODE errorCode = 1923 NSERR_DNS_POLICY_INVAL_ERROR_MESSAGE string = "Invalid DNS policy" NSERR_GSLBVIP_CNAME_MISMATCH_ERROR_CODE errorCode = 1924 NSERR_GSLBVIP_CNAME_MISMATCH_ERROR_MESSAGE string = "GSLB vserver cannot be bound with cname based and ip based services at the same time" NSERR_GSLBVIP_CNAME_UNSUPPORTED_LBMETHODS_ERROR_CODE errorCode = 1925 NSERR_GSLBVIP_CNAME_UNSUPPORTED_LBMETHODS_ERROR_MESSAGE string = "GSLB vserver having cname services cannot have dynamic load balancing methods" NSERR_GSLB_SERVICE_MON_NOIPPORT_ERROR_CODE errorCode = 1926 NSERR_GSLB_SERVICE_MON_NOIPPORT_ERROR_MESSAGE string = "Cannot bind monitor with zero ip or port to a cname gslb service" NSERR_GSLB_SERVICE_MON_SET_NOIPPORT_ERROR_CODE errorCode = 1927 NSERR_GSLB_SERVICE_MON_SET_NOIPPORT_ERROR_MESSAGE string = "Cannot set ip or port to zero when monitor is bound to a cname gslb service." NSERR_GSLB_CNAME_SERVICE_SET_ERROR_CODE errorCode = 1928 NSERR_GSLB_CNAME_SERVICE_SET_ERROR_MESSAGE string = "Setting of these parameters on cname gslb service is not allowed" NSERR_GSLB_CNAME_VSERVER_SET_ERROR_CODE errorCode = 1929 NSERR_GSLB_CNAME_VSERVER_SET_ERROR_MESSAGE string = "Setting of these parameters on gslb vserver having cname services is not allowed" NSERR_GSLBVIP_CNAME_UNSUPPORTED_BKUP_LBMETHODS_ERROR_CODE errorCode = 1930 NSERR_GSLBVIP_CNAME_UNSUPPORTED_BKUP_LBMETHODS_ERROR_MESSAGE string = "GSLB vserver having cname services cannot have dynamic backup load balancing methods" NSERR_GSLBVIP_CNAME_UNSUPPORTED_EDR_ERROR_CODE errorCode = 1931 NSERR_GSLBVIP_CNAME_UNSUPPORTED_EDR_ERROR_MESSAGE string = "GSLB vserver having cname services cannot have empty down response disabled" NSERR_GSLBVIP_CNAME_UNSUPPORTED_MIR_ERROR_CODE errorCode = 1932 NSERR_GSLBVIP_CNAME_UNSUPPORTED_MIR_ERROR_MESSAGE string = "GSLB vserver having cname services cannot have multiple ip response enabled" NSERR_GSLBSVC_VIEW_NEXIST_ERROR_CODE errorCode = 1933 NSERR_GSLBSVC_VIEW_NEXIST_ERROR_MESSAGE string = "View is not bound to the GSLB service" NSERR_DNS_TTL_MORE_THAN_MAX_ALLOWED_ERROR_CODE errorCode = 1934 NSERR_DNS_TTL_MORE_THAN_MAX_ALLOWED_ERROR_MESSAGE string = "DNS RECORD TTL value greater than max TTL allowed" NSERR_GSLB_LB_MAXSITES_ERROR_CODE errorCode = 1935 NSERR_GSLB_LB_MAXSITES_ERROR_MESSAGE string = "Maximum number of LB sites is 1024" NSERR_GSLB_HASCHILDREN_ERROR_CODE errorCode = 1936 NSERR_GSLB_HASCHILDREN_ERROR_MESSAGE string = "Cannot remove site that has child site(s)" NSERR_GSLB_PARENTISCHILD_ERROR_CODE errorCode = 1937 NSERR_GSLB_PARENTISCHILD_ERROR_MESSAGE string = "Parent site cannot be a child to another site" NSERR_MAX_STREAM_SELECTORS_ERROR_CODE errorCode = 1938 NSERR_MAX_STREAM_SELECTORS_ERROR_MESSAGE string = "Number of selectors exceeds limit" NSERR_MAX_STREAM_IDENTIFERS_ERROR_CODE errorCode = 1939 NSERR_MAX_STREAM_IDENTIFERS_ERROR_MESSAGE string = "Number of identifiers exceeds limit" NSERR_NO_SUCH_SELECTOR_ERROR_CODE errorCode = 1940 NSERR_NO_SUCH_SELECTOR_ERROR_MESSAGE string = "The given selector does not exist" NSERR_NO_SUCH_IDENTIFIER_ERROR_CODE errorCode = 1941 NSERR_NO_SUCH_IDENTIFIER_ERROR_MESSAGE string = "The given identifier does not exist" NSERR_RLT_TIMESLICE_INVALID_VAL_ERROR_CODE errorCode = 1942 NSERR_RLT_TIMESLICE_INVALID_VAL_ERROR_MESSAGE string = "Time slice should be a multiple of 10" NSERR_ILLEGAL_SUBNET_MASK_ERROR_CODE errorCode = 1943 NSERR_ILLEGAL_SUBNET_MASK_ERROR_MESSAGE string = "Incorrect subnet mask value" NSERR_STREAM_SELECTOR_INUSE_ERROR_CODE errorCode = 1944 NSERR_STREAM_SELECTOR_INUSE_ERROR_MESSAGE string = "The selector is being referenced by one or more identifiers" NSERR_IDENTIFIER_INUSE_ERROR_CODE errorCode = 1945 NSERR_IDENTIFIER_INUSE_ERROR_MESSAGE string = "The identifier is being referenced by one or more policies" NSERR_SELECTOR_CANNOT_CHANGE_ATTRIB_TYPE_ERROR_CODE errorCode = 1946 NSERR_SELECTOR_CANNOT_CHANGE_ATTRIB_TYPE_ERROR_MESSAGE string = "Cannot change request type selector to response type" NSERR_GSLB_IGN_TRIGMON_ERROR_CODE errorCode = 1947 NSERR_GSLB_IGN_TRIGMON_ERROR_MESSAGE string = "Trigger monitor setting assumed ALWAYS for GSLB local site" NSERR_SELECTOR_NOT_MORE_THAN_2_IPV6_EXP_ERROR_CODE errorCode = 1948 NSERR_SELECTOR_NOT_MORE_THAN_2_IPV6_EXP_ERROR_MESSAGE string = "Cannot exceed more than two IPV6 expressions in a selector" NSERR_REPEATED_MONITORS_ERROR_CODE errorCode = 1949 NSERR_REPEATED_MONITORS_ERROR_MESSAGE string = "Monitors cannot be repeated" NSERR_ALL_MONITORS_DISABLED_ERROR_CODE errorCode = 1950 NSERR_ALL_MONITORS_DISABLED_ERROR_MESSAGE string = "All monitors in selected list are disabled." NSERR_GSLB_AAAARECORD_EXISTS_ERROR_CODE errorCode = 1951 NSERR_GSLB_AAAARECORD_EXISTS_ERROR_MESSAGE string = "GSLB record cannot be created - another AAAA record is configured with the same name" NSERR_GSLBVIP_HETEROGENEOUS_SERVICE_IPVERSION_ERROR_CODE errorCode = 1952 NSERR_GSLBVIP_HETEROGENEOUS_SERVICE_IPVERSION_ERROR_MESSAGE string = "Heterogeneous service/servicegroup binding is not allowed for GSLB vserver" NSERR_VIEWIP_IPV6_ERROR_CODE errorCode = 1953 NSERR_VIEWIP_IPV6_ERROR_MESSAGE string = "View IP setting is not allowed for IPv6 GSLB service." NSERR_BACKUPIP_IPV6_ERROR_CODE errorCode = 1954 NSERR_BACKUPIP_IPV6_ERROR_MESSAGE string = "IPv4 backup IP setting is not allowed for IPv6 GSLB vserver." NSERR_BACKUP_VIP_MISMATCH_ERROR_CODE errorCode = 1955 NSERR_BACKUP_VIP_MISMATCH_ERROR_MESSAGE string = "Both primary and secondary vservers should be of same DNSRecordType" NSERR_GSLB_DOMAIN_CONVERSION_ERROR_CODE errorCode = 1956 NSERR_GSLB_DOMAIN_CONVERSION_ERROR_MESSAGE string = "Cannot associate gslb domain to the service." NSERR_GSLB_IPV4_BACKUPIP_ERROR_CODE errorCode = 1957 NSERR_GSLB_IPV4_BACKUPIP_ERROR_MESSAGE string = "IPv6 service binding is not allowed along with IPv4 backup IP." NSERR_CANNOT_ADD_SELECTOR_ERROR_CODE errorCode = 1958 NSERR_CANNOT_ADD_SELECTOR_ERROR_MESSAGE string = "Cannot set a new selector when the identifier with no selector is bound to a policy." NSERR_SEL_CONFLICTING_ATTRIBUTES_ERROR_CODE errorCode = 1959 NSERR_SEL_CONFLICTING_ATTRIBUTES_ERROR_MESSAGE string = "Conflicting attributes in the new and current selector sets." NSERR_GSLBVIP_CNAME_BACKUPIP_ERROR_CODE errorCode = 1960 NSERR_GSLBVIP_CNAME_BACKUPIP_ERROR_MESSAGE string = "GSLB vserver having cname services cannot have backup IP" NSERR_GSLB_HETEROGENEOUS_SITEIP_ERROR_CODE errorCode = 1961 NSERR_GSLB_HETEROGENEOUS_SITEIP_ERROR_MESSAGE string = "Heterogeneous IPv6 and IPv4 GSLB site IPs not allowed." NSERR_DNS_MAX_AAAA_REC_ERROR_CODE errorCode = 1962 NSERR_DNS_MAX_AAAA_REC_ERROR_MESSAGE string = "Cannot exceed more than 5 IPv6 addresses." NSERR_DNS_MAX_A_REC_ERROR_CODE errorCode = 1963 NSERR_DNS_MAX_A_REC_ERROR_MESSAGE string = "Cannot exceed more than 25 IP addresses." NSERR_GSLB_RECTYPE_SERVICE_ERROR_CODE errorCode = 1965 NSERR_GSLB_RECTYPE_SERVICE_ERROR_MESSAGE string = "Cannot set the record type while services/servicegroups are bound to the GSLB vserver." NSERR_GSLB_RECTYPE_DOMAIN_ERROR_CODE errorCode = 1966 NSERR_GSLB_RECTYPE_DOMAIN_ERROR_MESSAGE string = "Cannot set the record type while domains bound to the GSLB vserver." NSERR_GSLB_RECTYPE_BACKUP_VIP_ERROR_CODE errorCode = 1967 NSERR_GSLB_RECTYPE_BACKUP_VIP_ERROR_MESSAGE string = "Cannot set the record type while GSLB vserver has backup vserver." NSERR_GSLB_BKPVIP_RECTYPE_ERROR_CODE errorCode = 1968 NSERR_GSLB_BKPVIP_RECTYPE_ERROR_MESSAGE string = "Cannot set the record type while GSLB vserver is a backup vserver." NSERR_GSLBVIP_NAPTR_UNSUPPORTED_SVCTYPE_ERROR_CODE errorCode = 1969 NSERR_GSLBVIP_NAPTR_UNSUPPORTED_SVCTYPE_ERROR_MESSAGE string = "GSLB vserver of NAPTR DNS record type can have only ANY as service type." NSERR_BACKUPIP_IPV4_ERROR_CODE errorCode = 1970 NSERR_BACKUPIP_IPV4_ERROR_MESSAGE string = "IPv6 backup IP setting is not allowed for IPv4 GSLB vserver." NSERR_GSLB_IPV6_BACKUPIP_ERROR_CODE errorCode = 1971 NSERR_GSLB_IPV6_BACKUPIP_ERROR_MESSAGE string = "IPv4 service binding is not allowed along with IPv6 backup IP." NSERR_GSLB_DB_REQ_TOO_BIG_ERROR_CODE errorCode = 1972 NSERR_GSLB_DB_REQ_TOO_BIG_ERROR_MESSAGE string = "Static proximity Database request is too big." NSERR_GSLB_DB_QUEUE_MAXED_ERROR_CODE errorCode = 1973 NSERR_GSLB_DB_QUEUE_MAXED_ERROR_MESSAGE string = "Static proximity Database queue is full." NSERR_GSLB_DB_SERVER_ERROR_CODE errorCode = 1974 NSERR_GSLB_DB_SERVER_ERROR_MESSAGE string = "Static proximity database server is not running." NSERR_GSLB_DB_TIMEOUT_ERROR_CODE errorCode = 1975 NSERR_GSLB_DB_TIMEOUT_ERROR_MESSAGE string = "Static proximity database server is not responding." NSERR_GSLB_DB_CLOSED_ERROR_CODE errorCode = 1976 NSERR_GSLB_DB_CLOSED_ERROR_MESSAGE string = "Connection to static proximity database server is closed." NSERR_GSLB_COORDINATES_ERROR_CODE errorCode = 1977 NSERR_GSLB_COORDINATES_ERROR_MESSAGE string = "Both longitude and latitude should be specified or not." NSERR_INVALID_IPV6_PREFIXLEN_ERROR_CODE errorCode = 1978 NSERR_INVALID_IPV6_PREFIXLEN_ERROR_MESSAGE string = "Invalid IPv6 prefix length." NSERR_GSLBDOMAIN_CANME_RECORD_EXISTS_ERROR_CODE errorCode = 1979 NSERR_GSLBDOMAIN_CANME_RECORD_EXISTS_ERROR_MESSAGE string = "Cname record can't be created. Another record exists for the configured domain." NSERR_GSLBDOMAIN_AAAA_CNAME_EXISTS_ERROR_CODE errorCode = 1980 NSERR_GSLBDOMAIN_AAAA_CNAME_EXISTS_ERROR_MESSAGE string = "Cname record exists for the configured domain." NSERR_GSLB_NON_PARENT_REMOTESITE_ERROR_CODE errorCode = 1981 NSERR_GSLB_NON_PARENT_REMOTESITE_ERROR_MESSAGE string = "Cannot have a gslb remote site, other than the parent site, configured on an LB node" NSERR_ZONE_EXISTS_ERROR_CODE errorCode = 1982 NSERR_ZONE_EXISTS_ERROR_MESSAGE string = "Zone already configured." NSERR_INVAL_KEYFLAGS_ERROR_CODE errorCode = 1983 NSERR_INVAL_KEYFLAGS_ERROR_MESSAGE string = "Invalid flags value in DNSKEY" NSERR_DNSKEY_NONEXISTS_ERROR_CODE errorCode = 1984 NSERR_DNSKEY_NONEXISTS_ERROR_MESSAGE string = "Zone has no DNSKEY's" NSERR_NORECS_IN_ZONE_ERROR_CODE errorCode = 1985 NSERR_NORECS_IN_ZONE_ERROR_MESSAGE string = "No records in zone" NSERR_SIGNFAILED_ERROR_CODE errorCode = 1986 NSERR_SIGNFAILED_ERROR_MESSAGE string = "RSA Sign operation returned error" NSERR_DIGESTINIT_FAILED_ERROR_CODE errorCode = 1987 NSERR_DIGESTINIT_FAILED_ERROR_MESSAGE string = "Digest init before RSA Sign operation returned error" NSERR_DIGESTUPDATE_FAILED_ERROR_CODE errorCode = 1988 NSERR_DIGESTUPDATE_FAILED_ERROR_MESSAGE string = "Digest update before RSA Sign operation returned error" NSERR_KEYEXISTS_ERROR_CODE errorCode = 1989 NSERR_KEYEXISTS_ERROR_MESSAGE string = "The DNSKEY is already added for this zone" NSERR_NOPASVKEYS_ERROR_CODE errorCode = 1990 NSERR_NOPASVKEYS_ERROR_MESSAGE string = "No Passive DNSKEY's in zone" NSERR_DNS_MAXKEYSIZE_ERROR_CODE errorCode = 1991 NSERR_DNS_MAXKEYSIZE_ERROR_MESSAGE string = "Maximum allowed public key size is 1024 and private key size is 4096" NSERR_NODATA_TO_SIGN_ERROR_CODE errorCode = 1992 NSERR_NODATA_TO_SIGN_ERROR_MESSAGE string = "No data to sign the record" NSERR_CNAME_SITE_NOTEXISTS_ERROR_CODE errorCode = 1993 NSERR_CNAME_SITE_NOTEXISTS_ERROR_MESSAGE string = "Site name must be specified for cname based GSLB service." NSERR_DNS_NOSOA_NONS_ERROR_CODE errorCode = 1994 NSERR_DNS_NOSOA_NONS_ERROR_MESSAGE string = "No SOA or NS records for the zone" NSERR_DNS_PROXY_ZONE_ERROR_CODE errorCode = 1995 NSERR_DNS_PROXY_ZONE_ERROR_MESSAGE string = "Cannot sign/unsign a proxy zone" NSERR_NOACTVKEYS_ERROR_CODE errorCode = 1996 NSERR_NOACTVKEYS_ERROR_MESSAGE string = "No active DNSKEY's in zone" NSERR_NOTIFYPERIOD_ERROR_CODE errorCode = 1997 NSERR_NOTIFYPERIOD_ERROR_MESSAGE string = "Notification period must be less than the expiry period" NSERR_LOAD_PUBKEY_ERROR_CODE errorCode = 1998 NSERR_LOAD_PUBKEY_ERROR_MESSAGE string = "Public key loading failed" NSERR_DNSKEYGEN_UNSUPPORTED_ALGO_ERROR_CODE errorCode = 1999 NSERR_DNSKEYGEN_UNSUPPORTED_ALGO_ERROR_MESSAGE string = "Unsupported algorithm" NSERR_DNSKEYGEN_ERR_PUBFILE_OPEN_ERROR_CODE errorCode = 2000 NSERR_DNSKEYGEN_ERR_PUBFILE_OPEN_ERROR_MESSAGE string = "Error opening public key file" NSERR_DNSKEYGEN_ERR_PRIVFILE_OPEN_ERROR_CODE errorCode = 2001 NSERR_DNSKEYGEN_ERR_PRIVFILE_OPEN_ERROR_MESSAGE string = "Error opening private key file" NSERR_DNSKEYGEN_ERR_DSFILE_OPEN_ERROR_CODE errorCode = 2002 NSERR_DNSKEYGEN_ERR_DSFILE_OPEN_ERROR_MESSAGE string = "Error opening delegation signer (DS) file" NSERR_GSLB_OPT_NOTSUPPORTED_ERROR_CODE errorCode = 2003 NSERR_GSLB_OPT_NOTSUPPORTED_ERROR_MESSAGE string = "gslb option is not supported, GSLB site is mandatory for GSLB services" NSERR_GSLB_GFS_NOT_SUPPORTED_ERROR_CODE errorCode = 2004 NSERR_GSLB_GFS_NOT_SUPPORTED_ERROR_MESSAGE string = "Graceful shutdown is not supported for GSLB services." NSERR_NSMAP_IMPORTFILE_ERROR_CODE errorCode = 2005 NSERR_NSMAP_IMPORTFILE_ERROR_MESSAGE string = "Error reading the imported file. See /var/log/ns.log file for more details." NSERR_DNS_CNAMELOOP_ERROR_CODE errorCode = 2006 NSERR_DNS_CNAMELOOP_ERROR_MESSAGE string = "Addition of this CNAME record leads to a CNAME loop" NSERR_NEWSVC_NOT_4GSLB_ERROR_CODE errorCode = 2007 NSERR_NEWSVC_NOT_4GSLB_ERROR_MESSAGE string = "startup settings not applicable to GSLB vservers" NSERR_NON_CLUSTER_SYSTEM_ERROR_CODE errorCode = 2008 NSERR_NON_CLUSTER_SYSTEM_ERROR_MESSAGE string = "The option is only supported for clustering systems." NSERR_PM_MON_NOT_ENABLED_ERROR_CODE errorCode = 2009 NSERR_PM_MON_NOT_ENABLED_ERROR_MESSAGE string = "Path monitoring must be enabled to enable this option." NSERR_GSLB_BACKUP_PERS_DEPRICATED_ERROR_CODE errorCode = 2010 NSERR_GSLB_BACKUP_PERS_DEPRICATED_ERROR_MESSAGE string = "GSLB Backup Persistence is deprecated. Please use Spillover Persistence instead." NSERR_DNS_SIGNFAIL_ERROR_CODE errorCode = 2011 NSERR_DNS_SIGNFAIL_ERROR_MESSAGE string = "DNSSEC Sign operation failed" NSERR_DNS_NEED_PROXY_ERROR_CODE errorCode = 2012 NSERR_DNS_NEED_PROXY_ERROR_MESSAGE string = "Zone needs to be in proxy mode" NSERR_DNSSEC_OFFLOAD_NOSUPPORT_ERROR_CODE errorCode = 2013 NSERR_DNSSEC_OFFLOAD_NOSUPPORT_ERROR_MESSAGE string = "DNNSEC Offload is not supported in this platform." NSERR_DNS64_ACT_INVAL_ERROR_CODE errorCode = 2014 NSERR_DNS64_ACT_INVAL_ERROR_MESSAGE string = "Invalid DNS64 action." NSERR_DNS64_NOT_SUPPORTED_VS_ERROR_CODE errorCode = 2015 NSERR_DNS64_NOT_SUPPORTED_VS_ERROR_MESSAGE string = "Specified policy can be bound only to DNS/DNS_TCP vserver." NSERR_DNS64_INVAL_PREFIX_ERROR_CODE errorCode = 2016 NSERR_DNS64_INVAL_PREFIX_ERROR_MESSAGE string = "Specified Prefix is either not allowed or Prefix length is not in [96, 64, 56, 48, 40, 32]." NSERR_GSLB_DB_REPEAT_REQUEST_ERROR_CODE errorCode = 2017 NSERR_GSLB_DB_REPEAT_REQUEST_ERROR_MESSAGE string = "Location database request need to be repeated" NSERR_GSLBSITE_CONN_NOTSUPPORTED_ERROR_CODE errorCode = 2018 NSERR_GSLBSITE_CONN_NOTSUPPORTED_ERROR_MESSAGE string = "This may cause GSLB site MEP connection issues in some earlier releases." NSERR_DNS64_TIMEOUT_ROUNDOFF_ERROR_CODE errorCode = 2019 NSERR_DNS64_TIMEOUT_ROUNDOFF_ERROR_MESSAGE string = "Timeout threshold is rounded off to nearest multiple of 10 less then the given value." NSERR_GSLB_SITE_PREFIX_CONFLICT_ERROR_CODE errorCode = 2044 NSERR_GSLB_SITE_PREFIX_CONFLICT_ERROR_MESSAGE string = "Site prefix conflicts with another service bound to the gslb vip" NSERR_DNSKEY_MISMATCH_ERROR_CODE errorCode = 2024 NSERR_DNSKEY_MISMATCH_ERROR_MESSAGE string = "The Key specified is not valid for this zone" NSERR_INVALID_REMOTE_CLIP_ERROR_CODE errorCode = 2025 NSERR_INVALID_REMOTE_CLIP_ERROR_MESSAGE string = "Invalid remote GSLB site CLIP. CLIP belong to the local gslb site" NSERR_IPV6_CLIP_NOTSUPPORTED_ERROR_CODE errorCode = 2026 NSERR_IPV6_CLIP_NOTSUPPORTED_ERROR_MESSAGE string = "IPV6 CLIP is not supported" NSERR_NON_DEFAULT_DBFILE_LOC_ERROR_CODE errorCode = 2027 NSERR_NON_DEFAULT_DBFILE_LOC_ERROR_MESSAGE string = "" /* 147-byte string literal not displayed */ NSERR_LOC64_FROM_TO_TYPE_ERROR_CODE errorCode = 2028 NSERR_LOC64_FROM_TO_TYPE_ERROR_MESSAGE string = "IP From and IP To in location specification are of different IP type." NSERR_DNS_NOSOA_NONS_ZONE_NO_PROXY_MODE_ERROR_CODE errorCode = 2029 NSERR_DNS_NOSOA_NONS_ZONE_NO_PROXY_MODE_ERROR_MESSAGE string = "Cannot delete SOA or NS records for a zone that is not deployed in proxy mode." NSERR_DNS_ACTION_DROP_DEPRECATED_ERROR_CODE errorCode = 2031 NSERR_DNS_ACTION_DROP_DEPRECATED_ERROR_MESSAGE string = "Drop is deprecated. Please use Drop action type under Responder feature." NSERR_DNS_ACTION_REWRITE_RESPONSE_DEPRECATED_ERROR_CODE errorCode = 2039 NSERR_DNS_ACTION_REWRITE_RESPONSE_DEPRECATED_ERROR_MESSAGE string = "Rewrite Response is deprecated. Please use replace_dns_answer_section action type under Rewrite feature." NSERR_IDENTIFIER_INVAL_THRESHOLD_ERROR_CODE errorCode = 2040 NSERR_IDENTIFIER_INVAL_THRESHOLD_ERROR_MESSAGE string = "Stream Identifier min and max threshold cannot both be zero and min threshold cannot be greater than max threshold" NSERR_IDENTIFIER_INVAL_SORT_ERROR_CODE errorCode = 2041 NSERR_IDENTIFIER_INVAL_SORT_ERROR_MESSAGE string = "Stream Identifier sort option is invalid" NSERR_NO_SUCH_DNSPROF_ERROR_CODE errorCode = 2042 NSERR_NO_SUCH_DNSPROF_ERROR_MESSAGE string = "DNS profile does not exist" NSERR_DNS_PROFILE_SVC_TYPE_ERROR_CODE errorCode = 2043 NSERR_DNS_PROFILE_SVC_TYPE_ERROR_MESSAGE string = "DNS profile cannot be set to this service type" NSERR_CSGSLB_POLICY_SET_NOTALLOWED_ERROR_CODE errorCode = 2046 NSERR_CSGSLB_POLICY_SET_NOTALLOWED_ERROR_MESSAGE string = "Policy bound to CS GSLB vserver must have a gslb targetvserver" NSERR_CS_POLICY_SET_NOTALLOWED_ERROR_CODE errorCode = 2045 NSERR_CS_POLICY_SET_NOTALLOWED_ERROR_MESSAGE string = "Policy bound to non CS GSLB vserver must not have a gslb targetvserver" NSERR_GSLB_ECS_DISABLED_VALIDATION_ENABLED_ERROR_CODE errorCode = 2987 NSERR_GSLB_ECS_DISABLED_VALIDATION_ENABLED_ERROR_MESSAGE string = "ECS is disabled: Enabling only ECS address validation will not have any effect if ECS is not enabled." NSERR_ECS_INVALID_ADDR_LEN_ERROR_CODE errorCode = 2989 NSERR_ECS_INVALID_ADDR_LEN_ERROR_MESSAGE string = "ECS address uses more octets than required or the address has non-zero bits set beyond SOURCE PREFIX-LENGTH" NSERR_GSLB_ECS_MIR_BOTH_SET_ERROR_CODE errorCode = 765 NSERR_GSLB_ECS_MIR_BOTH_SET_ERROR_MESSAGE string = "ECS option is mutually exclusive with MIR" NSERR_GSLB_ECS_IPV6_DISABLED_ERROR_CODE errorCode = 766 NSERR_GSLB_ECS_IPV6_DISABLED_ERROR_MESSAGE string = "IPv6PT is disabled, DNS queries with an IPv6 ECS address will be dropped" NSERR_GSLB_ECS_LBMETHOD_NOT_SP_ERROR_CODE errorCode = 767 NSERR_GSLB_ECS_LBMETHOD_NOT_SP_ERROR_MESSAGE string = "Enabling ECS without setting LB method to Static Proximity will not result in optimal responses for ECS-enabled queries" NSERR_REM_FAIL_NOMEM_ERROR_CODE errorCode = 1499 NSERR_REM_FAIL_NOMEM_ERROR_MESSAGE string = "Removal is unsuccessful because of an internal error" NSERR_GSLB_MEP_KEEP_ALIVE_LOW_TIMEOUT_ERROR_CODE errorCode = 1802 NSERR_GSLB_MEP_KEEP_ALIVE_LOW_TIMEOUT_ERROR_MESSAGE string = "Provided MEPKeepAliveTimeout value is less than 4 seconds that might lead to frequent MEP flaps." NSERR_GSLB_MEP_KEEP_ALIVE_TIMEOUT_ERROR_CODE errorCode = 1803 NSERR_GSLB_MEP_KEEP_ALIVE_TIMEOUT_ERROR_MESSAGE string = "Same value of MEPKeepAliveTimeout should be configured in all GSLB nodes including Child GSLB nodes for optimum behaviour." NSERR_GSLB_SYNC_INT_PART_WARN_ERROR_CODE errorCode = 1804 NSERR_GSLB_SYNC_INT_PART_WARN_ERROR_MESSAGE string = "Changing GSLB sync interval from non-default partition will have no effect." NSERR_GSLB_SYNC_INT_NONPART_WARN_ERROR_CODE errorCode = 1805 NSERR_GSLB_SYNC_INT_NONPART_WARN_ERROR_MESSAGE string = "For changing the GSLB sync interval in a partition setup, this command needs to be fired manually on all GSLB nodes." NSERR_INVAL_CAA_TAG_ERROR_CODE errorCode = 2320 NSERR_INVAL_CAA_TAG_ERROR_MESSAGE string = "Invalid CAA record tag syntax." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#gslb2-errors NSERR_DNS_VIEW_NOENT_ERROR_CODE errorCode = 3008 NSERR_DNS_VIEW_NOENT_ERROR_MESSAGE string = "DNS View does not exist" NSERR_GSLB_LOC_NOMEM_ERROR_CODE errorCode = 3009 NSERR_GSLB_LOC_NOMEM_ERROR_MESSAGE string = "Memory allocation for location failed." NSERR_DNS_PRIO_INVAL_VALUE_ERROR_CODE errorCode = 3010 NSERR_DNS_PRIO_INVAL_VALUE_ERROR_MESSAGE string = "Cannot bind DNS Policy with priority > 65535" NSERR_DNSPROF_EXISTS_ERROR_CODE errorCode = 3011 NSERR_DNSPROF_EXISTS_ERROR_MESSAGE string = "DNS Profile already exists." NSERR_DNSPROF_DEF_ERROR_CODE errorCode = 3012 NSERR_DNSPROF_DEF_ERROR_MESSAGE string = "Cannot remove default DNS Profile." NSERR_GSLB_LOC_EXISTS_ERROR_CODE errorCode = 3013 NSERR_GSLB_LOC_EXISTS_ERROR_MESSAGE string = "Custom Location Overlaps with an already existing location." NSERR_GSLB_LOC_NOENT_ERROR_CODE errorCode = 3014 NSERR_GSLB_LOC_NOENT_ERROR_MESSAGE string = "Custom Location does not exist." NSERR_GSLB_NOMEM_ERROR_CODE errorCode = 3015 NSERR_GSLB_NOMEM_ERROR_MESSAGE string = "Not enough memory for GSLB operation." NSERR_DNS_INT_POL_ERROR_CODE errorCode = 3016 NSERR_DNS_INT_POL_ERROR_MESSAGE string = "Internal Policy is not allowed to bind if builtin parameter is not set with any value." NSERR_GSLB_MEP_ERROR_CODE errorCode = 3017 NSERR_GSLB_MEP_ERROR_MESSAGE string = "Cannot enable MEP (Network Metric / Persistency Exchange) on a Child Site." NSERR_IP_ROUTE_EXISTS_ERROR_CODE errorCode = 3018 NSERR_IP_ROUTE_EXISTS_ERROR_MESSAGE string = "Host route enabled on this IP, cannot be used for GSLB Site IP." NSERR_DNS_VIEW_EXISTS_ERROR_CODE errorCode = 3019 NSERR_DNS_VIEW_EXISTS_ERROR_MESSAGE string = "DNS View already exists" NSERR_NAME_VSVR_PERM_ERROR_CODE errorCode = 3020 NSERR_NAME_VSVR_PERM_ERROR_MESSAGE string = "Operation not permitted on a Vserver based Nameserver." NSERR_DNS_POL_INTERNAL_ERROR_CODE errorCode = 3021 NSERR_DNS_POL_INTERNAL_ERROR_MESSAGE string = "Cannot remove or unbind internal DNS policy" NSERR_DNS_NOMEM_ERROR_CODE errorCode = 3022 NSERR_DNS_NOMEM_ERROR_MESSAGE string = "Not enough memory for DNS Operation" NSERR_GSLB_NAPTR_SERVICE_SET_ERROR_CODE errorCode = 3023 NSERR_GSLB_NAPTR_SERVICE_SET_ERROR_MESSAGE string = "Setting of these parameters on naptr gslb service is not allowed" NSERR_GSLB_NAPTR_REPLACEMENT_UNSET_ERROR_CODE errorCode = 3025 NSERR_GSLB_NAPTR_REPLACEMENT_UNSET_ERROR_MESSAGE string = "Unsetting of naptr replacement is not allowed if the gslb service is bound to gslb vserver of NAPTR dnsrectype." NSERR_GSLBVIP_NAPTR_UNSUPPORTED_LBMETHODS_ERROR_CODE errorCode = 3026 NSERR_GSLBVIP_NAPTR_UNSUPPORTED_LBMETHODS_ERROR_MESSAGE string = "GSLB vserver having NAPTR services can have only CUSTOM LOAD as lb method." NSERR_GSLB_NAPTR_VSERVER_SET_ERROR_CODE errorCode = 3027 NSERR_GSLB_NAPTR_VSERVER_SET_ERROR_MESSAGE string = "Setting of these parameters on natpr gslb vserver is not allowed." NSERR_GSLB_NAPTR_DOMAIN_SIZE_ERROR_CODE errorCode = 3028 NSERR_GSLB_NAPTR_DOMAIN_SIZE_ERROR_MESSAGE string = "NAPTR domain cannot be created - name length exceeds maximum" NSERR_GSLB_NAPTR_DOMAIN_SYNTAX_ERROR_CODE errorCode = 3029 NSERR_GSLB_NAPTR_DOMAIN_SYNTAX_ERROR_MESSAGE string = "NAPTR domain cannot be created - name is invalid" NSERR_GSLB_NAPTR_REPLACEMENT_SUFFIX_SYNTAX_ERROR_CODE errorCode = 3030 NSERR_GSLB_NAPTR_REPLACEMENT_SUFFIX_SYNTAX_ERROR_MESSAGE string = "Invalid NATPR Replacement Suffix" NSERR_GSLB_NON_NAPTR_SERVICE_ERROR_CODE errorCode = 3031 NSERR_GSLB_NON_NAPTR_SERVICE_ERROR_MESSAGE string = "Operation permitted only on NAPTR GSLB service" NSERR_GSLB_USE_FORCESYNC_ERROR_CODE errorCode = 3032 NSERR_GSLB_USE_FORCESYNC_ERROR_MESSAGE string = "" /* 178-byte string literal not displayed */ NSERR_INVALID_WILDCARD_CONFIG_ERROR_CODE errorCode = 3033 NSERR_INVALID_WILDCARD_CONFIG_ERROR_MESSAGE string = "Invalid Wildcard Configuration" NSERR_GSLB_SYNC_SAVECMD_WARN_ERROR_CODE errorCode = 3034 NSERR_GSLB_SYNC_SAVECMD_WARN_ERROR_MESSAGE string = "" /* 189-byte string literal not displayed */ // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#ica-client-version-errors NSERR_ICA_CLIENT_VERSION_UNKNOWN_CLIENT_TYPE_ERROR_CODE errorCode = 3536 NSERR_ICA_CLIENT_VERSION_UNKNOWN_CLIENT_TYPE_ERROR_MESSAGE string = "Unknown ICA client type." NSERR_ICA_CLIENT_VERSION_DEFAULT_WHITELISTING_ERROR_CODE errorCode = 3537 NSERR_ICA_CLIENT_VERSION_DEFAULT_WHITELISTING_ERROR_MESSAGE string = "Failed to initialize the ICA whitelist: Switched to default static ICA whitelisting" NSERR_ICA_CLIENT_VERSION_NOT_FOUND_IN_EXCEPTION_LIST_ERROR_CODE errorCode = 3538 NSERR_ICA_CLIENT_VERSION_NOT_FOUND_IN_EXCEPTION_LIST_ERROR_MESSAGE string = "The ICA client version you are requesting to remove from the exception list is not present in the exception list." NSERR_ICA_CLIENT_VERSION_INCORRECT_BASE_VERSION_FORMAT_ERROR_CODE errorCode = 3539 NSERR_ICA_CLIENT_VERSION_INCORRECT_BASE_VERSION_FORMAT_ERROR_MESSAGE string = "Invalid format for the ICA client base version entered." NSERR_ICA_CLIENT_VERSION_INCORRECT_EXCEPTION_LIST_FORMAT_ERROR_CODE errorCode = 3540 NSERR_ICA_CLIENT_VERSION_INCORRECT_EXCEPTION_LIST_FORMAT_ERROR_MESSAGE string = "Invalid format for the ICA exception list entered." NSERR_ICA_CLIENT_VERSION_DUPLICATES_RECEIVED_TO_REMOVE_ERROR_CODE errorCode = 3541 NSERR_ICA_CLIENT_VERSION_DUPLICATES_RECEIVED_TO_REMOVE_ERROR_MESSAGE string = "Two or more of the same client versions entered in the ICA exception list." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#ica-latency-profile-errors NSERR_ICA_LATENCY_PROFILE_ACTIVE_CONNECTIONS_ERROR_CODE errorCode = 3542 NSERR_ICA_LATENCY_PROFILE_ACTIVE_CONNECTIONS_ERROR_MESSAGE string = "Cannot remove the Latency profile as there are active ICA connections associated with this profile." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#inat-errors NSERR_PUBLICIP_ERROR_CODE errorCode = 3888 NSERR_PUBLICIP_ERROR_MESSAGE string = "Invalid Public IP address" NSERR_PRIVATEIP_ERROR_CODE errorCode = 3889 NSERR_PRIVATEIP_ERROR_MESSAGE string = "Invalid Private IP address" NSERR_PROXYIP_ERROR_CODE errorCode = 3890 NSERR_PROXYIP_ERROR_MESSAGE string = "Invalid Proxy IP address" NSERR_WILDCARDTCPVIP_ERROR_CODE errorCode = 3891 NSERR_WILDCARDTCPVIP_ERROR_MESSAGE string = "TCPPROXY enabled INAT and wildcard TCP Vserver not allowed" NSERR_WILDCARDANYVIP_ERROR_CODE errorCode = 3892 NSERR_WILDCARDANYVIP_ERROR_MESSAGE string = "INAT rule and wildcard ANY vserver, not allowed" NSERR_FTPVIPPRESENT_ERROR_CODE errorCode = 3893 NSERR_FTPVIPPRESENT_ERROR_MESSAGE string = "FTP enabled INAT and FTP vserver not allowed" NSERR_V46_USIP_ERROR_CODE errorCode = 3894 NSERR_V46_USIP_ERROR_MESSAGE string = "USIP is not allowed in mixed topology" NSERR_INCOMPATIBLE_IP_ERROR_CODE errorCode = 3895 NSERR_INCOMPATIBLE_IP_ERROR_MESSAGE string = "Private and Proxy IP should share the same IP Type" NSERR_ONLY_NAT46_SUPPORTED_ERROR_CODE errorCode = 3896 NSERR_ONLY_NAT46_SUPPORTED_ERROR_MESSAGE string = "Stateless mode only supported for IPv4->IPV6" NSERR_NAT46_PROXY_IP_ERROR_CODE errorCode = 3897 NSERR_NAT46_PROXY_IP_ERROR_MESSAGE string = "Proxy IP is not supported in stateless mode" NSERR_NAT46_INVALID_PREFIXLEN_ERROR_CODE errorCode = 3898 NSERR_NAT46_INVALID_PREFIXLEN_ERROR_MESSAGE string = "Prefix length should be 32/40/48/56/64/96" NSERR_NAT46_INVALID_SETTING_ERROR_CODE errorCode = 3899 NSERR_NAT46_INVALID_SETTING_ERROR_MESSAGE string = "Invalid configuration for nat46" NSERR_NAT46_PRIVATEIP_EXISTS_ERROR_CODE errorCode = 3900 NSERR_NAT46_PRIVATEIP_EXISTS_ERROR_MESSAGE string = "Private IP already configured in another nat46 rule" NSERR_TFTPVIPPRESENT_ERROR_CODE errorCode = 3901 NSERR_TFTPVIPPRESENT_ERROR_MESSAGE string = "TFTP enabled INAT and TFTP vserver not allowed" NSERR_SETUNSETINAT_NOTSUPPORTED_ERROR_CODE errorCode = 3902 NSERR_SETUNSETINAT_NOTSUPPORTED_ERROR_MESSAGE string = "Setting and Unsetting mode of INAT not supported" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#internal-nameserver-errors NSERR_NAME_SVR_EXISTS_ERROR_CODE errorCode = 2561 NSERR_NAME_SVR_EXISTS_ERROR_MESSAGE string = "Name server already exists." NSERR_NAME_SVR_IDNS_NEMPTY_ERROR_CODE errorCode = 2562 NSERR_NAME_SVR_IDNS_NEMPTY_ERROR_MESSAGE string = "Name servers already configured." NSERR_NAME_SVR_IVALPOLICY_ERROR_CODE errorCode = 2563 NSERR_NAME_SVR_IVALPOLICY_ERROR_MESSAGE string = "Invalid LB method for vserver-based name server." NSERR_NAME_SVR_IVALPROTO_ERROR_CODE errorCode = 2564 NSERR_NAME_SVR_IVALPROTO_ERROR_MESSAGE string = "Invalid service type for vserver-based name server." NSERR_NAME_SVR_ADD_NEXIST_VIP_ERROR_CODE errorCode = 2565 NSERR_NAME_SVR_ADD_NEXIST_VIP_ERROR_MESSAGE string = "vserver does not exist." NSERR_NAME_SVR_NEXIST_ERROR_CODE errorCode = 2566 NSERR_NAME_SVR_NEXIST_ERROR_MESSAGE string = "Name server does not exist." NSERR_NAME_SVR_IDNS_PERM_ERROR_CODE errorCode = 2567 NSERR_NAME_SVR_IDNS_PERM_ERROR_MESSAGE string = "Operation on internal entity not permitted" NSERR_NAME_SVR_IP_EXISTS_ERROR_CODE errorCode = 2568 NSERR_NAME_SVR_IP_EXISTS_ERROR_MESSAGE string = "Name server exists with this IP address" NSERR_NAME_SVR_TYPE_NEXIST_VIP_ERROR_CODE errorCode = 2569 NSERR_NAME_SVR_TYPE_NEXIST_VIP_ERROR_MESSAGE string = "vserver of given type does not exist." NSERR_NAME_SVR_INVAL_PROTOTYPE_ERROR_CODE errorCode = 2570 NSERR_NAME_SVR_INVAL_PROTOTYPE_ERROR_MESSAGE string = "Invalid protocol type for local nameserver." NSERR_NAME_SVR_DYN_VSRVR_EXISTS_ERROR_CODE errorCode = 2571 NSERR_NAME_SVR_DYN_VSRVR_EXISTS_ERROR_MESSAGE string = "Dynamic vserver of same type exists." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#intf-errors NSERR_1GSFPSPEEDLIMIT_ERROR_CODE errorCode = 3968 NSERR_1GSFPSPEEDLIMIT_ERROR_MESSAGE string = "1G SFP's are restricted to speed 1000 or AUTO only" NSERR_1GSFPDUPLEXLIMIT_ERROR_CODE errorCode = 3969 NSERR_1GSFPDUPLEXLIMIT_ERROR_MESSAGE string = "1G SFP's are restricted to duplex FULL or AUTO only" NSERR_1GSPEEDLIMIT_ERROR_CODE errorCode = 3970 NSERR_1GSPEEDLIMIT_ERROR_MESSAGE string = "1G port can not be configured as 10G speed" NSERR_1GDUPLEXLIMIT_ERROR_CODE errorCode = 3971 NSERR_1GDUPLEXLIMIT_ERROR_MESSAGE string = "1G port can not be configured as HALF duplex" NSERR_10GSPEEDLIMIT_ERROR_CODE errorCode = 3972 NSERR_10GSPEEDLIMIT_ERROR_MESSAGE string = "10G ports on this platform can only be configured as speed 1G, 10G or AUTO only" NSERR_10GDUPLEXLIMIT_ERROR_CODE errorCode = 3973 NSERR_10GDUPLEXLIMIT_ERROR_MESSAGE string = "10G ports on this platform can only be configured as duplex FULL or AUTO only" NSERR_10GAUTONEGLIMIT_ERROR_CODE errorCode = 3974 NSERR_10GAUTONEGLIMIT_ERROR_MESSAGE string = "10G ports on this platform do not support AUTONEG" NSERR_10GSPEEDONLY_ERROR_CODE errorCode = 3975 NSERR_10GSPEEDONLY_ERROR_MESSAGE string = "10G ports on this platform are restricted to speed 10000 or AUTO only" NSERR_FULLDUPLEXONLY_ERROR_CODE errorCode = 3976 NSERR_FULLDUPLEXONLY_ERROR_MESSAGE string = "These ports do not support HALF duplex mode" NSERR_AUTOINVALSPEED_ERROR_CODE errorCode = 3977 NSERR_AUTOINVALSPEED_ERROR_MESSAGE string = "Static CLAG does not support speed as AUTO" NSERR_CLAGSPEEDREQ_ERROR_CODE errorCode = 3978 NSERR_CLAGSPEEDREQ_ERROR_MESSAGE string = "Static CLAG explicitly requires speed to be configured other than AUTO" NSERR_THROUGHPUTLIMIT_ERROR_CODE errorCode = 3979 NSERR_THROUGHPUTLIMIT_ERROR_MESSAGE string = "" /* 133-byte string literal not displayed */ NSERR_BANDWIDTHLIMIT_ERROR_CODE errorCode = 3980 NSERR_BANDWIDTHLIMIT_ERROR_MESSAGE string = "" /* 132-byte string literal not displayed */ NSERR_10GDAC_SPEEDLIMIT_ERROR_CODE errorCode = 3981 NSERR_10GDAC_SPEEDLIMIT_ERROR_MESSAGE string = "DAC port speed must be configured as 10G or AUTO" NSERR_VIF_LACP_CAUTION_ERROR_CODE errorCode = 3982 NSERR_VIF_LACP_CAUTION_ERROR_MESSAGE string = "Ensure that the physical interface is not shared with any other VMs." NSERR_LA_SLAVE_LIMIT_ERROR_CODE errorCode = 3983 NSERR_LA_SLAVE_LIMIT_ERROR_MESSAGE string = "Trying to bind more interfaces than allowed limit" NSERR_SLAVE_MTU_MISMATCH_ERROR_CODE errorCode = 3987 NSERR_SLAVE_MTU_MISMATCH_ERROR_MESSAGE string = "Interface MTU should be same as Channel MTU." NSERR_BKPLANE_MTU_MISMATCH_ERROR_CODE errorCode = 3988 NSERR_BKPLANE_MTU_MISMATCH_ERROR_MESSAGE string = "Interface MTU should be default or same as Backplane MTU." NSERR_MTU_NOTALLOWED_ERROR_CODE errorCode = 3989 NSERR_MTU_NOTALLOWED_ERROR_MESSAGE string = "MTU change is not allowed on this interface." NSERR_BACKPLANE_MTU_LIMIT_ERROR_CODE errorCode = 3990 NSERR_BACKPLANE_MTU_LIMIT_ERROR_MESSAGE string = "Backplane Interface, Minimum user configured value for MTU is 1579." NSERR_INTERFACE_SLAVE_MTU_LIMIT_ERROR_CODE errorCode = 3991 NSERR_INTERFACE_SLAVE_MTU_LIMIT_ERROR_MESSAGE string = "Interface is a part of channel, MTU change is not allowed." NSERR_CHANNEL_RESTRICT_ERROR_CODE errorCode = 447 NSERR_CHANNEL_RESTRICT_ERROR_MESSAGE string = "LA channel configuration on VPX running on SDX should be done only from Service VM" NSERR_PTP_CLUS_L3_ERROR_CODE errorCode = 3992 NSERR_PTP_CLUS_L3_ERROR_MESSAGE string = "Cluster INC Mode Enabled, PTP state change is not allowed." NSERR_40GDUPLEXLIMIT_ERROR_CODE errorCode = 3993 NSERR_40GDUPLEXLIMIT_ERROR_MESSAGE string = "40G ports on this platform can only be configured as duplex FULL or AUTO only" NSERR_40GSPEEDONLY_ERROR_CODE errorCode = 3994 NSERR_40GSPEEDONLY_ERROR_MESSAGE string = "40G ports on this platform are restricted to speed 40000 or AUTO only" NSERR_LRSET_FC_NOT_ALLOWED_ERROR_CODE errorCode = 3996 NSERR_LRSET_FC_NOT_ALLOWED_ERROR_MESSAGE string = "Flow Controle settings not allowed for link redundant set interface" NSERR_LRSET_LACP_SET_NOT_ALLOWED_ERROR_CODE errorCode = 3997 NSERR_LRSET_LACP_SET_NOT_ALLOWED_ERROR_MESSAGE string = "Dynamic LA(LACP) settings are not allowed for link redundant set interface" NSERR_LRSET_LLDPSET_NOT_ALLOWED_ERROR_CODE errorCode = 3998 NSERR_LRSET_LLDPSET_NOT_ALLOWED_ERROR_MESSAGE string = "LLDP settings are not allowed for link redundant set interface" NSERR_LRSET_SPEED_NOT_ALLOWED_ERROR_CODE errorCode = 3999 NSERR_LRSET_SPEED_NOT_ALLOWED_ERROR_MESSAGE string = "speed setting not allowed for link redundant set interface" NSERR_LRSET_PRIORITY_NOT_ALLOWED_ERROR_CODE errorCode = 4026 NSERR_LRSET_PRIORITY_NOT_ALLOWED_ERROR_MESSAGE string = "lrset priority not allowed for link redundant set master interface" NSERR_LRSET_THROUGHPUT_NOT_ALLOWED_ERROR_CODE errorCode = 4027 NSERR_LRSET_THROUGHPUT_NOT_ALLOWED_ERROR_MESSAGE string = "throughput setting not allowed for link redundant set master interface" NSERR_LRSET_BW_SET_NOT_ALLOWED_ERROR_CODE errorCode = 4028 NSERR_LRSET_BW_SET_NOT_ALLOWED_ERROR_MESSAGE string = "Bandwidth settings are not allowed for link redundant set interface" NSERR_LRSET_LAG_TYPE_NOT_ALLOWED_ERROR_CODE errorCode = 4029 NSERR_LRSET_LAG_TYPE_NOT_ALLOWED_ERROR_MESSAGE string = "Lagtype setting not allowed for link redundant set interface" NSERR_LRSET_DUPLEX_NOT_ALLOWED_ERROR_CODE errorCode = 4030 NSERR_LRSET_DUPLEX_NOT_ALLOWED_ERROR_MESSAGE string = "Duplex setting not allowed for link redundant set interface" NSERR_LRSET_AUTO_NEG_NOT_ALLOWED_ERROR_CODE errorCode = 4031 NSERR_LRSET_AUTO_NEG_NOT_ALLOWED_ERROR_MESSAGE string = "Disabling autonegotiation not allowed for link redundant set interface" NSERR_JF_ESX_VERSION_SUPPORT_ERROR_CODE errorCode = 4070 NSERR_JF_ESX_VERSION_SUPPORT_ERROR_MESSAGE string = "Jumbo Frames are supported on ESX 5.5 version and onward" NSERR_TP_SETTINGS_NOT_ALLOWED_ERROR_CODE errorCode = 3385 NSERR_TP_SETTINGS_NOT_ALLOWED_ERROR_MESSAGE string = "Trunk Port settings on this interface is not supported" NSERR_LACP_SETTINGS_ON_TP_NOT_ALLOWED_ERROR_CODE errorCode = 3386 NSERR_LACP_SETTINGS_ON_TP_NOT_ALLOWED_ERROR_MESSAGE string = "LACP settings on Trunk Port is not allowed" NSERR_IP6_ADDRESS_SETTING_FAILED_ERROR_CODE errorCode = 3387 NSERR_IP6_ADDRESS_SETTING_FAILED_ERROR_MESSAGE string = "IPv6 Address can not be added because MTA table got exhausted" NSERR_50GSPEEDLIMIT_ERROR_CODE errorCode = 3388 NSERR_50GSPEEDLIMIT_ERROR_MESSAGE string = "50G ports on this platform can only be configured as speed 10G, 25G, 40G, 50G or AUTO" NSERR_100GSPEEDLIMIT_ERROR_CODE errorCode = 3389 NSERR_100GSPEEDLIMIT_ERROR_MESSAGE string = "100G ports on this platform can only be configured as speed 10G, 25G, 40G, 50G, 100G or AUTO" NSERR_RX_RINGSIZE_CHANGE_NOTALLOWED_ERROR_CODE errorCode = 2289 NSERR_RX_RINGSIZE_CHANGE_NOTALLOWED_ERROR_MESSAGE string = "Ringsize change is not allowed on this NIC type." NSERR_RX_RINGSIZE_INVALID_ERROR_CODE errorCode = 2290 NSERR_RX_RINGSIZE_INVALID_ERROR_MESSAGE string = "Receive ringsize is invalid." NSERR_RX_RINGTYPE_CHANGE_NOTALLOWED_ERROR_CODE errorCode = 2291 NSERR_RX_RINGTYPE_CHANGE_NOTALLOWED_ERROR_MESSAGE string = "Receive ringtype change is not allowed on this NIC type." NSERR_INTERFACE_LOOPBACK_ERROR_CODE errorCode = 2292 NSERR_INTERFACE_LOOPBACK_ERROR_MESSAGE string = "Operation not allowed on loopback interface." NSERR_INTERFACE_INTERNAL_ERROR_CODE errorCode = 2293 NSERR_INTERFACE_INTERNAL_ERROR_MESSAGE string = "Operation not allowed on internal interface." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#jazz-errors NSERR_BO_LAC_NOT_FOUND_ERROR_CODE errorCode = 3409 NSERR_BO_LAC_NOT_FOUND_ERROR_MESSAGE string = "" /* 178-byte string literal not displayed */ NSERR_JBOC_FAILED_ERROR_CODE errorCode = 3410 NSERR_JBOC_FAILED_ERROR_MESSAGE string = "License files cannot be saved. You must select a different directory or edit the permissions for this directory." NSERR_BO_SESSION_EXPIRED_ERROR_CODE errorCode = 3411 NSERR_BO_SESSION_EXPIRED_ERROR_MESSAGE string = "Your session has expired." NSERR_BO_LAC_FULLY_ALLOCATED_ERROR_CODE errorCode = 3412 NSERR_BO_LAC_FULLY_ALLOCATED_ERROR_MESSAGE string = "" /* 131-byte string literal not displayed */ NSERR_BO_WEBKEY_NOT_SUPPORTED_ERROR_CODE errorCode = 85 NSERR_BO_WEBKEY_NOT_SUPPORTED_ERROR_MESSAGE string = "This license cannot be allocated automatically. To allocate it manually, go to My Account on Citrix.com" NSERR_JBOC_CITRIX_RESPONSE_ERROR_CODE errorCode = 3414 NSERR_JBOC_CITRIX_RESPONSE_ERROR_MESSAGE string = "" /* 160-byte string literal not displayed */ NSERR_JBOC_CITRIX_CONNECTION_FAILED_ERROR_CODE errorCode = 3415 NSERR_JBOC_CITRIX_CONNECTION_FAILED_ERROR_MESSAGE string = "There is a network connection issue. Please try again later or go to My Account on Citrix.com" NSERR_BO_GENERIC_ERROR_CODE errorCode = 3416 NSERR_BO_GENERIC_ERROR_MESSAGE string = "Your request could not be completed due to an error. Please contact Citrix support" NSERR_BO_SN_NOT_FOUND_ERROR_CODE errorCode = 3417 NSERR_BO_SN_NOT_FOUND_ERROR_MESSAGE string = "" /* 172-byte string literal not displayed */ // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#lb-errors NSERR_SLESSLB_LBMETHOD_NOTSUPPORTED_ERROR_CODE errorCode = 1280 NSERR_SLESSLB_LBMETHOD_NOTSUPPORTED_ERROR_MESSAGE string = "Incompatible LB method for sessionless vserver" NSERR_SLESSLB_PERSIST_NOTSUPPORTED_ERROR_CODE errorCode = 1281 NSERR_SLESSLB_PERSIST_NOTSUPPORTED_ERROR_MESSAGE string = "Incompatible persistence method for sessionless vserver" NSERR_SLESSLB_TYPE_NOTSUPPORTED_ERROR_CODE errorCode = 1282 NSERR_SLESSLB_TYPE_NOTSUPPORTED_ERROR_MESSAGE string = "Sessionless vserver must be of type ANY, DNS or UDP" NSERR_SLESSLB_MODE_NOTSUPPORTED_ERROR_CODE errorCode = 1283 NSERR_SLESSLB_MODE_NOTSUPPORTED_ERROR_MESSAGE string = "Sessionless vserver must have MAC or IPTUNNEL mode set" NSERR_SLESSLB_SVC_USIPNOTSET_ERROR_CODE errorCode = 1284 NSERR_SLESSLB_SVC_USIPNOTSET_ERROR_MESSAGE string = "Service bound to a sessionless vserver must have UseSourceIP mode enabled" NSERR_WILDCARDVIP_LBMETHOD_INVAL_ERROR_CODE errorCode = 1286 NSERR_WILDCARDVIP_LBMETHOD_INVAL_ERROR_MESSAGE string = "Invalid LB method for a wildcard vserver" NSERR_WILDCARDVIP_PERSIST_INVAL_ERROR_CODE errorCode = 1287 NSERR_WILDCARDVIP_PERSIST_INVAL_ERROR_MESSAGE string = "Invalid persistence policy for a wildcard vserver" NSERR_LB_SO_THRESHOLD_ERROR_CODE errorCode = 1288 NSERR_LB_SO_THRESHOLD_ERROR_MESSAGE string = "Spill-over threshold should be a non-zero value" NSERR_CONNFAILOVER_USIP_ERROR_CODE errorCode = 1289 NSERR_CONNFAILOVER_USIP_ERROR_MESSAGE string = "Service must have Use Source IP option set in order to be bound to a connection failover enabled virtual server" NSERR_CONNFAILOVER_SERVICE_ERROR_CODE errorCode = 1290 NSERR_CONNFAILOVER_SERVICE_ERROR_MESSAGE string = "Connection failover can only be enabled on a virtual server of service type ANY" NSERR_LB_SO_DYNAMICCON_THRESHOLD_ERROR_CODE errorCode = 1291 NSERR_LB_SO_DYNAMICCON_THRESHOLD_ERROR_MESSAGE string = "Spill-over threshold cannot be set for dynamic connection spill-over method" NSERR_LB_SO_ADDRVIP_ERROR_CODE errorCode = 1292 NSERR_LB_SO_ADDRVIP_ERROR_MESSAGE string = "DYNAMICCONNECTION spill-over cannot be set on a non-LB vserver" NSERR_CONNFAILOVER_NOTFOR_SLESS_ERROR_CODE errorCode = 1293 NSERR_CONNFAILOVER_NOTFOR_SLESS_ERROR_MESSAGE string = "Connection Failover is not supported for sessionless lb vserver\n" NSERR_NEWSVC_PERCENT_CAPPED_ERROR_CODE errorCode = 1294 NSERR_NEWSVC_PERCENT_CAPPED_ERROR_MESSAGE string = "Percentage value of requests capped at 100" NSERR_SIP_NOCALLID_ERROR_CODE errorCode = 1296 NSERR_SIP_NOCALLID_ERROR_MESSAGE string = "Missing Call-ID header field" NSERR_SIP_NOVIA_ERROR_CODE errorCode = 1297 NSERR_SIP_NOVIA_ERROR_MESSAGE string = "Missing Via header field" NSERR_SIP_NOCSEQ_ERROR_CODE errorCode = 1298 NSERR_SIP_NOCSEQ_ERROR_MESSAGE string = "Missing CSeq header field" NSERR_SIP_NOTO_ERROR_CODE errorCode = 1299 NSERR_SIP_NOTO_ERROR_MESSAGE string = "Missing To header field" NSERR_SIP_NOFROM_ERROR_CODE errorCode = 1300 NSERR_SIP_NOFROM_ERROR_MESSAGE string = "Missing From header field" NSERR_SIP_NOMAX_FORWARDS_ERROR_CODE errorCode = 1301 NSERR_SIP_NOMAX_FORWARDS_ERROR_MESSAGE string = "Missing Max-Forwards header field" NSERR_SIP_SERVICE_UNAVAILABLE_ERROR_CODE errorCode = 1302 NSERR_SIP_SERVICE_UNAVAILABLE_ERROR_MESSAGE string = "Service unavailable" NSERR_SVC_NOT_BOUND_ERROR_CODE errorCode = 1303 NSERR_SVC_NOT_BOUND_ERROR_MESSAGE string = "Service not bound to Vserver" NSERR_SVCTYPE_MISMATCH_ERROR_CODE errorCode = 1304 NSERR_SVCTYPE_MISMATCH_ERROR_MESSAGE string = "Service type mismatch between the vserver and service" NSERR_CH_CON_NOT_ALLOWED_ERROR_CODE errorCode = 1305 NSERR_CH_CON_NOT_ALLOWED_ERROR_MESSAGE string = "CONNECTION header cannot be set" NSERR_LBPROFILE_DBS_ERROR_CODE errorCode = 3572 NSERR_LBPROFILE_DBS_ERROR_MESSAGE string = "DBSLB setting of LB profile cannot be changed with vservers associated with it" NSERR_LBPROFILE_EXIST_ERROR_CODE errorCode = 3573 NSERR_LBPROFILE_EXIST_ERROR_MESSAGE string = "LB profile already exists" NSERR_LBPROFILE_NOENT_ERROR_CODE errorCode = 3574 NSERR_LBPROFILE_NOENT_ERROR_MESSAGE string = "LB profile doesn't exist" NSERR_LBPROFILE_NOMEM_ERROR_CODE errorCode = 3575 NSERR_LBPROFILE_NOMEM_ERROR_MESSAGE string = "Cannot allocate memory for LB profile" NSERR_LBPROFILE_VSERVERSET_ERROR_CODE errorCode = 3576 NSERR_LBPROFILE_VSERVERSET_ERROR_MESSAGE string = "Cannot set vserver params which is associated with LB profile" NSERR_CH_INCOMPLETE_HDR_ERROR_CODE errorCode = 1312 NSERR_CH_INCOMPLETE_HDR_ERROR_MESSAGE string = "Custom Header string should end with CRLF" NSERR_SPILLOVERDISABLED_ERROR_CODE errorCode = 1313 NSERR_SPILLOVERDISABLED_ERROR_MESSAGE string = "No spillover on the vserver due to max client setting '0' on a bound service" NSERR_MAXTIMEEXCEEDED_ERROR_CODE errorCode = 1314 NSERR_MAXTIMEEXCEEDED_ERROR_MESSAGE string = "Maximum time value for interval or responsetimeout or downtime is exceeded, rounding to maximum" NSERR_SCINVALPROTO_ERROR_CODE errorCode = 1315 NSERR_SCINVALPROTO_ERROR_MESSAGE string = "Cannot bind SC policy to non-HTTP service or vserver" NSERR_ROOTREC_ERROR_CODE errorCode = 1316 NSERR_ROOTREC_ERROR_MESSAGE string = "Atleast one nameserver record should exist for the root domain" NSERR_ROOT_GLUEREC_ERROR_CODE errorCode = 1317 NSERR_ROOT_GLUEREC_ERROR_MESSAGE string = "Root domain nameserver address record should have atleast one ip address" NSERR_VIPINSERT_NOT_SUPPORTED_ERROR_CODE errorCode = 1356 NSERR_VIPINSERT_NOT_SUPPORTED_ERROR_MESSAGE string = "Vserver IP and port header insertion option not supported on this vserver." NSERR_VSVR_ALRDY_BOUND_ERROR_CODE errorCode = 1318 NSERR_VSVR_ALRDY_BOUND_ERROR_MESSAGE string = "This vserver is already bound to a WLM" NSERR_INVALID_WLM_BINDING_ERROR_CODE errorCode = 1319 NSERR_INVALID_WLM_BINDING_ERROR_MESSAGE string = "Only LB vservers are allowed to bound to WLM" NSERR_VSVR_NOT_BOUND_ERROR_CODE errorCode = 1320 NSERR_VSVR_NOT_BOUND_ERROR_MESSAGE string = "Vserver not bound to WLM" NSERR_WLM_EXISTS_ERROR_CODE errorCode = 1321 NSERR_WLM_EXISTS_ERROR_MESSAGE string = "WLM already configured on this IP, port" NSERR_INVALID_TIMEOUT_ERROR_CODE errorCode = 1322 NSERR_INVALID_TIMEOUT_ERROR_MESSAGE string = "Invalid persistence timeout: default timeout assigned" NSERR_CONNFAILOVER_TCPB_ERROR_CODE errorCode = 1324 NSERR_CONNFAILOVER_TCPB_ERROR_MESSAGE string = "Stateful connection failover cannot be enabled on a vserver that binds services with TCP buffering enabled" NSERR_CONNFAILOVER_TCPB_SVC_BIND_ERROR_CODE errorCode = 1326 NSERR_CONNFAILOVER_TCPB_SVC_BIND_ERROR_MESSAGE string = "Service with TCP buffering enabled cannot be bound to a vserver with stateful connection failover enabled" NSERR_CONNFAILOVER_TCPB_SVC_PARAM_ERROR_CODE errorCode = 1327 NSERR_CONNFAILOVER_TCPB_SVC_PARAM_ERROR_MESSAGE string = "TCP buffering cannot be enabled on a service bound to a vserver with stateful connection failover enabled" NSERR_CONNFAILOVER_SERVICE_STATEFULL_ERROR_CODE errorCode = 1328 NSERR_CONNFAILOVER_SERVICE_STATEFULL_ERROR_MESSAGE string = "Stateful connection failover cannot be enabled on a vserver of this service type" NSERR_CONNFAILOVER_SSL_SVC_BIND_ERROR_CODE errorCode = 1329 NSERR_CONNFAILOVER_SSL_SVC_BIND_ERROR_MESSAGE string = "SSL TCP service cannot be bound to a TCP vserver with stateful connection failover enabled" NSERR_CONNFAILOVER_SSL_SVC_ERROR_CODE errorCode = 1331 NSERR_CONNFAILOVER_SSL_SVC_ERROR_MESSAGE string = "Stateful connection failover cannot be enabled on a vserver that binds services of type SSL_TCP" NSERR_INVALID_PERSISTENCE_ERROR_CODE errorCode = 1332 NSERR_INVALID_PERSISTENCE_ERROR_MESSAGE string = "Invalid Persistence type" NSERR_RTSPSESSION_INVALID_ERROR_CODE errorCode = 1333 NSERR_RTSPSESSION_INVALID_ERROR_MESSAGE string = "Invalid RTSP session entry" NSERR_LB_METHOD_SAMEAS_BACKUP_METHOD_ERROR_CODE errorCode = 1334 NSERR_LB_METHOD_SAMEAS_BACKUP_METHOD_ERROR_MESSAGE string = "Backup load balancing method cannot be the same as the primary load balancing method" NSERR_SERVER_EXIST_ERROR_CODE errorCode = 1335 NSERR_SERVER_EXIST_ERROR_MESSAGE string = "Server already exists" NSERR_LB_SO_HEALTH_ERROR_CODE errorCode = 1336 NSERR_LB_SO_HEALTH_ERROR_MESSAGE string = "HEALTH spill-over cannot be set on a non-LB vserver" NSERR_REQ_RULE_MISSING_ERROR_CODE errorCode = 1337 NSERR_REQ_RULE_MISSING_ERROR_MESSAGE string = "Request Rule is required, when Response rule is specified." NSERR_CONNFAILOVER_BINDLO_ERROR_CODE errorCode = 1338 NSERR_CONNFAILOVER_BINDLO_ERROR_MESSAGE string = "Loopback service cannot be bound to vserver with connection failover enabled \n" NSERR_CONNFAILOVER_SETWITHLO_ERROR_CODE errorCode = 1339 NSERR_CONNFAILOVER_SETWITHLO_ERROR_MESSAGE string = "Connection Failover cannot be set to STATEFUL/STATELESS on vserver with bound loopback service\n" NSERR_REDIRECT_URL_NOT_APPLICABLE_ERROR_CODE errorCode = 1340 NSERR_REDIRECT_URL_NOT_APPLICABLE_ERROR_MESSAGE string = "Redirect URL cannot be configured on this vserver." NSERR_CONNFAILOVER_NOT_SUPPORTED_ERROR_CODE errorCode = 1342 NSERR_CONNFAILOVER_NOT_SUPPORTED_ERROR_MESSAGE string = "Connection Failover is not supported for pattern based vservers" NSERR_NOBIND_ONPUSH_ERROR_CODE errorCode = 1343 NSERR_NOBIND_ONPUSH_ERROR_MESSAGE string = "Bindings not allowed on push vserver" NSERR_PUSH_VSVR_ERROR_CODE errorCode = 1344 NSERR_PUSH_VSVR_ERROR_MESSAGE string = "Option cannot be set on push vserver" NSERR_ONLY_HTTPSSL_ERROR_CODE errorCode = 1345 NSERR_ONLY_HTTPSSL_ERROR_MESSAGE string = "Option can only be set on http/ ssl vserver" NSERR_PUSH_BIND_EXISTS_ERROR_CODE errorCode = 1346 NSERR_PUSH_BIND_EXISTS_ERROR_MESSAGE string = "A push vserver is already bound. Unbind before binding new vserver" NSERR_SET_PUSHVS_ONLY_ERROR_CODE errorCode = 1347 NSERR_SET_PUSHVS_ONLY_ERROR_MESSAGE string = "Push vserver should be of type push or ssl_push only" NSERR_SLESS_NO_SUPPORT_ERROR_CODE errorCode = 1348 NSERR_SLESS_NO_SUPPORT_ERROR_MESSAGE string = "Not supported for sessionless vservers" NSERR_LISTEN_POLICY_BIND_ERROR_CODE errorCode = 1351 NSERR_LISTEN_POLICY_BIND_ERROR_MESSAGE string = "Error in binding listen policy to vserver(normal vserver already present)" NSERR_NO_LISTEN_POLICY_FOR_DUMMYVS_ERROR_CODE errorCode = 1352 NSERR_NO_LISTEN_POLICY_FOR_DUMMYVS_ERROR_MESSAGE string = "Cannot bind listen policy to dummy vservers" NSERR_LISTEN_POLICY_BIND_PRESENT_ERROR_CODE errorCode = 1353 NSERR_LISTEN_POLICY_BIND_PRESENT_ERROR_MESSAGE string = "Error in binding listen policy to vserver(vserver with new priority already present)" NSERR_NO_LISTEN_PRI_ERROR_CODE errorCode = 1354 NSERR_NO_LISTEN_PRI_ERROR_MESSAGE string = "Error in binding listen priority to normal vserver" NSERR_NORMAL_VS_NONE_LISTENPOL_ERROR_CODE errorCode = 1355 NSERR_NORMAL_VS_NONE_LISTENPOL_ERROR_MESSAGE string = "The vserver already has None Listen Policy\n" NSERR_NO_LISPRI_FOR_NONE_LISPOL_ERROR_CODE errorCode = 1357 NSERR_NO_LISPRI_FOR_NONE_LISPOL_ERROR_MESSAGE string = "None listenpolicy doesnot have listen priority\n" NSERR_INVALID_POLICY_STRING_ERROR_CODE errorCode = 1358 NSERR_INVALID_POLICY_STRING_ERROR_MESSAGE string = "Invalid listenpolicy entered\n" NSERR_NODATALENOFFFORVS_ERROR_CODE errorCode = 1359 NSERR_NODATALENOFFFORVS_ERROR_MESSAGE string = "Dataoffset and datalength are not required for this vserver\n" NSERR_LBGRPPERSISWITHRDP_ERROR_CODE errorCode = 1285 NSERR_LBGRPPERSISWITHRDP_ERROR_MESSAGE string = "Persistency is not applicable for RDP vserver or LB group which has RDP vserver part of it" NSERR_CS_SOTHRESHOLD_ERROR_CODE errorCode = 1370 NSERR_CS_SOTHRESHOLD_ERROR_MESSAGE string = "Spillover threshold must be given with spillover method in Content Switching vserver" NSERR_INVALID_INSERTVSERVERIPPORT_ERROR_CODE errorCode = 1392 NSERR_INVALID_INSERTVSERVERIPPORT_ERROR_MESSAGE string = "V6TOV4MAPPING is not applicable to ipv4 vserver" NSERR_LB_SERVER_NOTEXIST_ERROR_CODE errorCode = 1388 NSERR_LB_SERVER_NOTEXIST_ERROR_MESSAGE string = "The Target LB Vserver does not exist" NSERR_BOUNDTO_CSACT_ERROR_CODE errorCode = 1371 NSERR_BOUNDTO_CSACT_ERROR_MESSAGE string = "The Vserver referred by Content Switching action cannot be removed" NSERR_BOUNDTO_CSPOLICY_ERROR_CODE errorCode = 1372 NSERR_BOUNDTO_CSPOLICY_ERROR_MESSAGE string = "The Content Switching Action bound to Content Switching Policy cannot be removed" NSERR_INVALID_MULTIPLEBIND_ERROR_CODE errorCode = 1373 NSERR_INVALID_MULTIPLEBIND_ERROR_MESSAGE string = "Multiple Bind not supported for Content Switching Advanced policies without action" NSERR_CSPOLICY_HASACTION_ERROR_CODE errorCode = 1374 NSERR_CSPOLICY_HASACTION_ERROR_MESSAGE string = "LB vserver/gotoPriorityExpression/invoke not allowed during bind when content swtiching policy already has an action." NSERR_CS_NOTSUPPORT_LB_ERROR_CODE errorCode = 1375 NSERR_CS_NOTSUPPORT_LB_ERROR_MESSAGE string = "The Protocol of given LB vserver is not supported by Content Switching action" NSERR_ACTION_NOTNOOP_CS_ERROR_CODE errorCode = 1386 NSERR_ACTION_NOTNOOP_CS_ERROR_MESSAGE string = "Do not provide gotoPriorityExpression/invoke because policy has action" NSERR_CSPOLICY_NOACTION_ERROR_CODE errorCode = 1387 NSERR_CSPOLICY_NOACTION_ERROR_MESSAGE string = "" /* 127-byte string literal not displayed */ NSERR_POLICY_USED_FOR_INVOKE_ERROR_CODE errorCode = 1390 NSERR_POLICY_USED_FOR_INVOKE_ERROR_MESSAGE string = "Do not give target LB beacuse the policy has been bound to multiple entities" NSERR_SPECIFY_BACKUP_NODE_ERROR_CODE errorCode = 1393 NSERR_SPECIFY_BACKUP_NODE_ERROR_MESSAGE string = "Please specify the backup node." NSERR_SAME_NODES_ERROR_CODE errorCode = 1394 NSERR_SAME_NODES_ERROR_MESSAGE string = "Owner and backup nodes need to different." NSERR_TCPKA_IDLETIME_TOO_LOW_ERROR_CODE errorCode = 1396 NSERR_TCPKA_IDLETIME_TOO_LOW_ERROR_MESSAGE string = "Connection idle time cannot be lower than keep-alive probe interval" NSERR_OWNER_NODE_NOT_IN_CLUSTER_ERROR_CODE errorCode = 1397 NSERR_OWNER_NODE_NOT_IN_CLUSTER_ERROR_MESSAGE string = "Owner node is not in the cluster config or is NOT ACTIVE" NSERR_BACKUP_NODE_NOT_IN_CLUSTER_ERROR_CODE errorCode = 1398 NSERR_BACKUP_NODE_NOT_IN_CLUSTER_ERROR_MESSAGE string = "Backup node is not in the cluster config or is NOT ACTIVE" NSERR_SPOTTED_VSERVER_NOT_SUPPORTED_IN_STANDALONE_ERROR_CODE errorCode = 1399 NSERR_SPOTTED_VSERVER_NOT_SUPPORTED_IN_STANDALONE_ERROR_MESSAGE string = "Spotted vserver configuration not supported in standalone or HA deplyoment" NSERR_SPOTTED_CONFIG_NO_MATCH_ERROR_CODE errorCode = 1400 NSERR_SPOTTED_CONFIG_NO_MATCH_ERROR_MESSAGE string = "Spotted config of the backup verser does not match the vserver" NSERR_OPTION_NOT_SUPPORTED_ERROR_CODE errorCode = 1401 NSERR_OPTION_NOT_SUPPORTED_ERROR_MESSAGE string = "Skip persistency is supported only for ANY and UDP service types" NSERR_OPTION_NOT_SUPPORTED_IP_ERROR_CODE errorCode = 1402 NSERR_OPTION_NOT_SUPPORTED_IP_ERROR_MESSAGE string = "BYPASS is not supported for IP based vservers" NSERR_OWNER_NODE_NOT_SET_ERROR_CODE errorCode = 1403 NSERR_OWNER_NODE_NOT_SET_ERROR_MESSAGE string = "Owner node should be specified for cluster" NSERR_INVALID_RENAME_ERROR_CODE errorCode = 1404 NSERR_INVALID_RENAME_ERROR_MESSAGE string = "Rename is supported only for Advanced policies" NSERR_INVAL_LOCAL_NAMSVR_TYPE_ERROR_CODE errorCode = 1405 NSERR_INVAL_LOCAL_NAMSVR_TYPE_ERROR_MESSAGE string = "Only UDP based local nameservers are allowed" NSERR_INVALID_TFTPORT_ERROR_CODE errorCode = 1406 NSERR_INVALID_TFTPORT_ERROR_MESSAGE string = "Invalid port for tftp vserver" NSERR_NO_RENAME_ERROR_CODE errorCode = 1407 NSERR_NO_RENAME_ERROR_MESSAGE string = "No Rename Supported" NSERR_USE_BINDCR_CMD_ERROR_CODE errorCode = 88 NSERR_USE_BINDCR_CMD_ERROR_MESSAGE string = "Use Bind CR command to bind CR Vserver instead of Bind CS" NSERR_NOENT_AS_PROFILE_ERROR_CODE errorCode = 1408 NSERR_NOENT_AS_PROFILE_ERROR_MESSAGE string = "No such Autoscale profile" NSERR_LBREFFERED_IN_CSBINDING_ERROR_CODE errorCode = 1409 NSERR_LBREFFERED_IN_CSBINDING_ERROR_MESSAGE string = "Cannot remove LB Vserver which is reffered in CS policy bindings" NSERR_DEFAULTLB_NOT_BOUND_ERROR_CODE errorCode = 1410 NSERR_DEFAULTLB_NOT_BOUND_ERROR_MESSAGE string = "default LB mentioned is not bound" NSERR_NG_BIND_ENTITY_ERROR_CODE errorCode = 1411 NSERR_NG_BIND_ENTITY_ERROR_MESSAGE string = "Error binding the node group to an entity" NSERR_ENTITY_BOUND_TO_ANOTHER_NG_ERROR_CODE errorCode = 1412 NSERR_ENTITY_BOUND_TO_ANOTHER_NG_ERROR_MESSAGE string = "The specified entity is already bound to a different node group" NSERR_ENTITY_ALREADY_BOUND_ERROR_CODE errorCode = 1413 NSERR_ENTITY_ALREADY_BOUND_ERROR_MESSAGE string = "The specified entity is already bound to this node group" NSERR_ENTITY_NOT_BOUND_TO_NG_ERROR_CODE errorCode = 1414 NSERR_ENTITY_NOT_BOUND_TO_NG_ERROR_MESSAGE string = "The specified entity is not bound to any node group" NSERR_NG_NOT_FOUND_ERROR_CODE errorCode = 1415 NSERR_NG_NOT_FOUND_ERROR_MESSAGE string = "Nodegroup is not found" NSERR_NG_HAS_BINDINGS_ERROR_CODE errorCode = 1416 NSERR_NG_HAS_BINDINGS_ERROR_MESSAGE string = "Nodegroup cannot be deleted, it has entities bound to it" NSERR_VSERVER_CANNOT_BIND_ERROR_CODE errorCode = 1417 NSERR_VSERVER_CANNOT_BIND_ERROR_MESSAGE string = "Vserver cannot bind to the nodegroup" NSERR_VSERVER_CANNOT_UNBIND_ERROR_CODE errorCode = 1418 NSERR_VSERVER_CANNOT_UNBIND_ERROR_MESSAGE string = "Vserver cannot unbind to the nodegroup" NSERR_NG_CANNOT_BE_STRICT_ERROR_CODE errorCode = 1419 NSERR_NG_CANNOT_BE_STRICT_ERROR_MESSAGE string = "Nodegroup cannot be made strict as there are no nodes bound to it, but entities are bound" NSERR_NG_STRICT_AND_ZERODEPTH_ERROR_CODE errorCode = 1420 NSERR_NG_STRICT_AND_ZERODEPTH_ERROR_MESSAGE string = "Cannot bind an entity to a strict nodegroup with no nodes bound to it" NSERR_UNBINDING_LAST_NODE_FROM_STRICT_NG_ERROR_CODE errorCode = 1421 NSERR_UNBINDING_LAST_NODE_FROM_STRICT_NG_ERROR_MESSAGE string = "Cannot unbind the last node from a strict nodegroup with entities bound to it" NSERR_NG_ALREADY_ADDED_ERROR_CODE errorCode = 1422 NSERR_NG_ALREADY_ADDED_ERROR_MESSAGE string = "Nodegroup is already added" NSERR_NG_ENTITY_NOMEM_ERROR_CODE errorCode = 1423 NSERR_NG_ENTITY_NOMEM_ERROR_MESSAGE string = "No memory to establish entity to nodegroup association" NSERR_NG_MAX_CONFIGURED_ERROR_CODE errorCode = 1424 NSERR_NG_MAX_CONFIGURED_ERROR_MESSAGE string = "Cannot add nodegroup; maximum number of nodegroups already added" NSERR_INVAL_CS_ACTION_ERROR_CODE errorCode = 1425 NSERR_INVAL_CS_ACTION_ERROR_MESSAGE string = "Action given is not a CS action" NSERR_SET_CSACTION_DISALLOWED_ERROR_CODE errorCode = 1426 NSERR_SET_CSACTION_DISALLOWED_ERROR_MESSAGE string = "Set disallowed for CS action from Target LB/targetVserver to Target Expression and vice versa" NSERR_RETAIN_VLAN_ERROR_CODE errorCode = 1427 NSERR_RETAIN_VLAN_ERROR_MESSAGE string = "" /* 142-byte string literal not displayed */ NSERR_BIND_BDGGROUP_SYNCVLAN_ERROR_CODE errorCode = 1428 NSERR_BIND_BDGGROUP_SYNCVLAN_ERROR_MESSAGE string = "Sync vlan cannot be bound to bridgegroup" NSERR_DEL_SYNCVLAN_ERROR_CODE errorCode = 1429 NSERR_DEL_SYNCVLAN_ERROR_MESSAGE string = "Sync vlan cannot be deleted" NSERR_LESSTHAN_PPE_ERROR_CODE errorCode = 1438 NSERR_LESSTHAN_PPE_ERROR_MESSAGE string = "Max/Min Reusepool connections should be greater than or equal to running Packet Engines." NSERR_MCLIMITS_ERROR_CODE errorCode = 1295 NSERR_MCLIMITS_ERROR_MESSAGE string = "Dummy error to avoid issues when upgrade done from 9.3." NSERR_SIP_BAD_REQUEST_ERROR_CODE errorCode = 1431 NSERR_SIP_BAD_REQUEST_ERROR_MESSAGE string = "Invalid SIP request." NSERR_SIP_NO_CONTENT_LEN_ERROR_CODE errorCode = 1432 NSERR_SIP_NO_CONTENT_LEN_ERROR_MESSAGE string = "No content length present." NSERR_SIP_RET_MAX_INCOM_LEN_ERROR_CODE errorCode = 1433 NSERR_SIP_RET_MAX_INCOM_LEN_ERROR_MESSAGE string = "SIP InComp max limit reached." NSERR_SIP_RET_RETRY_ERROR_CODE errorCode = 1434 NSERR_SIP_RET_RETRY_ERROR_MESSAGE string = "SIP packet retry." NSERR_SIP_RET_NO_MEM_ERROR_CODE errorCode = 1435 NSERR_SIP_RET_NO_MEM_ERROR_MESSAGE string = "SIP no memory available." NSERR_SIP_RET_HEADER_NOT_COMPLETE_ERROR_CODE errorCode = 1436 NSERR_SIP_RET_HEADER_NOT_COMPLETE_ERROR_MESSAGE string = "Incomplete SIP headers." NSERR_SIP_RET_FAILURE_ERROR_CODE errorCode = 1437 NSERR_SIP_RET_FAILURE_ERROR_MESSAGE string = "SIP operation failed." NSERR_CS_GSLB_DEFAULT_ERROR_CODE errorCode = 1439 NSERR_CS_GSLB_DEFAULT_ERROR_MESSAGE string = "Default vserver type mismatch" NSERR_CS_GSLB_DNSRT_MISMATCH_ERROR_CODE errorCode = 1306 NSERR_CS_GSLB_DNSRT_MISMATCH_ERROR_MESSAGE string = "DNSrecordType of CS GSLB vserver and Target Vserver should be same." NSERR_CS_GSLB_INVALID_TARGET_ERROR_CODE errorCode = 1307 NSERR_CS_GSLB_INVALID_TARGET_ERROR_MESSAGE string = "CS Vserver of type GSLB can only have GSLB vserver as Target." NSERR_CS_GSLB_POLICY_NO_ACTION_ERROR_CODE errorCode = 1308 NSERR_CS_GSLB_POLICY_NO_ACTION_ERROR_MESSAGE string = "CS Policy has no action or CS action doesn't have targetVserver" NSERR_GSLB_SVC_ALREADY_BOUND_TO_CS_ERROR_CODE errorCode = 1309 NSERR_GSLB_SVC_ALREADY_BOUND_TO_CS_ERROR_MESSAGE string = "GSLB service bound to targetVserver is already bound to CS vserver" NSERR_CS_POLICY_NO_RULE_ERROR_CODE errorCode = 1310 NSERR_CS_POLICY_NO_RULE_ERROR_MESSAGE string = "Binding CS policy to CS GSLB vserver requires rule" NSERR_VIP_BACKUP_ISCSGSLB_ERROR_CODE errorCode = 1311 NSERR_VIP_BACKUP_ISCSGSLB_ERROR_MESSAGE string = "CS GSLB vserver cannot be backup of a non- CS GSLB vserver" NSERR_VSR_BOUND_ERROR_CODE errorCode = 1325 NSERR_VSR_BOUND_ERROR_MESSAGE string = "" /* 175-byte string literal not displayed */ NSERR_SG_AUTOSCALE_REQ_SRV_ERROR_CODE errorCode = 1504 NSERR_SG_AUTOSCALE_REQ_SRV_ERROR_MESSAGE string = "Autoscale DNS must be enabled on servicegroup for binding server of SRV querytype" NSERR_SG_PORT_REQ_ERROR_CODE errorCode = 1505 NSERR_SG_PORT_REQ_ERROR_MESSAGE string = "Port is not specified" NSERR_SRV_PORT_NREQ_ERROR_CODE errorCode = 1506 NSERR_SRV_PORT_NREQ_ERROR_MESSAGE string = "Port should not be specified for DBS server of SRV querytype" NSERR_DBS_SPECIFIC_PARAMS_ERROR_CODE errorCode = 1507 NSERR_DBS_SPECIFIC_PARAMS_ERROR_MESSAGE string = "This parameter can only be used for DBS type servers" NSERR_LW_CPX_ERROR_CODE errorCode = 1687 NSERR_LW_CPX_ERROR_MESSAGE string = "Operation not permitted" NSERR_DESIREDSTATE_FAILED_ERROR_CODE errorCode = 1442 NSERR_DESIREDSTATE_FAILED_ERROR_MESSAGE string = "Failed to bind some servicegroup members" NSERR_UNBIND_TROFS_ITEM_ERROR_CODE errorCode = 1443 NSERR_UNBIND_TROFS_ITEM_ERROR_MESSAGE string = "Cannot perform unbind operation on graceful unbind service group members" NSERR_SGRP_MEMBER_ERROR_CODE errorCode = 1690 NSERR_SGRP_MEMBER_ERROR_MESSAGE string = "Cannot set/unset graceful unbind/ graceful delay parameters on service group members" NSERR_NS_VARIABLE_INVALID_INPUT_ERROR_CODE errorCode = 1692 NSERR_NS_VARIABLE_INVALID_INPUT_ERROR_MESSAGE string = "NS Variable should start with $ and Name of NS varible cannot be greater than 127 (excluding the '$')" NSERR_NS_VARIABLE_MISCONFIGURATION_ERROR_CODE errorCode = 1693 NSERR_NS_VARIABLE_MISCONFIGURATION_ERROR_MESSAGE string = "" /* 138-byte string literal not displayed */ NSERR_COOKIE_ATTR_INVALID_CHAR_ERROR_CODE errorCode = 1730 NSERR_COOKIE_ATTR_INVALID_CHAR_ERROR_MESSAGE string = "Configured literalADCCookieAttribute parameter contains invalid character" NSERR_LITERAL_COMPUTED_MUTEX_ERROR_CODE errorCode = 1731 NSERR_LITERAL_COMPUTED_MUTEX_ERROR_MESSAGE string = "Either literalADCCookieAttribute or computedADCCookieAttribute is already set" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#lb2-errors NSERR_ADDRPRESENT_ERROR_CODE errorCode = 1376 NSERR_ADDRPRESENT_ERROR_MESSAGE string = "Address(s) is invalid or already present in this action, will be discarded." NSERR_PERSISTENCE_PERSISTAVP_NOTDEFINED_ERROR_CODE errorCode = 1377 NSERR_PERSISTENCE_PERSISTAVP_NOTDEFINED_ERROR_MESSAGE string = "Persist Avp Number Must be defined For diameter Persistency" NSERR_MAX_DIAMETER_AVP_EXCEEDED_ERROR_CODE errorCode = 1378 NSERR_MAX_DIAMETER_AVP_EXCEEDED_ERROR_MESSAGE string = "Maximum number of diameter Persist Avp Codes exceeded" NSERR_AUTOSCALE_MIN_GT_MAX_ERROR_CODE errorCode = 1379 NSERR_AUTOSCALE_MIN_GT_MAX_ERROR_MESSAGE string = "Minimum Autoscale member count exceeds the maximum value" NSERR_MEMBERPORT_REQD_ERROR_CODE errorCode = 1380 NSERR_MEMBERPORT_REQD_ERROR_MESSAGE string = "Member Port option has to be specified when autoScale option POLICY is chosen" NSERR_COOKIEINSERT_NOTSET_ERROR_CODE errorCode = 1381 NSERR_COOKIEINSERT_NOTSET_ERROR_MESSAGE string = "Persistence type is not COOKIEINSERT." NSERR_LB_POLICY_NSB_FREED_ERROR_CODE errorCode = 2286 NSERR_LB_POLICY_NSB_FREED_ERROR_MESSAGE string = "LB policy evaluation freed the NSB" NSERR_LB_ACT_MUSTBE_NOLBACTION_ERROR_CODE errorCode = 2287 NSERR_LB_ACT_MUSTBE_NOLBACTION_ERROR_MESSAGE string = "Non-terminating LB policy must have NOLBACTION/ASSIGNMENT action" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#lsn-errors NSERR_LSN_NOPOOL_ERROR_CODE errorCode = 3960 NSERR_LSN_NOPOOL_ERROR_MESSAGE string = "No such pool" NSERR_LSN_NOTRANSPRFL_ERROR_CODE errorCode = 3961 NSERR_LSN_NOTRANSPRFL_ERROR_MESSAGE string = "No such transportprofile" NSERR_LSN_NOAPPSPRFL_ERROR_CODE errorCode = 3866 NSERR_LSN_NOAPPSPRFL_ERROR_MESSAGE string = "No such applicationprofile" NSERR_LSN_POOLNOTBOUND_ERROR_CODE errorCode = 4052 NSERR_LSN_POOLNOTBOUND_ERROR_MESSAGE string = "Pool not bound to group" NSERR_LSN_PRFLNOTBOUND_ERROR_CODE errorCode = 4053 NSERR_LSN_PRFLNOTBOUND_ERROR_MESSAGE string = "Profile not bound to group" NSERR_LSN_NOTREADY_ERROR_CODE errorCode = 4054 NSERR_LSN_NOTREADY_ERROR_MESSAGE string = "LSN not initialized. Please check memory allocated to LSN." NSERR_LSN_MAXBINDINGS_ERROR_CODE errorCode = 4055 NSERR_LSN_MAXBINDINGS_ERROR_MESSAGE string = "Maximum bindings allowed exceeded" NSERR_LSN_ACL_DETERMINISTICNAT_ERROR_CODE errorCode = 4056 NSERR_LSN_ACL_DETERMINISTICNAT_ERROR_MESSAGE string = "Client with ACLs not allowed for deterministic nat" NSERR_LSN_ACLTYPE_ERROR_CODE errorCode = 4057 NSERR_LSN_ACLTYPE_ERROR_MESSAGE string = "ACL with action other than ALLOW or establishedflag set" NSERR_LSN_ACLINUSE_ERROR_CODE errorCode = 4058 NSERR_LSN_ACLINUSE_ERROR_MESSAGE string = "ACL already bound to a LSN/RNAT rule" NSERR_64LIB_MEM_NOTSUFFICIENT_ERROR_CODE errorCode = 4059 NSERR_64LIB_MEM_NOTSUFFICIENT_ERROR_MESSAGE string = "Active memory less than minimum required for LSN and Subscriber Session Store" NSERR_LSN_NOBINDING_ERROR_CODE errorCode = 4060 NSERR_LSN_NOBINDING_ERROR_MESSAGE string = "No such binding" NSERR_LSN_NONETWORK_ERROR_CODE errorCode = 4061 NSERR_LSN_NONETWORK_ERROR_MESSAGE string = "No such network" NSERR_LSN_CLIENTGROUP_ERROR_CODE errorCode = 4062 NSERR_LSN_CLIENTGROUP_ERROR_MESSAGE string = "Please remove client's group first" NSERR_LSN_NOCLIENT_ERROR_CODE errorCode = 4063 NSERR_LSN_NOCLIENT_ERROR_MESSAGE string = "No such client" NSERR_LSN_NOGLBLLOG_ERROR_CODE errorCode = 4072 NSERR_LSN_NOGLBLLOG_ERROR_MESSAGE string = "Logging is disabled at Global level" NSERR_LSN_CLIENTINUSE_ERROR_CODE errorCode = 4080 NSERR_LSN_CLIENTINUSE_ERROR_MESSAGE string = "Client already present in a group" NSERR_LSN_PORTBLOCKSIZE_ERROR_CODE errorCode = 4081 NSERR_LSN_PORTBLOCKSIZE_ERROR_MESSAGE string = "Portblocksize should be multiple of 256" NSERR_LSN_WRONG_PORTBLOCKSIZE_ERROR_CODE errorCode = 855 NSERR_LSN_WRONG_PORTBLOCKSIZE_ERROR_MESSAGE string = "Portblocksize should not exceed 64512" NSERR_LSN_BINDINGEXIST_ERROR_CODE errorCode = 4082 NSERR_LSN_BINDINGEXIST_ERROR_MESSAGE string = "Binding already exists" NSERR_LSN_POOLGROUPTYPE_ERROR_CODE errorCode = 4083 NSERR_LSN_POOLGROUPTYPE_ERROR_MESSAGE string = "Both pool and group should be of same nat type" NSERR_LSN_POOLREUSE_DETERMINISTICNAT_ERROR_CODE errorCode = 4084 NSERR_LSN_POOLREUSE_DETERMINISTICNAT_ERROR_MESSAGE string = "Pool can be bound to only one group for determinstic nat" NSERR_LSN_PORT_APPSPROFEXIST_ERROR_CODE errorCode = 4085 NSERR_LSN_PORT_APPSPROFEXIST_ERROR_MESSAGE string = "Profile already exist for one or more ports in this/bound group(s)" NSERR_LSN_TCPONLY_ERROR_CODE errorCode = 4086 NSERR_LSN_TCPONLY_ERROR_MESSAGE string = "Allowed only for TCP profile" NSERR_LSN_MAPPINGFILTERINGTYPE_ERROR_CODE errorCode = 4087 NSERR_LSN_MAPPINGFILTERINGTYPE_ERROR_MESSAGE string = "Filtering should be more or equally strict as mapping" NSERR_LSN_ICMPAPPSPROF_MAPPINGFILTERINGPORT_ERROR_CODE errorCode = 4088 NSERR_LSN_ICMPAPPSPROF_MAPPINGFILTERINGPORT_ERROR_MESSAGE string = "Port dependent Filtering or Mapping not allowed for ICMP" NSERR_LSN_ICMPAPPSPROF_PORT_ERROR_CODE errorCode = 4089 NSERR_LSN_ICMPAPPSPROF_PORT_ERROR_MESSAGE string = "Port bindings not allowed for ICMP applicationprofile" NSERR_LSN_STATIC_NOGROUP_ERROR_CODE errorCode = 4090 NSERR_LSN_STATIC_NOGROUP_ERROR_MESSAGE string = "Client ip not part of any active lsn group" NSERR_LSN_STATIC_INVPOOL_ERROR_CODE errorCode = 4091 NSERR_LSN_STATIC_INVPOOL_ERROR_MESSAGE string = "No natip available or natip given is invalid" NSERR_LSN_FINTIMGTSESSTIM_ERROR_CODE errorCode = 4092 NSERR_LSN_FINTIMGTSESSTIM_ERROR_MESSAGE string = "Finrsttimeout should not be more than session timeout" NSERR_LSN_SETPORTBLOCK_DETERMINISTICNAT_ERROR_CODE errorCode = 4093 NSERR_LSN_SETPORTBLOCK_DETERMINISTICNAT_ERROR_MESSAGE string = "Port block size cannot be modified for deterministic nat" NSERR_LSN_DETERMINISTICNAT_SUBSCR_LIMIT_ERROR_CODE errorCode = 4094 NSERR_LSN_DETERMINISTICNAT_SUBSCR_LIMIT_ERROR_MESSAGE string = "Maximum allowed subscribers for deterministic nat group exceeeded" NSERR_64LIB_MEM_INCOMPLETE_ERROR_CODE errorCode = 3943 NSERR_64LIB_MEM_INCOMPLETE_ERROR_MESSAGE string = "Active memory could be different from configured memory limit, Please check 'show extendedmemory parameter'" NSERR_64LIB_MEM_EXCEEDSMAX_ERROR_CODE errorCode = 3944 NSERR_64LIB_MEM_EXCEEDSMAX_ERROR_MESSAGE string = "Configured memory cannot exceed maximum limit, Configured memory is set to maximum available limit'" NSERR_64LIB_MEM_SIZE2M_ERROR_CODE errorCode = 3945 NSERR_64LIB_MEM_SIZE2M_ERROR_MESSAGE string = "Configured memory should be in multiples of 2MB" NSERR_LSN_IPINSERT_ERROR_CODE errorCode = 3957 NSERR_LSN_IPINSERT_ERROR_MESSAGE string = "LSN IP addition failed" NSERR_LSN_ICMP_TIMEOUT_EXCEEDED_ERROR_CODE errorCode = 3958 NSERR_LSN_ICMP_TIMEOUT_EXCEEDED_ERROR_MESSAGE string = "Maximum value of ICMP session timeout is 240 seconds" NSERR_LSN_TCP_UDP_TIMEOUT_EXCEEDED_ERROR_CODE errorCode = 3867 NSERR_LSN_TCP_UDP_TIMEOUT_EXCEEDED_ERROR_MESSAGE string = "Maximum value of TCP/UDP session timeout is 600 seconds" NSERR_LSN_APPSPROF_PORTZERO_ERROR_CODE errorCode = 4073 NSERR_LSN_APPSPROF_PORTZERO_ERROR_MESSAGE string = "Cannot bind/unbind port 0 to Application Profile" NSERR_LSN_MEM_DECR_ERROR_CODE errorCode = 3995 NSERR_LSN_MEM_DECR_ERROR_MESSAGE string = "Active memory cannot be decreased without reboot" NSERR_LSN_NOSIPALGPRFL_ERROR_CODE errorCode = 3547 NSERR_LSN_NOSIPALGPRFL_ERROR_MESSAGE string = "No such sipalgprofile" NSERR_LSN_REM_APPPROFILE_ALGPROFILE_BOUND_ERROR_CODE errorCode = 3548 NSERR_LSN_REM_APPPROFILE_ALGPROFILE_BOUND_ERROR_MESSAGE string = "Can not remove Appfprofile, SIP ALG profile and RTSP ALG Profile should be unbound fron the groups bound to the Appprofile" NSERR_LSN_UNBIND_APPPROFILE_ALGPROFILE_BOUND_ERROR_CODE errorCode = 3549 NSERR_LSN_UNBIND_APPPROFILE_ALGPROFILE_BOUND_ERROR_MESSAGE string = "" /* 128-byte string literal not displayed */ NSERR_LSN_NORTSPALGPRFL_ERROR_CODE errorCode = 4074 NSERR_LSN_NORTSPALGPRFL_ERROR_MESSAGE string = "No such rtspalgprofile" NSERR_LSN_SIPALGPROF_PORTZERO_ERROR_CODE errorCode = 4075 NSERR_LSN_SIPALGPROF_PORTZERO_ERROR_MESSAGE string = "Cannot add port 0 to SIP ALG Profile" NSERR_LSN_RTSPALGPROF_PORTZERO_ERROR_CODE errorCode = 4076 NSERR_LSN_RTSPALGPROF_PORTZERO_ERROR_MESSAGE string = "Cannot add port 0 to RTSP ALG Profile" NSERR_LSN_IP6PROF_DSLITE_ERROR_CODE errorCode = 4077 NSERR_LSN_IP6PROF_DSLITE_ERROR_MESSAGE string = "With DS-Lite add only Network6" NSERR_LSN_IP6PROF_NAT64_ERROR_CODE errorCode = 4078 NSERR_LSN_IP6PROF_NAT64_ERROR_MESSAGE string = "With NAT64 add only IP6Prefix" NSERR_LSN_NETWORK6_EXISTS_ERROR_CODE errorCode = 3546 NSERR_LSN_NETWORK6_EXISTS_ERROR_MESSAGE string = "network 6 based LSN client already exists for this network 6 address(Duplicate config)" NSERR_LSN_CLIENTNETWORK_INCORRECT_BINDING_ERROR_CODE errorCode = 3551 NSERR_LSN_CLIENTNETWORK_INCORRECT_BINDING_ERROR_MESSAGE string = "Both Client and Network type MUST be of the same type, IPv4, IPv6 or DS-Lite Deterministic" NSERR_LSN_CLIENTGROUPTYPE_ERROR_CODE errorCode = 3553 NSERR_LSN_CLIENTGROUPTYPE_ERROR_MESSAGE string = "Both client and group should be of same type" NSERR_LSN_DSLITEPREFIXLEN_ERROR_CODE errorCode = 3554 NSERR_LSN_DSLITEPREFIXLEN_ERROR_MESSAGE string = "Network6 MUST have a prefix length 128 for a DS-Lite DETERMINISTIC type client or client associated with STATIC mapping" NSERR_LSN_NOIP6PROFILE_ERROR_CODE errorCode = 3555 NSERR_LSN_NOIP6PROFILE_ERROR_MESSAGE string = "No such IP6 profile" NSERR_LSN_IP6GROUP_ERROR_CODE errorCode = 4079 NSERR_LSN_IP6GROUP_ERROR_MESSAGE string = "Please remove associated group first" NSERR_LSN_DSLITE_INVALIDIP6_ERROR_CODE errorCode = 3556 NSERR_LSN_DSLITE_INVALIDIP6_ERROR_MESSAGE string = "With DS-Lite add only SNIP6." NSERR_LSN_DSLITE_SNIP6_REQD_ERROR_CODE errorCode = 3557 NSERR_LSN_DSLITE_SNIP6_REQD_ERROR_MESSAGE string = "DS-Lite needs SNIP6 in relevent TDs.If not already present, add SNIP6 relevent to all tds belonging to a LSN group" NSERR_LSN_DUP_IP6PROFILE_ERROR_CODE errorCode = 3552 NSERR_LSN_DUP_IP6PROFILE_ERROR_MESSAGE string = "Either IPv6 address or NAT Prefix already been used" NSERR_LSN_SIPALG_CANNOT_BIND_ERROR_CODE errorCode = 3882 NSERR_LSN_SIPALG_CANNOT_BIND_ERROR_MESSAGE string = "Cannot bind SIPALG profile to the group, either the group is not in full cone mode or IP Pool pair is not enabled" NSERR_LSN_RTSPALG_CANNOT_BIND_ERROR_CODE errorCode = 3883 NSERR_LSN_RTSPALG_CANNOT_BIND_ERROR_MESSAGE string = "Cannot bind RTSP profile to the group, either the group is not in full cone mode or IP Pool pair is not enabled" NSERR_LSN_SIPALG_TRANSPORT_PROTOCOL_BINDINGEXIST_ERROR_CODE errorCode = 3884 NSERR_LSN_SIPALG_TRANSPORT_PROTOCOL_BINDINGEXIST_ERROR_MESSAGE string = "Can not bind more than one SIPALG profile of same transport protocol to the lsn group" NSERR_LSN_RTSPALG_TRANSPORT_PROTOCOL_BINDINGEXIST_ERROR_CODE errorCode = 3885 NSERR_LSN_RTSPALG_TRANSPORT_PROTOCOL_BINDINGEXIST_ERROR_MESSAGE string = "Can not bind more than one RTSPALG profile of same transport protocol to the lsn group" NSERR_LSN_CANNOT_UNBIND_APPPROFILE_ERROR_CODE errorCode = 3886 NSERR_LSN_CANNOT_UNBIND_APPPROFILE_ERROR_MESSAGE string = "" /* 156-byte string literal not displayed */ NSERR_LSN_RTSPALGPROF_TRANSPORT_SUPPORTED_ERROR_CODE errorCode = 3887 NSERR_LSN_RTSPALGPROF_TRANSPORT_SUPPORTED_ERROR_MESSAGE string = "RTSP ALG profile for only TCP is supported" NSERR_LSN_IPSECALG_CANNOT_BIND_ERROR_CODE errorCode = 3520 NSERR_LSN_IPSECALG_CANNOT_BIND_ERROR_MESSAGE string = "Cannot bind IPSECALG profile to the group, IP Pool pair is not enabled" NSERR_LSN_SIPALGPROF_PORT_NOT_ADDED_ERROR_CODE errorCode = 3353 NSERR_LSN_SIPALGPROF_PORT_NOT_ADDED_ERROR_MESSAGE string = "Atleast sipsrcportrange or sipdstportrange should be added with positive portrange" NSERR_LSN_GRP_SESS_LIMIT_ERROR_CODE errorCode = 852 NSERR_LSN_GRP_SESS_LIMIT_ERROR_MESSAGE string = "Group session limit must be greater than the number of Packet Engines" NSERR_LSN_DETER_POOL_ERROR_CODE errorCode = 3903 NSERR_LSN_DETER_POOL_ERROR_MESSAGE string = "Cannot enable portblock allocation on deterministic pool" NSERR_LSN_SIP_RTSP_ALG_MAPPING_FILTERING_IPPOOLING_ERROR_CODE errorCode = 853 NSERR_LSN_SIP_RTSP_ALG_MAPPING_FILTERING_IPPOOLING_ERROR_MESSAGE string = "" /* 139-byte string literal not displayed */ NSERR_LSN_PORTBLOCKSIZE_NOTALLOWED_ERROR_CODE errorCode = 856 NSERR_LSN_PORTBLOCKSIZE_NOTALLOWED_ERROR_MESSAGE string = "Portblock size should not be changed to zero from nonzero and to nonzero from zero" NSERR_LSN_POOLGROUP_PORTBLOCK_MISMATCH_ERROR_CODE errorCode = 857 NSERR_LSN_POOLGROUP_PORTBLOCK_MISMATCH_ERROR_MESSAGE string = "Pool's portblock allocation and group's portblocksize fields are not compatable" NSERR_LSN_GRPID_PERM_ERROR_CODE errorCode = 3818 NSERR_LSN_GRPID_PERM_ERROR_MESSAGE string = "GroupID should not be explicitly specified" NSERR_LSN_INVALID_DSLITE_PREFIX_LEN_ERROR_CODE errorCode = 3819 NSERR_LSN_INVALID_DSLITE_PREFIX_LEN_ERROR_MESSAGE string = "Invalid Ipv6 Prefix length for dslite client ipv6 network(only /128 prefix is allowed)" NSERR_LSN_NOLOGPRFL_ERROR_CODE errorCode = 3384 NSERR_LSN_NOLOGPRFL_ERROR_MESSAGE string = "No such log profile" NSERR_LSN_NOHTTPHDRLOGPRFL_ERROR_CODE errorCode = 3392 NSERR_LSN_NOHTTPHDRLOGPRFL_ERROR_MESSAGE string = "No such HTTP header log profile" NSERR_LSN_DOHASYNC_ERROR_CODE errorCode = 3396 NSERR_LSN_DOHASYNC_ERROR_MESSAGE string = "Force HA Sync should be given to sync Primary's pre-flush operation LSN sessions" NSERR_LSN_STATICWILD_INV_PORT_ERROR_CODE errorCode = 3397 NSERR_LSN_STATICWILD_INV_PORT_ERROR_MESSAGE string = "invalid port for static nat wild card port config, subscr port and nat port must be *" NSERR_LSN_STATICWILD_INV_NATIP_ERROR_CODE errorCode = 3398 NSERR_LSN_STATICWILD_INV_NATIP_ERROR_MESSAGE string = "NAT ip must be given for static nat wildcard port config" NSERR_LSN_STATICWILD_INV_DSTIP_ERROR_CODE errorCode = 3399 NSERR_LSN_STATICWILD_INV_DSTIP_ERROR_MESSAGE string = "Dest ip must not be given for static nat wildcard port config" NSERR_LSN_STATICWILD_INV_WILDPORT_ERROR_CODE errorCode = 3400 NSERR_LSN_STATICWILD_INV_WILDPORT_ERROR_MESSAGE string = "wild card port(* or 65535) is valid only for trasport protocol type ALL(i.e only static nat wild card port config)" NSERR_LSN_STATICWILD_NATIP_INUSE_ERROR_CODE errorCode = 3401 NSERR_LSN_STATICWILD_NATIP_INUSE_ERROR_MESSAGE string = "NAT ip is already in use for static nat wildcard port config." NSERR_LSN_STATICWILD_NATIP_NO_FREE_PORTS_ERROR_CODE errorCode = 3402 NSERR_LSN_STATICWILD_NATIP_NO_FREE_PORTS_ERROR_MESSAGE string = "NAT ip is not valid or not all ports on NAT ip are free, select different natip which has all ports free." NSERR_LSN_NAT64_MAP_INS_FAIL_ERROR_CODE errorCode = 3406 NSERR_LSN_NAT64_MAP_INS_FAIL_ERROR_MESSAGE string = "Operation on nat64 prefix failed due to low system memory" NSERR_LSN_DSLITE_NO_FTP_CM_ERROR_CODE errorCode = 3577 NSERR_LSN_DSLITE_NO_FTP_CM_ERROR_MESSAGE string = "FTP connection mirroring in LSN is not supported with DS-Lite nattype" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#map-domain-errors NSERR_MAP_IPV6_PREFIX_INVALID_ERROR_CODE errorCode = 3529 NSERR_MAP_IPV6_PREFIX_INVALID_ERROR_MESSAGE string = "MAP IPv6 Prefix is invalid, it must be global" NSERR_MAP_IPV6_PREFIX_REQ_ERROR_CODE errorCode = 3530 NSERR_MAP_IPV6_PREFIX_REQ_ERROR_MESSAGE string = "MAP IPv6 Prefix is required" NSERR_MAP_PSID_INVALID_ERROR_CODE errorCode = 3531 NSERR_MAP_PSID_INVALID_ERROR_MESSAGE string = "MAP BMR Port Set ID is invalid" NSERR_MAP_PSID_OFFSET_INVALID_ERROR_CODE errorCode = 3532 NSERR_MAP_PSID_OFFSET_INVALID_ERROR_MESSAGE string = "MAP BMR Port Set ID offset is invalid" NSERR_MAP_IPV4_NW_REQ_ERROR_CODE errorCode = 3533 NSERR_MAP_IPV4_NW_REQ_ERROR_MESSAGE string = "MAP BMR rule ipv4 network and netmask" NSERR_MAP_BMR_NW_MISSMATCH_ERROR_CODE errorCode = 3534 NSERR_MAP_BMR_NW_MISSMATCH_ERROR_MESSAGE string = "MAP BMR rule and ipv4 network mismatch" NSERR_MAP_BMR_PSID_LEN_INVALID_ERROR_CODE errorCode = 3535 NSERR_MAP_BMR_PSID_LEN_INVALID_ERROR_MESSAGE string = "MAP BMR rule sharing ration is invalid it must be 1 to 16" NSERR_MAP_BMR_EABIT_LEN_INVALID_ERROR_CODE errorCode = 3543 NSERR_MAP_BMR_EABIT_LEN_INVALID_ERROR_MESSAGE string = "MAP BMR rule EABIT length invalid" NSERR_MAP_NSB_CONSUMED_ERROR_CODE errorCode = 3544 NSERR_MAP_NSB_CONSUMED_ERROR_MESSAGE string = "NSB is consumed by MAP-T, error return to source or packet forwarded" NSERR_MAP_NO_CONFIG_ERROR_CODE errorCode = 3545 NSERR_MAP_NO_CONFIG_ERROR_MESSAGE string = "NO MAP T config, continue with other config" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#nat64-errors NSERR_NAT64_ACL_EXISTS_ERROR_CODE errorCode = 3959 NSERR_NAT64_ACL_EXISTS_ERROR_MESSAGE string = "ACL is bound to another NAT64 rule" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#net-errors NSERR_ACL_TIMED_OUT_ERROR_CODE errorCode = 977 NSERR_ACL_TIMED_OUT_ERROR_MESSAGE string = "ACL timed out" NSERR_MSR_ADVT_NULL_RT_ERROR_CODE errorCode = 978 NSERR_MSR_ADVT_NULL_RT_ERROR_MESSAGE string = "Cannot monitor or advertise NULL route" NSERR_DEF_RT_UNSET_ERROR_CODE errorCode = 979 NSERR_DEF_RT_UNSET_ERROR_MESSAGE string = "Unset operation on default route not allowed" NSERR_ACTIVE_PERM_DIR_NULL_RT_ERROR_CODE errorCode = 981 NSERR_ACTIVE_PERM_DIR_NULL_RT_ERROR_MESSAGE string = "Unset operation on active or permanent or direct or null routes not allowed" NSERR_DHCP_RT_ERROR_CODE errorCode = 982 NSERR_DHCP_RT_ERROR_MESSAGE string = "Unset operation on DHCP route not allowed" NSERR_LB_RT_ERROR_CODE errorCode = 983 NSERR_LB_RT_ERROR_MESSAGE string = "Unset operation on LB route not allowed" NSERR_MSR_STATIC_RT_ERROR_CODE errorCode = 984 NSERR_MSR_STATIC_RT_ERROR_MESSAGE string = "Cannot set MSR on a non-static route" NSERR_ADV_DEF_RT_ERROR_CODE errorCode = 985 NSERR_ADV_DEF_RT_ERROR_MESSAGE string = "Advertise on default route not allowed" NSERR_VLAN_RT_ERROR_CODE errorCode = 986 NSERR_VLAN_RT_ERROR_MESSAGE string = "Cannot delete this route. Network is bound to VLAN" NSERR_PERM_RT_ERROR_CODE errorCode = 987 NSERR_PERM_RT_ERROR_MESSAGE string = "A permanent route cannot be deleted" NSERR_NOENTRY_RT_ERROR_CODE errorCode = 988 NSERR_NOENTRY_RT_ERROR_MESSAGE string = "Entry not found in the routing table" NSERR_DIR_RT_ERROR_CODE errorCode = 989 NSERR_DIR_RT_ERROR_MESSAGE string = "Cannot add a direct route" NSERR_LOOP_RT_ERROR_CODE errorCode = 990 NSERR_LOOP_RT_ERROR_MESSAGE string = "Cannot add a route in loopback network" NSERR_GW_NWID_BROADADDR_ERROR_CODE errorCode = 991 NSERR_GW_NWID_BROADADDR_ERROR_MESSAGE string = "Gateway cannot be network id or broadcast address" NSERR_MON_ADV_NULL_RT_ERROR_CODE errorCode = 992 NSERR_MON_ADV_NULL_RT_ERROR_MESSAGE string = "Cannot set MSR or advertise on null gateway" NSERR_HA_PEER_IP_ERROR_CODE errorCode = 994 NSERR_HA_PEER_IP_ERROR_MESSAGE string = "Cannot add IP address. This is peer's NSIP" NSERR_NON_LOCAL_IP_ERROR_CODE errorCode = 995 NSERR_NON_LOCAL_IP_ERROR_MESSAGE string = "IP address is already configured on a node in the cluster" NSERR_ADD_NSIP_ERROR_CODE errorCode = 996 NSERR_ADD_NSIP_ERROR_MESSAGE string = "Adding NSIP not allowed" NSERR_VRID_VIP_ONLY_ERROR_CODE errorCode = 997 NSERR_VRID_VIP_ONLY_ERROR_MESSAGE string = "VRID can be set only on VIP" NSERR_ARP_ICMP_SNIP_NSIP_ERROR_CODE errorCode = 998 NSERR_ARP_ICMP_SNIP_NSIP_ERROR_MESSAGE string = "ARP and ICMP cannot be disabled on SNIP/NSIP/MIP/CLIP" NSERR_IPADDR_DISABLE_ERROR_CODE errorCode = 999 NSERR_IPADDR_DISABLE_ERROR_MESSAGE string = "IP address state of SNIP/NSIP/CLIP cannot be disabled" NSERR_NODE_NOEXIST_ERROR_CODE errorCode = 1000 NSERR_NODE_NOEXIST_ERROR_MESSAGE string = "Cluster node does not exist" NSERR_CLIP_SPOTTED_IP_ERROR_CODE errorCode = 1001 NSERR_CLIP_SPOTTED_IP_ERROR_MESSAGE string = "CLIP should be striped" NSERR_IP_MGMTACCESS_ERROR_CODE errorCode = 1002 NSERR_IP_MGMTACCESS_ERROR_MESSAGE string = "Management Access cannot be enabled on this IP address" NSERR_IPTUN_MULTICAST_ERROR_CODE errorCode = 1003 NSERR_IPTUN_MULTICAST_ERROR_MESSAGE string = "Vlan on which to send the packet needs to be specified for multicast remote endpoints" NSERR_IPTUNNEL_INVALIDNETMASK_ERROR_CODE errorCode = 1004 NSERR_IPTUNNEL_INVALIDNETMASK_ERROR_MESSAGE string = "IP tunnel netmask should be 255.255.255.255." NSERR_IPTUNNEL_VLAN_ERROR_CODE errorCode = 1005 NSERR_IPTUNNEL_VLAN_ERROR_MESSAGE string = "Vlan can be specified only for multicast remote endpoints" NSERR_IPTUN_INV_LIP_ERROR_CODE errorCode = 1006 NSERR_IPTUN_INV_LIP_ERROR_MESSAGE string = "Invalid local IP address. Either the local IP address is not configured or local IP address has to be one among SNIP|VIP|MIP" NSERR_VXLAN_LIP_NOT_SNIP_ERROR_CODE errorCode = 1007 NSERR_VXLAN_LIP_NOT_SNIP_ERROR_MESSAGE string = "Invalid local IP address. For VXLAN local IP address has to be SNIP" NSERR_INVALID_IPTUNNEL_NAME_ERROR_CODE errorCode = 1008 NSERR_INVALID_IPTUNNEL_NAME_ERROR_MESSAGE string = "Invalid IPTunnel name" NSERR_IPTUNNEL_PREFXLEN_GT_128_ERROR_CODE errorCode = 1009 NSERR_IPTUNNEL_PREFXLEN_GT_128_ERROR_MESSAGE string = "IP tunnel prefix length should not be more than 128" NSERR_TUN_PBR_DEP_ERROR_CODE errorCode = 1010 NSERR_TUN_PBR_DEP_ERROR_MESSAGE string = "Cannot remove tunnel. A PBR is depending on this tunnel" NSERR_TUN_NOEXIST_ERROR_CODE errorCode = 1011 NSERR_TUN_NOEXIST_ERROR_MESSAGE string = "Tunnel does not exist" NSERR_INV_DROPFRAGCPUTHRESH_ERROR_CODE errorCode = 1012 NSERR_INV_DROPFRAGCPUTHRESH_ERROR_MESSAGE string = "Invalid dropFragCpuThreshold parameter. Should >=1 and <=100" NSERR_SRCIP_NOEXIST_ERROR_CODE errorCode = 1013 NSERR_SRCIP_NOEXIST_ERROR_MESSAGE string = "SrcIP does not exist" NSERR_TUN_ON_DEF_ROUTE_ERROR_CODE errorCode = 1014 NSERR_TUN_ON_DEF_ROUTE_ERROR_MESSAGE string = "Cannot add tunnel on default route" NSERR_VLAN_NOT_SNIP_MIP_VIP_ERROR_CODE errorCode = 1015 NSERR_VLAN_NOT_SNIP_MIP_VIP_ERROR_MESSAGE string = "IP address has to be either SNIP, MIP or VIP" NSERR_ACL_PROTO_TCP_ERROR_CODE errorCode = 1016 NSERR_ACL_PROTO_TCP_ERROR_MESSAGE string = "Protocol should be TCP for ESTABLISHED flag to be set" NSERR_HA_VERSION_MISMATCH_ERROR_CODE errorCode = 1017 NSERR_HA_VERSION_MISMATCH_ERROR_MESSAGE string = "HA version mismatch between primary and secondary" NSERR_HA_SYNC_VLAN_ERROR_CODE errorCode = 1018 NSERR_HA_SYNC_VLAN_ERROR_MESSAGE string = "Syncvlan should be L2 VLAN. No IP address should be bound to this VLAN" NSERR_LOOP_FIS_ERROR_CODE errorCode = 1019 NSERR_LOOP_FIS_ERROR_MESSAGE string = "Loopback interface cannot be bound to Failover Interface Set (FIS)" NSERR_VLAN_LOOP_ERROR_CODE errorCode = 1020 NSERR_VLAN_LOOP_ERROR_MESSAGE string = "Loopback interface cannot be unbound from default VLAN" NSERR_VLAN_TAGG_INTF_NOSUPP_ERROR_CODE errorCode = 1021 NSERR_VLAN_TAGG_INTF_NOSUPP_ERROR_MESSAGE string = "VLAN tagging is not supported on this platform/interface" NSERR_VLAN_BDG_NOTBOUND_ERROR_CODE errorCode = 1022 NSERR_VLAN_BDG_NOTBOUND_ERROR_MESSAGE string = "The VLAN is not bound to specified bridgegroup" NSERR_PERMANENT_ARP_ND6_ENTRY_ERROR_CODE errorCode = 1023 NSERR_PERMANENT_ARP_ND6_ENTRY_ERROR_MESSAGE string = "Can't remove permanent ARP/ND6 entry" NSERR_HA_VER_MISMATCH_PROP_SYNC_ERROR_CODE errorCode = 1447 NSERR_HA_VER_MISMATCH_PROP_SYNC_ERROR_MESSAGE string = "HA version mismatch. Prop and sync not allowed" NSERR_VXLAN_TUNN_BOUND_ERROR_CODE errorCode = 1458 NSERR_VXLAN_TUNN_BOUND_ERROR_MESSAGE string = "Cannot remove IPtunnel. One or more VXLAN is bound to this iptunnel." NSERR_HOSTRT_UNSET_ERROR_CODE errorCode = 1489 NSERR_HOSTRT_UNSET_ERROR_MESSAGE string = "Unset of OSPFArea and HostRtGw is allowed only for VIP" NSERR_BDGGRP_L3VLAN_ERROR_CODE errorCode = 2412 NSERR_BDGGRP_L3VLAN_ERROR_MESSAGE string = "L3VLAN cannot be bound to a bridgegroup" NSERR_BDGGRP_ROUTING_ERROR_CODE errorCode = 2505 NSERR_BDGGRP_ROUTING_ERROR_MESSAGE string = "Routing is enabled on the specified VLAN. Cannot bind this VLAN to the bridgegroup" NSERR_RM_RT_DIR_PERM_DHCP_ERROR_CODE errorCode = 2506 NSERR_RM_RT_DIR_PERM_DHCP_ERROR_MESSAGE string = "DIRECT/PERMANENT/DHCP routes cannot be removed." NSERR_ADD_IP_STRIPED_EXISTS_ERROR_CODE errorCode = 2507 NSERR_ADD_IP_STRIPED_EXISTS_ERROR_MESSAGE string = "Trying to add a striped IP address as a spotted IP." NSERR_DIS_IP_NOT_USR_DEF_ERROR_CODE errorCode = 2508 NSERR_DIS_IP_NOT_USR_DEF_ERROR_MESSAGE string = "Enable/Disbaling this IP address not allowed as VIP is not user-defined" NSERR_DIS_IP_NOT_VIP_ERROR_CODE errorCode = 2509 NSERR_DIS_IP_NOT_VIP_ERROR_MESSAGE string = "Enable/Disabling this IP address not allowed as it is not VIP" NSERR_DEL_NSIP_ERROR_CODE errorCode = 2510 NSERR_DEL_NSIP_ERROR_MESSAGE string = "Cannot delete NSIP" NSERR_DEL_DHCP_AQRD_ERROR_CODE errorCode = 2511 NSERR_DEL_DHCP_AQRD_ERROR_MESSAGE string = "Cannot delete DHCP acquired IP address" NSERR_USR_DEF_NO_ERROR_CODE errorCode = 2618 NSERR_USR_DEF_NO_ERROR_MESSAGE string = "Not a user-defined IP address" NSERR_TUNL_DEPENDENCY_ERROR_CODE errorCode = 2619 NSERR_TUNL_DEPENDENCY_ERROR_MESSAGE string = "Existing tunnel depends on this IP address" NSERR_MGMT_NSIP_CLIP_ERROR_CODE errorCode = 2620 NSERR_MGMT_NSIP_CLIP_ERROR_MESSAGE string = "Management access on NSIP and CLIP should always be enabled" NSERR_INV_ICMP_RESP_ERROR_CODE errorCode = 2621 NSERR_INV_ICMP_RESP_ERROR_MESSAGE string = "Invalid icmpResponse value" NSERR_INV_ARP_RESP_ERROR_CODE errorCode = 2622 NSERR_INV_ARP_RESP_ERROR_MESSAGE string = "Invalid arpResponse value" NSERR_INTERNAL_ERR_REGN_ERROR_CODE errorCode = 2623 NSERR_INTERNAL_ERR_REGN_ERROR_MESSAGE string = "Internal error while registration of service. Service name in use" NSERR_CANT_SET_IP_DEL_IN_PROG_ERROR_CODE errorCode = 2540 NSERR_CANT_SET_IP_DEL_IN_PROG_ERROR_MESSAGE string = "Delete IP address is in progress." NSERR_INAT_USE_PROXY_ERROR_CODE errorCode = 2394 NSERR_INAT_USE_PROXY_ERROR_MESSAGE string = "Useproxyport cannot be disabled when either of publicIP or private IP is IPV6" NSERR_GSLB_ADNS_CONFGRD_ERROR_CODE errorCode = 2395 NSERR_GSLB_ADNS_CONFGRD_ERROR_MESSAGE string = "GSLB/ADNS/RADIUS is already configured on this IP address" NSERR_NW_ADDR_ZERO_ERROR_CODE errorCode = 2396 NSERR_NW_ADDR_ZERO_ERROR_MESSAGE string = "Network address cannot be zero" NSERR_NW_ADDR_LOOP_ERROR_CODE errorCode = 2397 NSERR_NW_ADDR_LOOP_ERROR_MESSAGE string = "Network address cannot be loopback" NSERR_UNABLE_DEFVLAN_INFO_ERROR_CODE errorCode = 2398 NSERR_UNABLE_DEFVLAN_INFO_ERROR_MESSAGE string = "Unable to get default VLAN info." NSERR_HA_INC_SYNC_ERROR_CODE errorCode = 2399 NSERR_HA_INC_SYNC_ERROR_MESSAGE string = "SyncVlan is not supported in HA-INC mode" NSERR_IP_NWADDR_ERROR_CODE errorCode = 2400 NSERR_IP_NWADDR_ERROR_MESSAGE string = "IPaddress cannot be network address" NSERR_IP_BCASTADDR_ERROR_CODE errorCode = 2401 NSERR_IP_BCASTADDR_ERROR_MESSAGE string = "IPaddress cannot be broadcast address" NSERR_ACL_BOUND_LSN_ERROR_CODE errorCode = 2402 NSERR_ACL_BOUND_LSN_ERROR_MESSAGE string = "This ACL is already bound to LSN" NSERR_SUBNET_BOUND_ANTHR_VLAN_ERROR_CODE errorCode = 2403 NSERR_SUBNET_BOUND_ANTHR_VLAN_ERROR_MESSAGE string = "Either the subnet is not directly connected or subnet already bound to another VLAN" NSERR_DEL_ADNS_IP_ERROR_CODE errorCode = 2406 NSERR_DEL_ADNS_IP_ERROR_MESSAGE string = "Cannot delete this IP address as ADNS is configured on this." NSERR_DEL_REF_IP_ERROR_CODE errorCode = 2407 NSERR_DEL_REF_IP_ERROR_MESSAGE string = "Cannot delete this IP address as it is used in GSLB/IPSET/Other entities" NSERR_SNMP_CANNOT_EN_ON_IP_ERROR_CODE errorCode = 2409 NSERR_SNMP_CANNOT_EN_ON_IP_ERROR_MESSAGE string = "SNMP cannot be enabled on this IP address" NSERR_CANNOT_EN_ON_IPADDR_ERROR_CODE errorCode = 2410 NSERR_CANNOT_EN_ON_IPADDR_ERROR_MESSAGE string = "SNMP/TELNET/FTP/SSH/GUI/SECURE GUI/RESTRICTED-IP cannot be enabled on this IP address" NSERR_ACL_ESTABLISHED_SET_ERROR_CODE errorCode = 2414 NSERR_ACL_ESTABLISHED_SET_ERROR_MESSAGE string = "For RNAT/NAT64 ACL established flag cannot be set" NSERR_DEL_RADIUS_IP_ERROR_CODE errorCode = 2415 NSERR_DEL_RADIUS_IP_ERROR_MESSAGE string = "Cannot delete this IP address as RADIUS is configured on this." NSERR_CANNOT_EN_ON_IP_ERROR_CODE errorCode = 2416 NSERR_CANNOT_EN_ON_IP_ERROR_MESSAGE string = "TELNET/FTP/SSH/GUI/SECURE GUI/RESTRICTED-IP cannot be enabled on this IP address" NSERR_BFD_SESSION_CLEAR_INPROGRESS_ERROR_CODE errorCode = 2418 NSERR_BFD_SESSION_CLEAR_INPROGRESS_ERROR_MESSAGE string = "BFD session cannot be added now as old session clear is in progress" NSERR_BFD_SESSION_EXISTS_DIFF_FLAGS_ERROR_CODE errorCode = 2419 NSERR_BFD_SESSION_EXISTS_DIFF_FLAGS_ERROR_MESSAGE string = "BFD session exists with different flags (SINGLEHOP AND MULTIHOP)" NSERR_CLASS_E_ERROR_CODE errorCode = 2426 NSERR_CLASS_E_ERROR_MESSAGE string = "Class-E IPv4 and IPv6PT are mutually exclusive configs. Disable one to enable the other" NSERR_TUN_CIPROF_DEP_ERROR_CODE errorCode = 2427 NSERR_TUN_CIPROF_DEP_ERROR_MESSAGE string = "Cannot remove tunnel. A Content Inspection profile is depending on this tunnel" NSERR_FEA_NOT_SUPPORTED_ERROR_CODE errorCode = 2428 NSERR_FEA_NOT_SUPPORTED_ERROR_MESSAGE string = "Feature not supported on BLX/CPX" NSERR_HTTP_SSL_SAME_VALUE_ERROR_CODE errorCode = 2429 NSERR_HTTP_SSL_SAME_VALUE_ERROR_MESSAGE string = "HTTP and SSL cannot have same Management Port Value." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#netbridge-errors NSERR_TNL_NETBRIDGED_ERROR_CODE errorCode = 3920 NSERR_TNL_NETBRIDGED_ERROR_MESSAGE string = "Tunnel bound to netbridge" NSERR_TNL_GRE_ERROR_CODE errorCode = 3921 NSERR_TNL_GRE_ERROR_MESSAGE string = "Tunnel protocol is not GRE or GENEVE" NSERR_TNL_RIPMASK_ERROR_CODE errorCode = 3922 NSERR_TNL_RIPMASK_ERROR_MESSAGE string = "Remote IP mask of the tunnel should be 255.255.255.255" NSERR_VLAN_NETBRIDGED_ERROR_CODE errorCode = 3923 NSERR_VLAN_NETBRIDGED_ERROR_MESSAGE string = "Vlan already bound to some netbridge" NSERR_MAX_NETBRIDGE_TUNNEL_ERROR_CODE errorCode = 3924 NSERR_MAX_NETBRIDGE_TUNNEL_ERROR_MESSAGE string = "reached maximum netbridge tunnel bindings" NSERR_TUN_BOUND_ERROR_CODE errorCode = 3925 NSERR_TUN_BOUND_ERROR_MESSAGE string = "Tunnel already bound to this netbridge" NSERR_SUBNET_BOUND_ERROR_CODE errorCode = 3926 NSERR_SUBNET_BOUND_ERROR_MESSAGE string = "Subnet already bound to this netbridge" NSERR_TUN_CONF_NETBRIDGE_ERROR_CODE errorCode = 3927 NSERR_TUN_CONF_NETBRIDGE_ERROR_MESSAGE string = "Tunnel is not configured" NSERR_VLAN_CONF_NETBRIDGE_ERROR_CODE errorCode = 3928 NSERR_VLAN_CONF_NETBRIDGE_ERROR_MESSAGE string = "Vlan is not configured" NSERR_IP_INVAL_NETBRIDGE_ERROR_CODE errorCode = 3929 NSERR_IP_INVAL_NETBRIDGE_ERROR_MESSAGE string = "IP is not binded to netbridge" NSERR_IPV6_INVAL_NETBRIDGE_ERROR_CODE errorCode = 3930 NSERR_IPV6_INVAL_NETBRIDGE_ERROR_MESSAGE string = "IPV6 is not binded to netbridge" NSERR_INV_NETBRIDGE_NAME_ERROR_CODE errorCode = 3931 NSERR_INV_NETBRIDGE_NAME_ERROR_MESSAGE string = "Netbridge name should be >=1 and <=32" NSERR_GRE_IPSEC_LIP_NOT_GIVEN_ERROR_CODE errorCode = 3932 NSERR_GRE_IPSEC_LIP_NOT_GIVEN_ERROR_MESSAGE string = "Local ip address has to be given for GRE, IPSEC and broadcast VXLAN tunnels" NSERR_NETBRIDGE_TUNNELBOUNDTOPBR_ERROR_CODE errorCode = 3933 NSERR_NETBRIDGE_TUNNELBOUNDTOPBR_ERROR_MESSAGE string = "Tunnel is a nexthop for PBR" NSERR_NETBRIDGE_UNSUPPORTEDTUNNELPAYLOAD_ERROR_CODE errorCode = 3934 NSERR_NETBRIDGE_UNSUPPORTEDTUNNELPAYLOAD_ERROR_MESSAGE string = "GRE Payload should be ETHERNET or ETHERNETwithDOT1Q" NSERR_NETBRIDGE_ONEVLAN_ETHERNET_ERROR_CODE errorCode = 3935 NSERR_NETBRIDGE_ONEVLAN_ETHERNET_ERROR_MESSAGE string = "Only one VLAN can be bound when GRE carries plain ETHERNET" NSERR_NETBRIDGE_TUNNELPAYLOAD_DIFFERENT_ERROR_CODE errorCode = 851 NSERR_NETBRIDGE_TUNNELPAYLOAD_DIFFERENT_ERROR_MESSAGE string = "All bound tunnels should have same GRE payload" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#netprofile-errors NSERR_IPSET_REF_ERROR_CODE errorCode = 3952 NSERR_IPSET_REF_ERROR_MESSAGE string = "IP set must be unbound from netprofile before it can be removed" NSERR_NETPROFILE_REF_ERROR_CODE errorCode = 3953 NSERR_NETPROFILE_REF_ERROR_MESSAGE string = "Netprofile must be unbound before it can be removed" NSERR_IPSET_BOUND_ERROR_CODE errorCode = 3954 NSERR_IPSET_BOUND_ERROR_MESSAGE string = "IP set is already bound to the network profile" NSERR_NO_SUCH_IPSET_ERROR_CODE errorCode = 3955 NSERR_NO_SUCH_IPSET_ERROR_MESSAGE string = "IP set does not exist" NSERR_NO_SUCH_NETPROF_ERROR_CODE errorCode = 3956 NSERR_NO_SUCH_NETPROF_ERROR_MESSAGE string = "Netprofile does not exist" NSERR_OVERLAPPING_PORTRANGE_ERROR_CODE errorCode = 3558 NSERR_OVERLAPPING_PORTRANGE_ERROR_MESSAGE string = "This range is overlapping the existing portrange." NSERR_NO_SUCH_PORTRANGE_ERROR_CODE errorCode = 3559 NSERR_NO_SUCH_PORTRANGE_ERROR_MESSAGE string = "Port range does not exist" NSERR_NO_SUCH_NATRULE_ERROR_CODE errorCode = 3560 NSERR_NO_SUCH_NATRULE_ERROR_MESSAGE string = "natRule does not exist" NSERR_NATRULE_EXIST_ERROR_CODE errorCode = 3561 NSERR_NATRULE_EXIST_ERROR_MESSAGE string = "natrule already exist" NSERR_IP_VSERVER_IPSET_FREE_ERROR_ERROR_CODE errorCode = 3562 NSERR_IP_VSERVER_IPSET_FREE_ERROR_ERROR_MESSAGE string = "Freeing Listening services failed. Please check failure counters" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#nitro-errors NSERR_NITRO_INVALID_OBJECTNAME_ERROR_CODE errorCode = 1232 NSERR_NITRO_INVALID_OBJECTNAME_ERROR_MESSAGE string = "Invalid object name" NSERR_NITRO_INVALID_JSON_INPUT_ERROR_CODE errorCode = 1233 NSERR_NITRO_INVALID_JSON_INPUT_ERROR_MESSAGE string = "Invalid JSON input" NSERR_NITRO_INVALID_JSON_DATATYPE_ERROR_CODE errorCode = 1234 NSERR_NITRO_INVALID_JSON_DATATYPE_ERROR_MESSAGE string = "Invalid JSON data type" NSERR_NITRO_INVALID_XML_INPUT_ERROR_CODE errorCode = 1235 NSERR_NITRO_INVALID_XML_INPUT_ERROR_MESSAGE string = "Invalid XML input" NSERR_NITRO_INVALID_DATATYPE_ERROR_CODE errorCode = 1236 NSERR_NITRO_INVALID_DATATYPE_ERROR_MESSAGE string = "Invalid NITRO data type" NSERR_NITRO_INVALID_METHOD_ERROR_CODE errorCode = 1237 NSERR_NITRO_INVALID_METHOD_ERROR_MESSAGE string = "Invalid method name. It should be either post, put, get, stat or delete" NSERR_NITRO_PARSE_ERROR_ERROR_CODE errorCode = 1238 NSERR_NITRO_PARSE_ERROR_ERROR_MESSAGE string = "NITRO parse error" NSERR_NITRO_CMDEXEC_FAILED_ERROR_CODE errorCode = 1239 NSERR_NITRO_CMDEXEC_FAILED_ERROR_MESSAGE string = "NITRO command Execution failed" NSERR_NITRO_INVALID_ACTION_ERROR_CODE errorCode = 1240 NSERR_NITRO_INVALID_ACTION_ERROR_MESSAGE string = "Invalid nitro action or operation" NSERR_NITRO_ROLLBACK_FAILED_ERROR_CODE errorCode = 1241 NSERR_NITRO_ROLLBACK_FAILED_ERROR_MESSAGE string = "Rollback failed. Manually correct the configuration" NSERR_NITRO_ROLLBACK_NOT_SUPPORTED_ERROR_CODE errorCode = 1242 NSERR_NITRO_ROLLBACK_NOT_SUPPORTED_ERROR_MESSAGE string = "Rollback not supported for this action" NSERR_NITRO_BULK_FAILED_ERROR_CODE errorCode = 1243 NSERR_NITRO_BULK_FAILED_ERROR_MESSAGE string = "Bulk operation failed" NSERR_NITRO_BASIC_AUTH_DISABLED_ERROR_CODE errorCode = 1244 NSERR_NITRO_BASIC_AUTH_DISABLED_ERROR_MESSAGE string = "Authentication Failed: Use of Basic Authentication is Disabled." NSERR_NITRO_TECHSUPPORT_ARCHIVE_CREATION_FAILED_ERROR_CODE errorCode = 1246 NSERR_NITRO_TECHSUPPORT_ARCHIVE_CREATION_FAILED_ERROR_MESSAGE string = "Creation of techsupport collector archive failed." NSERR_NITRO_TECHSUPPORT_ARCHIVE_UPLOAD_FAILED_ERROR_CODE errorCode = 1247 NSERR_NITRO_TECHSUPPORT_ARCHIVE_UPLOAD_FAILED_ERROR_MESSAGE string = "Failed to upload the techsupport collector archive." NSERR_NSAPP_TEMPLATE_EXISTS_ERROR_CODE errorCode = 1248 NSERR_NSAPP_TEMPLATE_EXISTS_ERROR_MESSAGE string = "Template already exists" NSERR_NSAPP_INVALID_TEMPLATE_ERROR_CODE errorCode = 1249 NSERR_NSAPP_INVALID_TEMPLATE_ERROR_MESSAGE string = "Invalid Template" NSERR_NSAPP_DIR_ERROR_ERROR_CODE errorCode = 1250 NSERR_NSAPP_DIR_ERROR_ERROR_MESSAGE string = "Couldnot open directory" NSERR_NSAPP_FILE_ERROR_ERROR_CODE errorCode = 1251 NSERR_NSAPP_FILE_ERROR_ERROR_MESSAGE string = "Can not open the file" NSERR_NSAPP_INVALID_APP_INPUT_ERROR_CODE errorCode = 1252 NSERR_NSAPP_INVALID_APP_INPUT_ERROR_MESSAGE string = "Invalid Application input" NSERR_NSAPP_EXCEEDED_FILELENGTH_ERROR_CODE errorCode = 1253 NSERR_NSAPP_EXCEEDED_FILELENGTH_ERROR_MESSAGE string = "File length exceeded 256 characters" NSERR_NSAPP_ENDPOINT_INUSE_ERROR_CODE errorCode = 1254 NSERR_NSAPP_ENDPOINT_INUSE_ERROR_MESSAGE string = "Public endpoint in use" NSERR_NSAPP_PROTOCOL_MISMATCH_ERROR_CODE errorCode = 1255 NSERR_NSAPP_PROTOCOL_MISMATCH_ERROR_MESSAGE string = "Protocol mismatch with existing configuration" NSERR_NSAPP_INVALID_VARNAME_ERROR_CODE errorCode = 1256 NSERR_NSAPP_INVALID_VARNAME_ERROR_MESSAGE string = "Invalid variable name" NSERR_NSAPP_ZIP_FILE_ERROR_CODE errorCode = 1257 NSERR_NSAPP_ZIP_FILE_ERROR_MESSAGE string = "Error in zip format" NSERR_NSAPP_MAXEP_REACHED_ERROR_CODE errorCode = 1258 NSERR_NSAPP_MAXEP_REACHED_ERROR_MESSAGE string = "Only one endpoint can be configured" NSERR_NSAPP_NOT_EXIST_ERROR_CODE errorCode = 1259 NSERR_NSAPP_NOT_EXIST_ERROR_MESSAGE string = "Application does not exist" NSERR_NSAPP_INVALID_SERVICETYPE_ERROR_CODE errorCode = 1260 NSERR_NSAPP_INVALID_SERVICETYPE_ERROR_MESSAGE string = "Invalid servicetype - HTTP/HTTPS/SSL are only allowed" NSERR_NSAPP_TEMPLATE_FORMAT_ERROR_ERROR_CODE errorCode = 1261 NSERR_NSAPP_TEMPLATE_FORMAT_ERROR_ERROR_MESSAGE string = "Template format error" NSERR_NSAPP_APP_WITHOUT_APPUNITS_ERROR_CODE errorCode = 1262 NSERR_NSAPP_APP_WITHOUT_APPUNITS_ERROR_MESSAGE string = "Application without appunits can not be exported" NSERR_NSAPP_SERVICRGROUP_EXISTS_ERROR_CODE errorCode = 1263 NSERR_NSAPP_SERVICRGROUP_EXISTS_ERROR_MESSAGE string = "Service group with this name already exists" NSERR_NSAPP_VARIABLE_NOT_EXISTS_ERROR_CODE errorCode = 1264 NSERR_NSAPP_VARIABLE_NOT_EXISTS_ERROR_MESSAGE string = "Variables do not exist in this template file" NSERR_NITRO_CMD_NOTATTEMPTED_ERROR_CODE errorCode = 1265 NSERR_NITRO_CMD_NOTATTEMPTED_ERROR_MESSAGE string = "command not attempted for configuration" NSERR_NITRO_INVALIDREQ_ERROR_CODE errorCode = 1266 NSERR_NITRO_INVALIDREQ_ERROR_MESSAGE string = "Invalid nitro request" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#nnm-errors NSERR_NNM_FAILED_ERROR_CODE errorCode = 2528 NSERR_NNM_FAILED_ERROR_MESSAGE string = "General NNM failure" NSERR_NNM_CONN_CLEANED_ERROR_CODE errorCode = 2529 NSERR_NNM_CONN_CLEANED_ERROR_MESSAGE string = "NNM connection was cleaned" NSERR_NNM_CONN_FAILED_ERROR_CODE errorCode = 2530 NSERR_NNM_CONN_FAILED_ERROR_MESSAGE string = "NNM connection failed" NSERR_NNM_NO_CONN_ERROR_CODE errorCode = 2531 NSERR_NNM_NO_CONN_ERROR_MESSAGE string = "NNM connection was not found" NSERR_NNM_CONN_DROPPED_ERROR_CODE errorCode = 2532 NSERR_NNM_CONN_DROPPED_ERROR_MESSAGE string = "NNM connection dropped" NSERR_NNM_EINJECT_ERROR_CODE errorCode = 2533 NSERR_NNM_EINJECT_ERROR_MESSAGE string = "NNM error injection" NSERR_NNM_VERSION_UNSUPPORTED_ERROR_CODE errorCode = 2534 NSERR_NNM_VERSION_UNSUPPORTED_ERROR_MESSAGE string = "NNM group payload version is unsupported" NSERR_NNM_TIMEOUT_MSG_ERROR_CODE errorCode = 2535 NSERR_NNM_TIMEOUT_MSG_ERROR_MESSAGE string = "NNM timeout unable to send message" NSERR_NNM_TIMEOUT_ACK_ERROR_CODE errorCode = 2536 NSERR_NNM_TIMEOUT_ACK_ERROR_MESSAGE string = "NNM timeout waiting for ACK" NSERR_NNM_MCAST_ERROR_CODE errorCode = 2537 NSERR_NNM_MCAST_ERROR_MESSAGE string = "NNM multicast/broadcast failed" NSERR_NNM_PENDING_ERROR_CODE errorCode = 2538 NSERR_NNM_PENDING_ERROR_MESSAGE string = "NNM operation is in a pending state (e.g., ACK held)" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#nstrace-errors NSERR_ALREADY_RUNNING_ERROR_CODE errorCode = 3984 NSERR_ALREADY_RUNNING_ERROR_MESSAGE string = "One instance of nstrace is already running." NSERR_PKTSIZE_SMALL_ERROR_CODE errorCode = 3985 NSERR_PKTSIZE_SMALL_ERROR_MESSAGE string = "Packet size must be integer number between 60 - 1514. (0 for full packet trace)" NSERR_CANNOT_CLOSE_ERROR_CODE errorCode = 3986 NSERR_CANNOT_CLOSE_ERROR_MESSAGE string = "can not stop nstrace." NSERR_NSTRACE_PERNIC_WARN_ERROR_CODE errorCode = 2748 NSERR_NSTRACE_PERNIC_WARN_ERROR_MESSAGE string = "can not apply perNIC option with this trace format. Started nstrace without perNIC." NSERR_NSTRACE_INVALID_FILTER_ERROR_CODE errorCode = 4064 NSERR_NSTRACE_INVALID_FILTER_ERROR_MESSAGE string = "Invalid filter expression." NSERR_NSTRACE_SENSITIVE_WARN_ERROR_CODE errorCode = 2539 NSERR_NSTRACE_SENSITIVE_WARN_ERROR_MESSAGE string = "" /* 197-byte string literal not displayed */ NSERR_LOW_DISK_ERROR_CODE errorCode = 2560 NSERR_LOW_DISK_ERROR_MESSAGE string = "Critically low disk space. Please clear disk space under /var" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#partition-errors NSERR_MAX_PARTITION_ERROR_CODE errorCode = 2752 NSERR_MAX_PARTITION_ERROR_MESSAGE string = "Maximum allowed partition limit reached" NSERR_PARTITION_NAME_EXIST_ERROR_CODE errorCode = 2753 NSERR_PARTITION_NAME_EXIST_ERROR_MESSAGE string = "Partition name already exist" NSERR_NO_PARTITION_ERROR_CODE errorCode = 2755 NSERR_NO_PARTITION_ERROR_MESSAGE string = "Partition does not exist" NSERR_DEL_PARTITION_BUSY_ERROR_CODE errorCode = 2756 NSERR_DEL_PARTITION_BUSY_ERROR_MESSAGE string = "Partition is busy, can't delete" NSERR_DEL_PARTITION_INUSE_ERROR_CODE errorCode = 2757 NSERR_DEL_PARTITION_INUSE_ERROR_MESSAGE string = "Partition is in use, can't delete" NSERR_NO_DEL_DFLT_PARTITION_ERROR_CODE errorCode = 2758 NSERR_NO_DEL_DFLT_PARTITION_ERROR_MESSAGE string = "Default Partition can't be delete" NSERR_RM_PARTITION_CONFIRM_ERROR_CODE errorCode = 2759 NSERR_RM_PARTITION_CONFIRM_ERROR_MESSAGE string = "Are you sure you want to remove partition (Y/N)? [N]:" NSERR_NOT_SUPPORTFORPARTITION_ERROR_CODE errorCode = 2760 NSERR_NOT_SUPPORTFORPARTITION_ERROR_MESSAGE string = "This feature is not supported on partition" NSERR_AP_CONFIG_NOT_ALLOWED_ERROR_CODE errorCode = 2761 NSERR_AP_CONFIG_NOT_ALLOWED_ERROR_MESSAGE string = "This configuration option is not supported on non-default partition" NSERR_VLAN_BDGGRP_PARTITION_EXIST_ERROR_CODE errorCode = 2762 NSERR_VLAN_BDGGRP_PARTITION_EXIST_ERROR_MESSAGE string = "VLAN or VXLAN or BridgeGroup bound to a partition can not be deleted." NSERR_AP_DEFVLAN_ERROR_CODE errorCode = 2763 NSERR_AP_DEFVLAN_ERROR_MESSAGE string = "Default VLAN cannot be bound/unbound to/from a partition." NSERR_VLAN_BDGGRP_PARTITION_ERROR_CODE errorCode = 2764 NSERR_VLAN_BDGGRP_PARTITION_ERROR_MESSAGE string = "The specified VLAN or VXLAN or BridgeGroup is bound to other partition." NSERR_PQ_ARG_UNSUPPORTED_PARTITION_ERROR_CODE errorCode = 2765 NSERR_PQ_ARG_UNSUPPORTED_PARTITION_ERROR_MESSAGE string = "PQ feature is not supported in non-default partition." NSERR_SC_ARG_UNSUPPORTED_PARTITION_ERROR_CODE errorCode = 2766 NSERR_SC_ARG_UNSUPPORTED_PARTITION_ERROR_MESSAGE string = "SC feature is not supported in non-default partition." NSERR_MAX_PARTITIONS_ZEBOS_ERROR_CODE errorCode = 2767 NSERR_MAX_PARTITIONS_ZEBOS_ERROR_MESSAGE string = "Maximum allowed partition limit for routing reached" NSERR_AP_SYNCVLAN_ERROR_CODE errorCode = 2769 NSERR_AP_SYNCVLAN_ERROR_MESSAGE string = "SYNC VLAN cannot be bound/unbound to/from a partition." NSERR_AP_VLAN_BDG_EXIST_ERROR_CODE errorCode = 2770 NSERR_AP_VLAN_BDG_EXIST_ERROR_MESSAGE string = "The specified VLAN cannot be bound to a partition because it is bound to a bridge group." NSERR_AP_SDXMGMTVLAN_ERROR_CODE errorCode = 2771 NSERR_AP_SDXMGMTVLAN_ERROR_MESSAGE string = "The SDX management VLAN cannot be bound/unbound to/from a partition." NSERR_AP_DEFAULT_PARTITION_CONFIG_ERROR_CODE errorCode = 2772 NSERR_AP_DEFAULT_PARTITION_CONFIG_ERROR_MESSAGE string = "This configuration is allowed only from the default partition." NSERR_AP_MEM_DECR_ERROR_CODE errorCode = 2773 NSERR_AP_MEM_DECR_ERROR_MESSAGE string = "Partition's memory limit cannot be reduced less than currently used memory" NSERR_AP_MISMATCH_ERROR_CODE errorCode = 2774 NSERR_AP_MISMATCH_ERROR_MESSAGE string = "The specified entity is configured in some other partition." NSERR_AP_PVID_IF_NOT_ALLOWED_ERROR_CODE errorCode = 2775 NSERR_AP_PVID_IF_NOT_ALLOWED_ERROR_MESSAGE string = "The specified VLAN cannot be configured as untagged member of interface because it is bound to partition." NSERR_AP_VLAN_BINDING_NOT_ALLOWED_ERROR_CODE errorCode = 2776 NSERR_AP_VLAN_BINDING_NOT_ALLOWED_ERROR_MESSAGE string = "The specified VLAN cannot be bound to a partition because it is configured as untagged member of interface." NSERR_AP_NOT_SUPPORTFORSHAREDVLAN_ERROR_CODE errorCode = 2777 NSERR_AP_NOT_SUPPORTFORSHAREDVLAN_ERROR_MESSAGE string = "This feature is not supported on shared vlan." NSERR_AP_SHAREDVLAN_CONFIG_NOT_ALLOWED_INCLUSTER_ERROR_CODE errorCode = 2778 NSERR_AP_SHAREDVLAN_CONFIG_NOT_ALLOWED_INCLUSTER_ERROR_MESSAGE string = "Configuring vlan as shared is not supported on cluster." NSERR_AP_SHAREDVLAN_BDG_ERROR_CODE errorCode = 2779 NSERR_AP_SHAREDVLAN_BDG_ERROR_MESSAGE string = "Shared vlan cannot be bound/unbound to/from a bridge group." NSERR_AP_SHAREDVLAN_TD_ERROR_CODE errorCode = 2780 NSERR_AP_SHAREDVLAN_TD_ERROR_MESSAGE string = "Shared vlan cannot be bound/unbound to/from a Traffic domain." NSERR_AP_MCAST_PMAC_ERROR_CODE errorCode = 2781 NSERR_AP_MCAST_PMAC_ERROR_MESSAGE string = "Partition MAC address cannot have multicast bit set." NSERR_AP_VMAC_EXIST_ERROR_CODE errorCode = 2782 NSERR_AP_VMAC_EXIST_ERROR_MESSAGE string = "Another admin-partition with the same partition MAC address exist." NSERR_AP_VMAC_BUSY_ERROR_CODE errorCode = 2783 NSERR_AP_VMAC_BUSY_ERROR_MESSAGE string = "Partition's MAC address can not be unset when shared vlans are bound to it." NSERR_AP_XS_CONN_FAILED_ERROR_CODE errorCode = 2784 NSERR_AP_XS_CONN_FAILED_ERROR_MESSAGE string = "Unable to communicate with the XenStore." NSERR_AP_XS_NO_VMAC_ERROR_CODE errorCode = 2785 NSERR_AP_XS_NO_VMAC_ERROR_MESSAGE string = "No partition MAC address is configured for the VPX on SDX." NSERR_AP_XS_VMAC_NOTEXIST_ERROR_CODE errorCode = 2786 NSERR_AP_XS_VMAC_NOTEXIST_ERROR_MESSAGE string = "The specified partition MAC address is not configured for the VPX on SDX." NSERR_AP_XS_VMAC_EXHAUSTED_ERROR_CODE errorCode = 2787 NSERR_AP_XS_VMAC_EXHAUSTED_ERROR_MESSAGE string = "All partition MAC addresses configured for the VPX on SDX are in use." NSERR_AP_ARP_VLAN_NOT_SPECIFIED_ERROR_CODE errorCode = 2788 NSERR_AP_ARP_VLAN_NOT_SPECIFIED_ERROR_MESSAGE string = "VLAN must be specified while adding ARP entry within partition." NSERR_AP_SHAREDVLAN_PART_EXIST_ERROR_CODE errorCode = 2789 NSERR_AP_SHAREDVLAN_PART_EXIST_ERROR_MESSAGE string = "This VLAN already bound to the specified partition." NSERR_PARTITION_ID_EXIST_ERROR_CODE errorCode = 2790 NSERR_PARTITION_ID_EXIST_ERROR_MESSAGE string = "Partition-id is already in use by another partition." NSERR_SYNCNSVLAN_AP_ERROR_CODE errorCode = 2791 NSERR_SYNCNSVLAN_AP_ERROR_MESSAGE string = "VLAN bound to Admin Partition cannot be configured as SYNC/NS VLAN." NSERR_AP_NSVLAN_ERROR_CODE errorCode = 2792 NSERR_AP_NSVLAN_ERROR_MESSAGE string = "NSVLAN cannot be bound to Admin Partition." NSERR_VXLAN_VLAN_DIFF_PARTITION_ERROR_CODE errorCode = 2799 NSERR_VXLAN_VLAN_DIFF_PARTITION_ERROR_MESSAGE string = "VXLAN and VLAN belong to different partitions." NSERR_AP_VXLAN_TUNNEL_NOT_ALLOWED_ERROR_CODE errorCode = 2800 NSERR_AP_VXLAN_TUNNEL_NOT_ALLOWED_ERROR_MESSAGE string = "IPtunnel of type vxlan cannot be configured in non default partition" NSERR_VXLAN_CONFIG_INPART_ERROR_CODE errorCode = 2801 NSERR_VXLAN_CONFIG_INPART_ERROR_MESSAGE string = "This vxlan config not supported in non-default partition." NSERR_VXLAN_OTHER_PARTITION_ERROR_CODE errorCode = 2802 NSERR_VXLAN_OTHER_PARTITION_ERROR_MESSAGE string = "Specified vxlan is already bound to some other partition." NSERR_VXLAN_VLAN_BIND_ERROR_CODE errorCode = 2803 NSERR_VXLAN_VLAN_BIND_ERROR_MESSAGE string = "When vxlan extends vlan, these operations should be done on vlan" NSERR_VXLAN_IP_BINDING_CURPART_ERROR_CODE errorCode = 2804 NSERR_VXLAN_IP_BINDING_CURPART_ERROR_MESSAGE string = "IP binding to vxlan should be done in vxlan partition alone" NSERR_VXLAN_BOUNDTO_PARTITION_ERROR_CODE errorCode = 2805 NSERR_VXLAN_BOUNDTO_PARTITION_ERROR_MESSAGE string = "Specified vxlan is already bound to the partition." NSERR_DYNROUTING_PARTITION_ERROR_CODE errorCode = 2806 NSERR_DYNROUTING_PARTITION_ERROR_MESSAGE string = "Dynamic Routing should be enabled or disabled in vlan/vxlan partition" NSERR_AP_SHAREDVLAN_VXLAN_ERROR_CODE errorCode = 2807 NSERR_AP_SHAREDVLAN_VXLAN_ERROR_MESSAGE string = "Shared vlan cannot be bound/unbound to/from a vxlan." NSERR_AP_VLAN_VXLAN_EXIST_ERROR_CODE errorCode = 2808 NSERR_AP_VLAN_VXLAN_EXIST_ERROR_MESSAGE string = "The specified VLAN cannot be shared to a partition because it is extended by a vxlan ." NSERR_AP_STATIC_ARP_ND6_VXLAN_NOT_ALLOWED_ERROR_CODE errorCode = 2809 NSERR_AP_STATIC_ARP_ND6_VXLAN_NOT_ALLOWED_ERROR_MESSAGE string = "Static arp/nd6 entries cannot be added with vxlan in non default partition" NSERR_AP_MEM_MIN_LIMIT_ERROR_CODE errorCode = 2810 NSERR_AP_MEM_MIN_LIMIT_ERROR_MESSAGE string = "Partition's memory limit cannot be less than 5MB" NSERR_AP_BDGGRP_BINDING_NOT_ALLOWED_ERROR_CODE errorCode = 2811 NSERR_AP_BDGGRP_BINDING_NOT_ALLOWED_ERROR_MESSAGE string = "" /* 135-byte string literal not displayed */ NSERR_AP_NOT_LOCAL_ADMIN_PMAC_ERROR_CODE errorCode = 2812 NSERR_AP_NOT_LOCAL_ADMIN_PMAC_ERROR_MESSAGE string = "Local-admin bit must be set for Partition MAC address." NSERR_AP_NOMEM_ERROR_CODE errorCode = 2813 NSERR_AP_NOMEM_ERROR_MESSAGE string = "Cannot allocate memory. The total memory budgeted across all partitions will exceed the system capacity." NSERR_AP_SHAREDVLAN_ROUTING_NOT_ALLOWED_ERROR_CODE errorCode = 3035 NSERR_AP_SHAREDVLAN_ROUTING_NOT_ALLOWED_ERROR_MESSAGE string = "Dynamic routing not allowed on shared vlan in non default partition" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pbr-errors NSERR_PBR_NEXTHOP_NOTDIRECT_ERROR_CODE errorCode = 912 NSERR_PBR_NEXTHOP_NOTDIRECT_ERROR_MESSAGE string = "PBR Nexthop should be direct" NSERR_PBR_NOLOOPBACK_ERROR_CODE errorCode = 913 NSERR_PBR_NOLOOPBACK_ERROR_MESSAGE string = "PBR cannot be configured on the loopback interface" NSERR_PBRDELERROR_ERROR_CODE errorCode = 914 NSERR_PBRDELERROR_ERROR_MESSAGE string = "This PBR has already been removed" NSERR_PBR_IPPIP_EXISTS_ERROR_CODE errorCode = 915 NSERR_PBR_IPPIP_EXISTS_ERROR_MESSAGE string = "PBR with identical parameter specification already exists" NSERR_PBR_PRIORITY_EXISTS_ERROR_CODE errorCode = 916 NSERR_PBR_PRIORITY_EXISTS_ERROR_MESSAGE string = "PBR with this priority already exists" NSERR_PBRMODCFGINFO_ERROR_CODE errorCode = 918 NSERR_PBRMODCFGINFO_ERROR_MESSAGE string = "PBR modified, use 'apply pbrs' to commit this operation" NSERR_PBR_NEXTHOP_REQD_ERROR_CODE errorCode = 919 NSERR_PBR_NEXTHOP_REQD_ERROR_MESSAGE string = "PBR Nexthop is required" NSERR_PBR_L2_CONFIG_INFO_ERROR_CODE errorCode = 920 NSERR_PBR_L2_CONFIG_INFO_ERROR_MESSAGE string = "L2 based PBRs work only for routed traffic" NSERR_PBRMODCFG_L2_INFO_ERROR_CODE errorCode = 921 NSERR_PBRMODCFG_L2_INFO_ERROR_MESSAGE string = "L2 based PBRs work only for routed traffic: PBR modified, use 'apply pbrs' to commit this operation" NSERR_PBR_NO_MONITOR_GATEWAY_ERROR_CODE errorCode = 922 NSERR_PBR_NO_MONITOR_GATEWAY_ERROR_MESSAGE string = "Monitor can't be configured when nexthop is configured as gateway name" NSERR_PBR_INVALID_IPORGATEWAY_ERROR_CODE errorCode = 923 NSERR_PBR_INVALID_IPORGATEWAY_ERROR_MESSAGE string = "Invalid Nexthop IPaddress/Gateway name" NSERR_PBR_MAX_RULE_EXCEEDED_ERROR_CODE errorCode = 924 NSERR_PBR_MAX_RULE_EXCEEDED_ERROR_MESSAGE string = "Number of PBRs on the system exceeds Maximum" NSERR_PBR_NEXTHOP_TUNNEL_REQD_ERROR_CODE errorCode = 925 NSERR_PBR_NEXTHOP_TUNNEL_REQD_ERROR_MESSAGE string = "PBR Nexthop or IpTunnel is required" NSERR_PBR_DENY_MSR_ERROR_CODE errorCode = 926 NSERR_PBR_DENY_MSR_ERROR_MESSAGE string = "MSR cannot be enabled on PBR with DENY config" NSERR_ACL_MAC_MASK_INVALID_ERROR_CODE errorCode = 927 NSERR_ACL_MAC_MASK_INVALID_ERROR_MESSAGE string = "SrcMacMask should contain only 1/0s, use 0s for matching and 1s for not matching" NSERR_PBR_IPSEC_ALREADY_BOUND_ERROR_CODE errorCode = 1445 NSERR_PBR_IPSEC_ALREADY_BOUND_ERROR_MESSAGE string = "Use IKEv1 in IPSec profile. For IPSEC tunnels with IKEv2, Only one PBR is allowed to be bound to a tunnel" NSERR_PBR_REMOVED_ERROR_CODE errorCode = 1446 NSERR_PBR_REMOVED_ERROR_MESSAGE string = "PBR is removed" NSERR_PBR_L2PARAM_GRE_ERROR_CODE errorCode = 1456 NSERR_PBR_L2PARAM_GRE_ERROR_MESSAGE string = "PBR is having L2PARAM. Cannot have GRE as nexthop." NSERR_PBR_VXLAN_ERROR_CODE errorCode = 1457 NSERR_PBR_VXLAN_ERROR_MESSAGE string = "VXLAN cannot be a nexthop." NSERR_PBR_TUNNELBOUNDTONETBRIDGE_ERROR_CODE errorCode = 933 NSERR_PBR_TUNNELBOUNDTONETBRIDGE_ERROR_MESSAGE string = "Tunnel is already bound to Netbridge" NSERR_PBR_SETNEXTHOP_TUNNEL_ERROR_CODE errorCode = 1217 NSERR_PBR_SETNEXTHOP_TUNNEL_ERROR_MESSAGE string = "Tunnel is bound to PBR. Cannot set NextHop" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pbr6-errors NSERR_PBR6_IPPIP_EXISTS_ERROR_CODE errorCode = 880 NSERR_PBR6_IPPIP_EXISTS_ERROR_MESSAGE string = "PBR6 with identical parameter specification already exists" NSERR_PBR6_DELERROR_ERROR_CODE errorCode = 881 NSERR_PBR6_DELERROR_ERROR_MESSAGE string = "PBR6 has already been removed" NSERR_PBR6_ADDERROR_ERROR_CODE errorCode = 882 NSERR_PBR6_ADDERROR_ERROR_MESSAGE string = "Port can be specified only if protocol is TCP (6) or UDP (17)" NSERR_PBR6_PRIORITY_EXISTS_ERROR_CODE errorCode = 883 NSERR_PBR6_PRIORITY_EXISTS_ERROR_MESSAGE string = "PBR6 with this priority already exists" NSERR_PBR6_ICMP_REQD_ERROR_CODE errorCode = 884 NSERR_PBR6_ICMP_REQD_ERROR_MESSAGE string = "ICMPv6 type/code can be specified only if protocol is ICMPv6 (1)" NSERR_PBR6_UNSPECADDR_ERROR_CODE errorCode = 885 NSERR_PBR6_UNSPECADDR_ERROR_MESSAGE string = "unspecified address (::) can not be configured in PBR6" NSERR_PBR6_MODCFGINFO_ERROR_CODE errorCode = 886 NSERR_PBR6_MODCFGINFO_ERROR_MESSAGE string = "PBR6 modified, apply pbr6 to activate change" NSERR_PBR6_PREFIXLEN_ERROR_CODE errorCode = 887 NSERR_PBR6_PREFIXLEN_ERROR_MESSAGE string = "Prefix length should not be configured in PBR6. (Use range instead)" NSERR_PBR6_SPECIFY_NEXTHOPVLAN_ERROR_CODE errorCode = 888 NSERR_PBR6_SPECIFY_NEXTHOPVLAN_ERROR_MESSAGE string = "Nexthop VLAN should be specified with Link local gateway address" NSERR_PBR6_INVALID_GATEWAY_ERROR_CODE errorCode = 889 NSERR_PBR6_INVALID_GATEWAY_ERROR_MESSAGE string = "Invalid PBR6 Gateway" NSERR_PBR6_INVALID_NEXTHOP_VLAN_ERROR_CODE errorCode = 890 NSERR_PBR6_INVALID_NEXTHOP_VLAN_ERROR_MESSAGE string = "Invalid Nexthop VLAN ID" NSERR_PBR6_MAX_RULE_EXCEEDED_ERROR_CODE errorCode = 891 NSERR_PBR6_MAX_RULE_EXCEEDED_ERROR_MESSAGE string = "Number of PBR6s on the system exceeds Maximum" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pcp-errors NSERR_PCP_PROFILE_BOUND_ERROR_CODE errorCode = 3521 NSERR_PCP_PROFILE_BOUND_ERROR_MESSAGE string = "Cannot remove PCP Profile. To remove PCP profile, first unset it from PCP servers" NSERR_PCPPROFILE_NOT_EXIST_ERROR_CODE errorCode = 3522 NSERR_PCPPROFILE_NOT_EXIST_ERROR_MESSAGE string = "PCP profile does not exist, use 'show pcp profile' to check available pcp profiles" NSERR_LSNPCP_BINDING_EXIST_ERROR_CODE errorCode = 3523 NSERR_LSNPCP_BINDING_EXIST_ERROR_MESSAGE string = "Please unbind existing PCP server from lsn group" NSERR_PCPSERVER_NOT_EXIST_ERROR_CODE errorCode = 3524 NSERR_PCPSERVER_NOT_EXIST_ERROR_MESSAGE string = "PCP server does not exist, use 'show pcp server' to check available pcp servers" NSERR_PCPSERVER_BIND_EXIST_ERROR_CODE errorCode = 3525 NSERR_PCPSERVER_BIND_EXIST_ERROR_MESSAGE string = "Can not Remove PCP server. Please unbind pcp server from all bindings" NSERR_PCPSERVER_INVALID_IP_ERROR_CODE errorCode = 3526 NSERR_PCPSERVER_INVALID_IP_ERROR_MESSAGE string = "PCP Server IP Should be SNIP." NSERR_PCP_LIFE_TIME_ERROR_CODE errorCode = 3527 NSERR_PCP_LIFE_TIME_ERROR_MESSAGE string = "PCP Min life time is greater than Max life time." NSERR_PCPSERVER_LSNGROUP_TYPE_DIFF_ERROR_CODE errorCode = 3528 NSERR_PCPSERVER_LSNGROUP_TYPE_DIFF_ERROR_MESSAGE string = "PCP Server being bound is incompatible with the LSN group." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pi-errors NSERR_PI_LONGVSVRNAME_ERROR_CODE errorCode = 3040 NSERR_PI_LONGVSVRNAME_ERROR_MESSAGE string = "The name of the label must be less than 32 characters" NSERR_PI_PRIORITY_EXISTS_ERROR_CODE errorCode = 3041 NSERR_PI_PRIORITY_EXISTS_ERROR_MESSAGE string = "A policy is already bound to the specified priority" NSERR_PICON_GOTO_NOT_END_ERROR_CODE errorCode = 3042 NSERR_PICON_GOTO_NOT_END_ERROR_MESSAGE string = "GotoPriorityExpression for this policy has to be END" NSERR_INVAL_THRESHOLD_ERROR_CODE errorCode = 3043 NSERR_INVAL_THRESHOLD_ERROR_MESSAGE string = "Invalid threshold size value. Threshold size must be lesser than the sample size" NSERR_DEF_INVALID_UNBIND_ERROR_CODE errorCode = 3044 NSERR_DEF_INVALID_UNBIND_ERROR_MESSAGE string = "Default binding cannot be unbinded" NSERR_BAD_INIT_VALUE_ERROR_CODE errorCode = 3045 NSERR_BAD_INIT_VALUE_ERROR_MESSAGE string = "Invalid initial value" NSERR_INIT_VALUE_TOO_BIG_ERROR_CODE errorCode = 3046 NSERR_INIT_VALUE_TOO_BIG_ERROR_MESSAGE string = "Initial value is larger than the maximum allowed text length and the ifValueTooBig action is undef" NSERR_INIT_VALUE_TRUNCATED_ERROR_CODE errorCode = 3047 NSERR_INIT_VALUE_TRUNCATED_ERROR_MESSAGE string = "Initial value has been truncated to the maximum allowed text length because the ifValueTooBig action is truncate" NSERR_BAD_ASSIGN_LHS_ERROR_CODE errorCode = 3048 NSERR_BAD_ASSIGN_LHS_ERROR_MESSAGE string = "" /* 128-byte string literal not displayed */ NSERR_BAD_OP_FOR_TYPE_ERROR_CODE errorCode = 3049 NSERR_BAD_OP_FOR_TYPE_ERROR_MESSAGE string = "Op is not allowed for the variable type." NSERR_BAD_VAR_TYPE_ERROR_CODE errorCode = 3050 NSERR_BAD_VAR_TYPE_ERROR_MESSAGE string = "Invalid type: expected one of ulong, text, or map." NSERR_ASSIGNMENT_LOG_UNSUPPORTED_ERROR_CODE errorCode = 3051 NSERR_ASSIGNMENT_LOG_UNSUPPORTED_ERROR_MESSAGE string = "Log action is not supported with assignment action" NSERR_UNDEF_EXCEPTION_ERROR_CODE errorCode = 3052 NSERR_UNDEF_EXCEPTION_ERROR_MESSAGE string = "Undef exception raised." NSERR_NO_VARIABLE_VALUE_ERROR_CODE errorCode = 3053 NSERR_NO_VARIABLE_VALUE_ERROR_MESSAGE string = "No value exists for the variable and key." NSERR_UNSUPPORTED_VARIABLE_USE_ERROR_CODE errorCode = 3055 NSERR_UNSUPPORTED_VARIABLE_USE_ERROR_MESSAGE string = "Variables are not supported for use with DNS." NSERR_BAD_KEY_TYPE_ERROR_CODE errorCode = 3056 NSERR_BAD_KEY_TYPE_ERROR_MESSAGE string = "Invalid key type: expected type text" NSERR_BAD_SINGLETON_VAR_ERROR_CODE errorCode = 3057 NSERR_BAD_SINGLETON_VAR_ERROR_MESSAGE string = "Not a singleton variable" NSERR_BAD_MAP_VAR_ERROR_CODE errorCode = 3058 NSERR_BAD_MAP_VAR_ERROR_MESSAGE string = "Not a map variable" NSERR_UNKNOWN_VARIABLE_ERROR_CODE errorCode = 3059 NSERR_UNKNOWN_VARIABLE_ERROR_MESSAGE string = "Variable is not configured." NSERR_MAP_WITHOUT_KEY_ERROR_CODE errorCode = 3060 NSERR_MAP_WITHOUT_KEY_ERROR_MESSAGE string = "Map variable used without a key." NSERR_SINGLETON_WITH_KEY_ERROR_CODE errorCode = 3061 NSERR_SINGLETON_WITH_KEY_ERROR_MESSAGE string = "Singleton variable used with a key." NSERR_BAD_TEXT_MAX_LENGTH_ERROR_CODE errorCode = 3062 NSERR_BAD_TEXT_MAX_LENGTH_ERROR_MESSAGE string = "Invalid text type: expected text(max-length), where max-length is an unsigned integer >= 1 and <= 64000." NSERR_BAD_MAP_TYPE_SYNTAX_ERROR_CODE errorCode = 3063 NSERR_BAD_MAP_TYPE_SYNTAX_ERROR_MESSAGE string = "" /* 154-byte string literal not displayed */ NSERR_BAD_MAP_KEY_TYPE_ERROR_CODE errorCode = 3064 NSERR_BAD_MAP_KEY_TYPE_ERROR_MESSAGE string = "Map key type must be text." NSERR_BAD_MAP_VALUE_TYPE_ERROR_CODE errorCode = 3065 NSERR_BAD_MAP_VALUE_TYPE_ERROR_MESSAGE string = "Map value type must be ulong or text." NSERR_BAD_KEY_VALUE_LENGTH_ERROR_CODE errorCode = 3066 NSERR_BAD_KEY_VALUE_LENGTH_ERROR_MESSAGE string = "Sum of the maximum map key and value lengths must be <= 64000." NSERR_BAD_MAP_SET_TYPE_ERROR_CODE errorCode = 3067 NSERR_BAD_MAP_SET_TYPE_ERROR_MESSAGE string = "Invalid type parameter for set." NSERR_TRANSACTION_MAPS_NOT_SUPPORTED_ERROR_CODE errorCode = 3068 NSERR_TRANSACTION_MAPS_NOT_SUPPORTED_ERROR_MESSAGE string = "Maps with transaction scope are not supported." NSERR_TRANSACTION_EXPIRE_NOT_SUPPORTED_ERROR_CODE errorCode = 3070 NSERR_TRANSACTION_EXPIRE_NOT_SUPPORTED_ERROR_MESSAGE string = "Expiration with transaction scope variables is not supported." NSERR_INVOKE_NOT_SUPPORTED_ERROR_CODE errorCode = 3071 NSERR_INVOKE_NOT_SUPPORTED_ERROR_MESSAGE string = "Policy does not support invoke." NSERR_INVALPIEXPR_ERROR_CODE errorCode = 3073 NSERR_INVALPIEXPR_ERROR_MESSAGE string = "Invalid expression" NSERR_INVALINTOP_ERROR_CODE errorCode = 3074 NSERR_INVALINTOP_ERROR_MESSAGE string = "Expecting numeric arguments in this context for '-', '+', '*' or '/'" NSERR_INVALCOMPARE_ERROR_CODE errorCode = 3075 NSERR_INVALCOMPARE_ERROR_MESSAGE string = "Invalid arguments to compare operation" NSERR_INVALBOOLOP_ERROR_CODE errorCode = 3076 NSERR_INVALBOOLOP_ERROR_MESSAGE string = "The '!', '||' and ';;' operators can have only boolean argument(s)" NSERR_ARGNEG_ERROR_CODE errorCode = 3077 NSERR_ARGNEG_ERROR_MESSAGE string = "Argument cannot be negative" NSERR_ARGEXCEED_ERROR_CODE errorCode = 3078 NSERR_ARGEXCEED_ERROR_MESSAGE string = "Argument exceeds maximum allowed value" NSERR_ARGZERO_ERROR_CODE errorCode = 3079 NSERR_ARGZERO_ERROR_MESSAGE string = "Operand or function argument should be non-zero" NSERR_MAXHEADER_ERROR_CODE errorCode = 3080 NSERR_MAXHEADER_ERROR_MESSAGE string = "Number of custom header exceeds limit" NSERR_INVALPICEXPR_ERROR_CODE errorCode = 3081 NSERR_INVALPICEXPR_ERROR_MESSAGE string = "Expression syntax error" NSERR_CEXPRLIMIT_ERROR_CODE errorCode = 3082 NSERR_CEXPRLIMIT_ERROR_MESSAGE string = "Expression too long" NSERR_EXPRLIMIT_ERROR_CODE errorCode = 3083 NSERR_EXPRLIMIT_ERROR_MESSAGE string = "Expression too long" NSERR_SEXPRLIMIT_ERROR_CODE errorCode = 3084 NSERR_SEXPRLIMIT_ERROR_MESSAGE string = "String expression too long" NSERR_INVALPISEXPR_ERROR_CODE errorCode = 3085 NSERR_INVALPISEXPR_ERROR_MESSAGE string = "String expression syntax error" NSERR_NOBIDI_ERROR_CODE errorCode = 3086 NSERR_NOBIDI_ERROR_MESSAGE string = "Bi-directional expression not allowed" NSERR_NOLAB_ERROR_CODE errorCode = 3087 NSERR_NOLAB_ERROR_MESSAGE string = "Policy Label does not exist" NSERR_INTERNAL_LABEL_RM_ERROR_CODE errorCode = 3088 NSERR_INTERNAL_LABEL_RM_ERROR_MESSAGE string = "Default Policy labels cannot be removed" NSERR_POLICY_FLOWTYPE_NONE_ERROR_CODE errorCode = 3089 NSERR_POLICY_FLOWTYPE_NONE_ERROR_MESSAGE string = "Policy should either be a request or response policy" NSERR_INVAL_PRIORITY_ERROR_CODE errorCode = 3090 NSERR_INVAL_PRIORITY_ERROR_MESSAGE string = "Priority is mandatory for advanced expressions and should be in the range from 1 to 2147483647" NSERR_NUMERICEXPR_ERROR_CODE errorCode = 3091 NSERR_NUMERICEXPR_ERROR_MESSAGE string = "Expression should evaluate to numeric value" NSERR_BOOLEXPR_ERROR_CODE errorCode = 3092 NSERR_BOOLEXPR_ERROR_MESSAGE string = "Expression should evaluate to true or false" NSERR_NOTBOUND_ERROR_CODE errorCode = 3093 NSERR_NOTBOUND_ERROR_MESSAGE string = "Cannot unbind a policy that is not bound" NSERR_POLICY_INUSE_ERROR_CODE errorCode = 3094 NSERR_POLICY_INUSE_ERROR_MESSAGE string = "Policy name already in use" NSERR_POLICY_SET_NOTALLOWED_ERROR_CODE errorCode = 3095 NSERR_POLICY_SET_NOTALLOWED_ERROR_MESSAGE string = "Invalid rule/action for bound policy" NSERR_INVALID_BIND_ERROR_CODE errorCode = 3096 NSERR_INVALID_BIND_ERROR_MESSAGE string = "Policy cannot be bound to specified policy label" NSERR_USE_INVOKE_RESULT_ERROR_CODE errorCode = 3097 NSERR_USE_INVOKE_RESULT_ERROR_MESSAGE string = "USE_INVOCATION_RESULT can be used only with invoke" NSERR_INVAL_EXPR_DATA_TYPE_ERROR_CODE errorCode = 3098 NSERR_INVAL_EXPR_DATA_TYPE_ERROR_MESSAGE string = "Invalid expression data type" NSERR_EXPR_CONST_ONLY_ERROR_CODE errorCode = 3099 NSERR_EXPR_CONST_ONLY_ERROR_MESSAGE string = "Only constant parameters are allowed for function" NSERR_ALT_EXPR_STRING_ONLY_ERROR_CODE errorCode = 3100 NSERR_ALT_EXPR_STRING_ONLY_ERROR_MESSAGE string = "Only string expressions are allowed for ALT" NSERR_ACTION_DEF_SET_INVAL_ERROR_CODE errorCode = 3101 NSERR_ACTION_DEF_SET_INVAL_ERROR_MESSAGE string = "Default action cannot be modified" NSERR_POLICY_DEF_SET_INVAL_ERROR_CODE errorCode = 3102 NSERR_POLICY_DEF_SET_INVAL_ERROR_MESSAGE string = "Default policy cannot be modified" NSERR_POLICY_LABEL_DEF_SET_INVAL_ERROR_CODE errorCode = 3103 NSERR_POLICY_LABEL_DEF_SET_INVAL_ERROR_MESSAGE string = "Default policylabel cannot be modified" NSERR_INVAL_UNBIND_ERROR_CODE errorCode = 3104 NSERR_INVAL_UNBIND_ERROR_MESSAGE string = "Policy not bound to specified policy label" NSERR_REGEX_INVALID_ERROR_CODE errorCode = 3105 NSERR_REGEX_INVALID_ERROR_MESSAGE string = "Invalid regular expression" NSERR_REGEX_BACKREF_ERROR_CODE errorCode = 3106 NSERR_REGEX_BACKREF_ERROR_MESSAGE string = "Backreference in regular expression" NSERR_REGEX_RECURSIVE_ERROR_CODE errorCode = 3107 NSERR_REGEX_RECURSIVE_ERROR_MESSAGE string = "Recursive regular expression present" NSERR_PIXL_EXPR_UNSAFE_ERROR_CODE errorCode = 3108 NSERR_PIXL_EXPR_UNSAFE_ERROR_MESSAGE string = "Input expression is unsafe" NSERR_PI_ACTION_MAX_REF_REACHED_ERROR_CODE errorCode = 3109 NSERR_PI_ACTION_MAX_REF_REACHED_ERROR_MESSAGE string = "Cannot create policy. Binding limit for action reached (65536)" NSERR_PI_INVALID_UNSET_ERROR_CODE errorCode = 3110 NSERR_PI_INVALID_UNSET_ERROR_MESSAGE string = "Cannot unset rule or action. No changes done" NSERR_EMPTY_STRING_ERROR_CODE errorCode = 3111 NSERR_EMPTY_STRING_ERROR_MESSAGE string = "Zero length string not allowed" NSERR_INVAL_BTW_ARGS_ERROR_CODE errorCode = 3112 NSERR_INVAL_BTW_ARGS_ERROR_MESSAGE string = "Arguments to BETWEEN are incorrect" NSERR_INVAL_ARG_SPECIFIED_ERROR_CODE errorCode = 3113 NSERR_INVAL_ARG_SPECIFIED_ERROR_MESSAGE string = "GotoPriorityExpression, flowtype and invoke apply only to rewrite, responder and cache policies" NSERR_INVAL_ARG_CSPL_ERROR_CODE errorCode = 3854 NSERR_INVAL_ARG_CSPL_ERROR_MESSAGE string = "Target vserver cannot be specified along with GotoPriorityExpression and invoke." NSERR_FLOWTYPE_NOT_APPLICABLE_ERROR_CODE errorCode = 3114 NSERR_FLOWTYPE_NOT_APPLICABLE_ERROR_MESSAGE string = "Flowtype applies only to rewrite, responder and cache policies" NSERR_INVAL_ARG_SPECIFIED_CS_ERROR_CODE errorCode = 3115 NSERR_INVAL_ARG_SPECIFIED_CS_ERROR_MESSAGE string = "Flowtype and invoke apply only to Advanced policies." NSERR_INVAL_GOTOEXPR_CS_ERROR_CODE errorCode = 3116 NSERR_INVAL_GOTOEXPR_CS_ERROR_MESSAGE string = "GotoPriorityExpression applies only to Advanced policies" NSERR_REBIND_FAILED_ERROR_CODE errorCode = 3117 NSERR_REBIND_FAILED_ERROR_MESSAGE string = "Rebinding of policy with new bind parameters failed. The policy is unbound." NSERR_SECOND_BIND_ERROR_CODE errorCode = 3118 NSERR_SECOND_BIND_ERROR_MESSAGE string = "A policy can be bound only once" NSERR_NONHTTP_VS_ERROR_CODE errorCode = 3119 NSERR_NONHTTP_VS_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL/PROXY/HTTP_QUIC vserver" NSERR_PI_LEX_FAILURE_ERROR_CODE errorCode = 3344 NSERR_PI_LEX_FAILURE_ERROR_MESSAGE string = "Error in parsing" NSERR_PI_INVALIDNAME_ERROR_CODE errorCode = 3856 NSERR_PI_INVALIDNAME_ERROR_MESSAGE string = "" /* 197-byte string literal not displayed */ NSERR_PI_RST_CONN_ERROR_CODE errorCode = 3855 NSERR_PI_RST_CONN_ERROR_MESSAGE string = "Message processing reset connection" NSERR_PI_EXPR_CSMSG_ERROR_CODE errorCode = 3857 NSERR_PI_EXPR_CSMSG_ERROR_MESSAGE string = "Advanced expression cannot have client security message" NSERR_INVAL_XPATH_EXPR_ERROR_CODE errorCode = 3858 NSERR_INVAL_XPATH_EXPR_ERROR_MESSAGE string = "XPath Expression Compilation Failed" NSERR_XPATH_EXPR_NOT_SUPPORTED_ERROR_CODE errorCode = 3859 NSERR_XPATH_EXPR_NOT_SUPPORTED_ERROR_MESSAGE string = "Unsupported XPath" NSERR_TARGET_INVAL_ERROR_CODE errorCode = 3860 NSERR_TARGET_INVAL_ERROR_MESSAGE string = "Target Vserver cannot be specified for this policy" NSERR_NON_RESP_HTTP_VS_LIST_ERROR_CODE errorCode = 3861 NSERR_NON_RESP_HTTP_VS_LIST_ERROR_MESSAGE string = "" /* 168-byte string literal not displayed */ NSERR_INVAL_VSERVER_BIND_ERROR_CODE errorCode = 3862 NSERR_INVAL_VSERVER_BIND_ERROR_MESSAGE string = "Policy can be bound only to LB/CS vserver types" NSERR_APP_FREED_NSB_ERROR_CODE errorCode = 3863 NSERR_APP_FREED_NSB_ERROR_MESSAGE string = "Application reset/drop connection and freed nsb" NSERR_MULT_BIND_INVAL_ERROR_CODE errorCode = 3864 NSERR_MULT_BIND_INVAL_ERROR_MESSAGE string = "CVPN Policies cannot be bound to multiple entities" NSERR_CLASSIC_POLICY_ALREADY_BOUND_ERROR_CODE errorCode = 3865 NSERR_CLASSIC_POLICY_ALREADY_BOUND_ERROR_MESSAGE string = "Cannot bind an advanced policy to a virtual server to which a classic policy is already bound" NSERR_ADVANCED_POLICY_ALREADY_BOUND_ERROR_CODE errorCode = 3872 NSERR_ADVANCED_POLICY_ALREADY_BOUND_ERROR_MESSAGE string = "Cannot bind a classic policy to a virtual server to which an advanced policy is already bound" NSERR_MULT_UNBIND_ERROR_CODE errorCode = 3873 NSERR_MULT_UNBIND_ERROR_MESSAGE string = "Policy is bound to multiple global bindpoints. Please specify the appropriate bindpoint to unbind it." NSERR_UNKNOWN_CERTKEY_ERROR_CODE errorCode = 3874 NSERR_UNKNOWN_CERTKEY_ERROR_MESSAGE string = "The specified certkey object has not been configured" NSERR_NO_RSA_PUBLIC_KEY_ERROR_CODE errorCode = 3875 NSERR_NO_RSA_PUBLIC_KEY_ERROR_MESSAGE string = "The specified certkey object does not include a certificate with an RSA public key" NSERR_NO_RSA_PRIVATE_KEY_ERROR_CODE errorCode = 3876 NSERR_NO_RSA_PRIVATE_KEY_ERROR_MESSAGE string = "The specified certkey object does not include an RSA private key" NSERR_CERTKEY_NAME_TOO_LONG_ERROR_CODE errorCode = 3877 NSERR_CERTKEY_NAME_TOO_LONG_ERROR_MESSAGE string = "The certkey name exceeds the maximum 63 characters" NSERR_INVALID_UTF_8_ERROR_CODE errorCode = 3878 NSERR_INVALID_UTF_8_ERROR_MESSAGE string = "Invalid UTF-8 string" NSERR_UNRECOG_CHARSET_ERROR_CODE errorCode = 3879 NSERR_UNRECOG_CHARSET_ERROR_MESSAGE string = "Unrecognized character set" NSERR_INCOMPATIBLE_NAME_EXPR_CHANGE_ERROR_CODE errorCode = 3880 NSERR_INCOMPATIBLE_NAME_EXPR_CHANGE_ERROR_MESSAGE string = "Incompatible named expression change for in-use expression." NSERR_HEADER_EXPR_ONLY_ERROR_CODE errorCode = 3881 NSERR_HEADER_EXPR_ONLY_ERROR_MESSAGE string = "Only classic expressions for headers allowed in EVAL_CLASSIC_EXPR" NSERR_RW_NOT_SUPPORTED_VS_ERROR_CODE errorCode = 3904 NSERR_RW_NOT_SUPPORTED_VS_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL/HTTP_QUIC/TCP/SSL_TCP/DIAMETER/SSL_DIAMTER/SIP_UDP/RADIUS/PROXY vserver" NSERR_INVALID_KEYVALUE_ERROR_CODE errorCode = 3905 NSERR_INVALID_KEYVALUE_ERROR_MESSAGE string = "The keyvalue argument is incorrect." NSERR_INVALID_RESOURCE_NAME_ERROR_CODE errorCode = 3906 NSERR_INVALID_RESOURCE_NAME_ERROR_MESSAGE string = "Resource of the given name does not exist" NSERR_INVALID_ACTION_ERROR_CODE errorCode = 3907 NSERR_INVALID_ACTION_ERROR_MESSAGE string = "Invalid action" NSERR_INVALID_ENUM_VALUE_ERROR_CODE errorCode = 3909 NSERR_INVALID_ENUM_VALUE_ERROR_MESSAGE string = "Invalid enumeration value" NSERR_INVALID_BINDPOINT_ERROR_CODE errorCode = 3910 NSERR_INVALID_BINDPOINT_ERROR_MESSAGE string = "Invalid bind point." NSERR_NO_FIPS_FOR_POLICY_CRYPTO_ERROR_CODE errorCode = 3911 NSERR_NO_FIPS_FOR_POLICY_CRYPTO_ERROR_MESSAGE string = "A FIPS key cannot be used for policy crypto functions." NSERR_NO_CONFIGDB_DATA_SELECTED_ERROR_CODE errorCode = 3912 NSERR_NO_CONFIGDB_DATA_SELECTED_ERROR_MESSAGE string = "No data selected from the configuration database." NSERR_HEADER_NAME_LENGTH_LIMIT_ERROR_CODE errorCode = 3913 NSERR_HEADER_NAME_LENGTH_LIMIT_ERROR_MESSAGE string = "Custom header name is too long." NSERR_UNSUPPORTED_CVPN_SEARCH_ERROR_CODE errorCode = 3914 NSERR_UNSUPPORTED_CVPN_SEARCH_ERROR_MESSAGE string = "Patset, dataset, and xpath not supported for clientless VPN search." NSERR_INVALID_HEADER_NAME_ERROR_CODE errorCode = 3915 NSERR_INVALID_HEADER_NAME_ERROR_MESSAGE string = "" /* 220-byte string literal not displayed */ NSERR_HEADER_NAME_TOO_LONG_ERROR_CODE errorCode = 3916 NSERR_HEADER_NAME_TOO_LONG_ERROR_MESSAGE string = "Header name is too long (maximum of 32 characters allowed)." NSERR_CSACTION_NOT_SUPPORTED_ERROR_CODE errorCode = 3918 NSERR_CSACTION_NOT_SUPPORTED_ERROR_MESSAGE string = "Content Switching actions are not suported for classic content switching policies." NSERR_PI_EXPR_TOO_BIG_ERROR_CODE errorCode = 3919 NSERR_PI_EXPR_TOO_BIG_ERROR_MESSAGE string = "Expression too long - maximum length is 8191" NSERR_PI_INVALID_FUNCTION_NAME_ERROR_CODE errorCode = 3946 NSERR_PI_INVALID_FUNCTION_NAME_ERROR_MESSAGE string = "Cannot use Advanced Expression reserved word as a function name." NSERR_PI_FUNCTION_NAME_EXISTS_ERROR_CODE errorCode = 3947 NSERR_PI_FUNCTION_NAME_EXISTS_ERROR_MESSAGE string = "Function with the same name already exists." NSERR_EXTENSION_INVALID_UPDATE_NAME_ERROR_CODE errorCode = 3948 NSERR_EXTENSION_INVALID_UPDATE_NAME_ERROR_MESSAGE string = "Add the extension before updating." NSERR_PI_INVALID_EXTENSION_NAME_ERROR_CODE errorCode = 3949 NSERR_PI_INVALID_EXTENSION_NAME_ERROR_MESSAGE string = "Extension is not added." NSERR_EXTENSION_FUNCTION_PROTOTYPE_CHANGED_ERROR_CODE errorCode = 3950 NSERR_EXTENSION_FUNCTION_PROTOTYPE_CHANGED_ERROR_MESSAGE string = "Extension has different prototype of a function than that which is in use." NSERR_EXTENSION_FUNCTION_UPDATE_PROBLEM_ERROR_CODE errorCode = 3951 NSERR_EXTENSION_FUNCTION_UPDATE_PROBLEM_ERROR_MESSAGE string = "Problem in updating function that is in use." NSERR_EXTENSION_COMPILE_FAILURE_ERROR_CODE errorCode = 3962 NSERR_EXTENSION_COMPILE_FAILURE_ERROR_MESSAGE string = "Extension compilation error." NSERR_EXTENSION_LOAD_FAILURE_ERROR_CODE errorCode = 3963 NSERR_EXTENSION_LOAD_FAILURE_ERROR_MESSAGE string = "Extension loading error." NSERR_PI_USED_FUNCTION_REMOVED_ERROR_CODE errorCode = 3964 NSERR_PI_USED_FUNCTION_REMOVED_ERROR_MESSAGE string = "Update attempted to remove a function that is in use." NSERR_EXTENSION_FUNCTION_MULTIPLE_DEFINITIONS_ERROR_CODE errorCode = 3965 NSERR_EXTENSION_FUNCTION_MULTIPLE_DEFINITIONS_ERROR_MESSAGE string = "Extension has multiple definitions of a function." NSERR_EXTENSION_INVALID_FUNCTION_PROTOTYPE_ERROR_CODE errorCode = 3966 NSERR_EXTENSION_INVALID_FUNCTION_PROTOTYPE_ERROR_MESSAGE string = "Extension function's prototype is invalid." NSERR_EXTENSION_MAX_FUNCTION_ARGUMENT_ERROR_CODE errorCode = 3967 NSERR_EXTENSION_MAX_FUNCTION_ARGUMENT_ERROR_MESSAGE string = "Maximum number of function arguments can be 3." NSERR_BAD_EXTENSION_TRACE_NAME_ERROR_CODE errorCode = 4038 NSERR_BAD_EXTENSION_TRACE_NAME_ERROR_MESSAGE string = "Function or variable name can contain only alphanumerics and underscores and cannot begin with a digit." NSERR_BAD_EXTENSION_TRACE_ARRAYS_ERROR_CODE errorCode = 3024 NSERR_BAD_EXTENSION_TRACE_ARRAYS_ERROR_MESSAGE string = "traceFunctions or traceVariables cannot be specified with trace off." NSERR_PI_INVALID_GLOBAL_BINDTYPE_ERROR_CODE errorCode = 3828 NSERR_PI_INVALID_GLOBAL_BINDTYPE_ERROR_MESSAGE string = "Invalid global bindtype." NSERR_INVALID_POLICY_GLOBAL_BINDING_ERROR_CODE errorCode = 3829 NSERR_INVALID_POLICY_GLOBAL_BINDING_ERROR_MESSAGE string = "Policy cannot be bound/unbound to/from the given global bindtype." NSERR_INVALID_PI_ANNOTATE_ERROR_CODE errorCode = 1465 NSERR_INVALID_PI_ANNOTATE_ERROR_MESSAGE string = "Invalid Advanced Expression annotation value" NSERR_INVALID_PI_ANNOTATE_LOGINSCHEMA_ERROR_CODE errorCode = 1466 NSERR_INVALID_PI_ANNOTATE_LOGINSCHEMA_ERROR_MESSAGE string = "Invalid loginSchema corresponding to Advanced Expression annotation value" NSERR_ANGLE_BRACKETS_IN_TAGNAME_ERROR_CODE errorCode = 3830 NSERR_ANGLE_BRACKETS_IN_TAGNAME_ERROR_MESSAGE string = "Invalid syntax, angle brackets in tag specified" NSERR_INVALID_ENCRYPTION_KEY_ARGUMENT_ERROR_CODE errorCode = 3831 NSERR_INVALID_ENCRYPTION_KEY_ARGUMENT_ERROR_MESSAGE string = "Invalid encryptionKey argument" NSERR_INVALID_HMAC_KEY_ARGUMENT_ERROR_CODE errorCode = 3832 NSERR_INVALID_HMAC_KEY_ARGUMENT_ERROR_MESSAGE string = "Invalid hmacKey argument" NSERR_ENCRYPTION_KEY_NOTPRESENT_ERROR_CODE errorCode = 3833 NSERR_ENCRYPTION_KEY_NOTPRESENT_ERROR_MESSAGE string = "Encryption key does not exist." NSERR_HMAC_KEY_NOTPRESENT_ERROR_CODE errorCode = 3834 NSERR_HMAC_KEY_NOTPRESENT_ERROR_MESSAGE string = "HMAC key does not exist." NSERR_WARN_SHORT_HMAC_KEY_ERROR_CODE errorCode = 3835 NSERR_WARN_SHORT_HMAC_KEY_ERROR_MESSAGE string = "Recommend that the HMAC keyValue be at least as long as the digest blocksize" NSERR_MULT_TYPE_UNBIND_ERROR_CODE errorCode = 3836 NSERR_MULT_TYPE_UNBIND_ERROR_MESSAGE string = "Policy is bound to multiple bindpoints. Please specify the appropriate bindpoint to unbind it." NSERR_EMPTY_CERTKEY_ERROR_CODE errorCode = 3837 NSERR_EMPTY_CERTKEY_ERROR_MESSAGE string = "The specified certkey name is empty or NULL." NSERR_NON_SSL_HTTP_VS_ERROR_CODE errorCode = 3838 NSERR_NON_SSL_HTTP_VS_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL vserver" NSERR_EXTENSION_HAS_GENERIC_MBLB_API_NOT_FUNCTION_API_ERROR_CODE errorCode = 3839 NSERR_EXTENSION_HAS_GENERIC_MBLB_API_NOT_FUNCTION_API_ERROR_MESSAGE string = "Extension code already used for an Advanced Expression extension function cannot be used for a user protocol implementation." NSERR_EXTENSION_HAS_FUNCTION_API_NOT_GENERIC_MBLB_API_ERROR_CODE errorCode = 3424 NSERR_EXTENSION_HAS_FUNCTION_API_NOT_GENERIC_MBLB_API_ERROR_MESSAGE string = "Extension code already used for a user protocol implementation cannot be used for an Advanced Expression extension function." NSERR_EXTENSION_INCORRECT_USER_PARAM_VALUE_ERROR_CODE errorCode = 3435 NSERR_EXTENSION_INCORRECT_USER_PARAM_VALUE_ERROR_MESSAGE string = "Incorrect parameter field's value. Value should be in = format." NSERR_EXTENSION_USER_PROTOCOL_IN_USE_ERROR_CODE errorCode = 1502 NSERR_EXTENSION_USER_PROTOCOL_IN_USE_ERROR_MESSAGE string = "Can't update the extension as the user protocol using this extension is in use" NSERR_USER_VSERVER_EXCEED_PARAM_NAME_VALUE_LENGTH_ERROR_CODE errorCode = 1503 NSERR_USER_VSERVER_EXCEED_PARAM_NAME_VALUE_LENGTH_ERROR_MESSAGE string = "Parameter's name or value length exceeds maximum allowed length of 63 characters" NSERR_USER_VSERVER_INVALID_DEFAULT_LB_PROTOCOL_TYPE_ERROR_CODE errorCode = 2832 NSERR_USER_VSERVER_INVALID_DEFAULT_LB_PROTOCOL_TYPE_ERROR_MESSAGE string = "Default Load Balancing virtual server's protocol type should be a user type." NSERR_USER_VSERVER_DIFFERENT_TRANSPORT_DEFAULT_LB_PROTOCOL_TYPE_ERROR_CODE errorCode = 2831 NSERR_USER_VSERVER_DIFFERENT_TRANSPORT_DEFAULT_LB_PROTOCOL_TYPE_ERROR_MESSAGE string = "Transport type and default Load Balanocing virtual server's protocol type are not compatible." NSERR_INTERIM_UPDATE_SUPPORT_IN_RADIUS_ONLY_ERROR_CODE errorCode = 3436 NSERR_INTERIM_UPDATE_SUPPORT_IN_RADIUS_ONLY_ERROR_MESSAGE string = "Treat Radius Interim message as Start message is only supported in Radius-Only mode." NSERR_WARN_VAR_SET_INIT_ERROR_CODE errorCode = 3437 NSERR_WARN_VAR_SET_INIT_ERROR_MESSAGE string = "Set of the init parameter will not affect existing variable values." NSERR_CI_UNSUPPORTED_VS_ERROR_CODE errorCode = 3454 NSERR_CI_UNSUPPORTED_VS_ERROR_MESSAGE string = "" /* 126-byte string literal not displayed */ NSERR_CI_ICAP_FLOWTYPE_MISMATCH_ERROR_CODE errorCode = 3470 NSERR_CI_ICAP_FLOWTYPE_MISMATCH_ERROR_MESSAGE string = "This Content Inspection policy's ICAP action is incompatible with the specified bindpoint" NSERR_INVALID_POLICY_BINDING_ERROR_CODE errorCode = 3438 NSERR_INVALID_POLICY_BINDING_ERROR_MESSAGE string = "Policy cannot be bound/unbound to/from this vserver for the given bindtype." NSERR_HTTP_REQ_USER_DEPRECATED_ERROR_CODE errorCode = 3456 NSERR_HTTP_REQ_USER_DEPRECATED_ERROR_MESSAGE string = "HTTP.REQ.USER has been deprecated. Use AAA.USER instead." NSERR_ASSIGN_CONTEXT_PCB_NOT_PRESENT_ERROR_CODE errorCode = 3471 NSERR_ASSIGN_CONTEXT_PCB_NOT_PRESENT_ERROR_MESSAGE string = "Assignment attempted when not in a connection context." NSERR_SELFAUTH_DEPRECATED_ERROR_CODE errorCode = 3481 NSERR_SELFAUTH_DEPRECATED_ERROR_MESSAGE string = "Selfauth as ssotype has been deprecated." NSERR_RHS_TARGET_REQUIRED_ERROR_CODE errorCode = 3482 NSERR_RHS_TARGET_REQUIRED_ERROR_MESSAGE string = "" /* 132-byte string literal not displayed */ NSERR_AAA_GRP_AS_XML_DEPRECATED_ERROR_CODE errorCode = 3483 NSERR_AAA_GRP_AS_XML_DEPRECATED_ERROR_MESSAGE string = "GROUPS_AS_XML has been deprecated. Use AAA.USER.GROUPS instead." NSERR_REDIRECT_URL_SAML_ERROR_CODE errorCode = 3484 NSERR_REDIRECT_URL_SAML_ERROR_MESSAGE string = "" /* 142-byte string literal not displayed */ NSERR_CI_IPS_FLOWTYPE_MISMATCH_ERROR_CODE errorCode = 3486 NSERR_CI_IPS_FLOWTYPE_MISMATCH_ERROR_MESSAGE string = "Policy's action is incompatable with specified bindpoint or flow type" NSERR_SAML_ACT_CONF_ISSUE_ERROR_CODE errorCode = 3487 NSERR_SAML_ACT_CONF_ISSUE_ERROR_MESSAGE string = "Saml configuration failure as samlIdPCertName/samlRedirectUrl present when meatadataURL is provided" NSERR_PATFILE_REF_EXIST_ERROR_CODE errorCode = 1964 NSERR_PATFILE_REF_EXIST_ERROR_MESSAGE string = "The specified patset file is already associated with a patset/dataset" NSERR_PATSET_PATSETFILE_REFERENCE_ERROR_CODE errorCode = 2033 NSERR_PATSET_PATSETFILE_REFERENCE_ERROR_MESSAGE string = "Cannot bind/unbind patterns for a patset/dataset with patsetfile association" NSERR_INVAL_LB_VSERVER_BIND_ERROR_CODE errorCode = 2288 NSERR_INVAL_LB_VSERVER_BIND_ERROR_MESSAGE string = "Policy can be bound only to LB/GSLB vserver types" NSERR_INVALID_UNBINDPOINT_ERROR_CODE errorCode = 2294 NSERR_INVALID_UNBINDPOINT_ERROR_MESSAGE string = "Invalid flowtype for unbind" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pol-errors NSERR_INVALIDPOL_ERROR_CODE errorCode = 2053 NSERR_INVALIDPOL_ERROR_MESSAGE string = "Binding invalid policy" NSERR_NOPOL_ERROR_CODE errorCode = 2054 NSERR_NOPOL_ERROR_MESSAGE string = "No such policy exists" NSERR_RULEURL_ERROR_CODE errorCode = 2055 NSERR_RULEURL_ERROR_MESSAGE string = "Rule or URL required" NSERR_DELMC_ERROR_CODE errorCode = 2056 NSERR_DELMC_ERROR_MESSAGE string = "Delay or maxConn argument required" NSERR_ACP_ERROR_CODE errorCode = 2057 NSERR_ACP_ERROR_MESSAGE string = "Alternate content path not required" NSERR_ACS_ERROR_CODE errorCode = 2058 NSERR_ACS_ERROR_MESSAGE string = "Alternate content service not required" NSERR_NOSET_CEXP_ERROR_CODE errorCode = 2059 NSERR_NOSET_CEXP_ERROR_MESSAGE string = "No support to set compound expression value" NSERR_CEXP_DEPTH_ERROR_CODE errorCode = 2060 NSERR_CEXP_DEPTH_ERROR_MESSAGE string = "Maximum recursive depth reached" NSERR_NOVPNAPP_ERROR_CODE errorCode = 2061 NSERR_NOVPNAPP_ERROR_MESSAGE string = "No such intranet application exists" NSERR_NOSET_CSE_ERROR_CODE errorCode = 2062 NSERR_NOSET_CSE_ERROR_MESSAGE string = "Changing rule to/from client security expression is not allowed when policy is in use" NSERR_INVAL_POLNAME_ERROR_CODE errorCode = 2063 NSERR_INVAL_POLNAME_ERROR_MESSAGE string = "Invalid policy Name" NSERR_UNBIND_INVALIDPOL_ERROR_CODE errorCode = 2097 NSERR_UNBIND_INVALIDPOL_ERROR_MESSAGE string = "Policy not bound" NSERR_EXCEED_MAX_POL_LIMIT_ERROR_CODE errorCode = 2098 NSERR_EXCEED_MAX_POL_LIMIT_ERROR_MESSAGE string = "32 authentication policies are already bound" NSERR_INTERNAL_PI_ERROR_ERROR_CODE errorCode = 2103 NSERR_INTERNAL_PI_ERROR_ERROR_MESSAGE string = "Internal policy error" NSERR_NEG_POL_VIOL1_ERROR_CODE errorCode = 2104 NSERR_NEG_POL_VIOL1_ERROR_MESSAGE string = "Only negotiate and certificate policies can be bound together" NSERR_NEG_POL_VIOL2_ERROR_CODE errorCode = 2105 NSERR_NEG_POL_VIOL2_ERROR_MESSAGE string = "Negotiate policy in primary can be bound only along with ldap policy (with authentication turned off) in secondary" NSERR_NEG_POL_VIOL3_ERROR_CODE errorCode = 2106 NSERR_NEG_POL_VIOL3_ERROR_MESSAGE string = "Negotiate policy in secondary can be bound only along with certificate policy in primary" NSERR_SAML_POL_VIOL1_ERROR_CODE errorCode = 2122 NSERR_SAML_POL_VIOL1_ERROR_MESSAGE string = "SAML policy can only be the last in the cascade or the only one in the cascade" NSERR_SAML_POL_VIOL2_ERROR_CODE errorCode = 2123 NSERR_SAML_POL_VIOL2_ERROR_MESSAGE string = "SAML policy in primary can be bound only along with ldap policy (with authentication turned off) in secondary" NSERR_SAML_POL_VIOL3_ERROR_CODE errorCode = 2124 NSERR_SAML_POL_VIOL3_ERROR_MESSAGE string = "SAML policy cannot be bound to secondary cascade" NSERR_SAML_DISABLED_ERROR_CODE errorCode = 2125 NSERR_SAML_DISABLED_ERROR_MESSAGE string = "SAML policy binding is disabled" NSERR_LDAP_POL_VIOL1_ERROR_CODE errorCode = 2088 NSERR_LDAP_POL_VIOL1_ERROR_MESSAGE string = "Only LDAP policies may be bound for group extraction." NSERR_LDAP_POL_VIOL2_ERROR_CODE errorCode = 2089 NSERR_LDAP_POL_VIOL2_ERROR_MESSAGE string = "An LDAP policy bound for group extraction must set -authentication DISABLED." NSERR_NON_SELECTOR_POLICY_ERROR_CODE errorCode = 2107 NSERR_NON_SELECTOR_POLICY_ERROR_MESSAGE string = "Only selector based policies can be bound to sql vserver" NSERR_BAD_SELECTOR_ERROR_CODE errorCode = 2108 NSERR_BAD_SELECTOR_ERROR_MESSAGE string = "Selector does not match content group type" NSERR_BAD_CONTENTGROUP_ERROR_CODE errorCode = 2109 NSERR_BAD_CONTENTGROUP_ERROR_MESSAGE string = "Contentgroup not compatible" NSERR_SQL_POL_GLOBAL_BINDPOINT_ERROR_CODE errorCode = 2110 NSERR_SQL_POL_GLOBAL_BINDPOINT_ERROR_MESSAGE string = "Datastream cache policies cannot have global/override bindpoint" NSERR_APPQOE_INVALID_ACP_ERROR_CODE errorCode = 2111 NSERR_APPQOE_INVALID_ACP_ERROR_MESSAGE string = "Alternate content path is invalid" NSERR_APPQOE_CLTRATE_ERROR_CODE errorCode = 2086 NSERR_APPQOE_CLTRATE_ERROR_MESSAGE string = "Client detect rate is not required" NSERR_APPQOE_DOSTHRESH_NREQ_ERROR_CODE errorCode = 2087 NSERR_APPQOE_DOSTHRESH_NREQ_ERROR_MESSAGE string = "DoS attack threshold is not required" NSERR_APPQOE_DOSTHRESH_REQ_ERROR_CODE errorCode = 2090 NSERR_APPQOE_DOSTHRESH_REQ_ERROR_MESSAGE string = "DoS attack threshold is required" NSERR_APPQOE_ACS_REQ_ERROR_CODE errorCode = 2091 NSERR_APPQOE_ACS_REQ_ERROR_MESSAGE string = "Alternate content service is required" NSERR_APPQOE_ACP_REQ_ERROR_CODE errorCode = 2092 NSERR_APPQOE_ACP_REQ_ERROR_MESSAGE string = "Alternate content path is required with alternate content service" NSERR_APPQOE_VSVR_CONFIG_CONFLICT_ERROR_CODE errorCode = 2094 NSERR_APPQOE_VSVR_CONFIG_CONFLICT_ERROR_MESSAGE string = "AppQoE policy cannot be bound to vserver configured for PQ/SC" NSERR_APPQOE_SVC_CONFIG_CONFLICT_ERROR_CODE errorCode = 2095 NSERR_APPQOE_SVC_CONFIG_CONFLICT_ERROR_MESSAGE string = "AppQoE policy cannot be bound to vserver with services configured for SC/HDOSP" NSERR_APPQOE_UNSUPPORTED_PROTO_ERROR_CODE errorCode = 2142 NSERR_APPQOE_UNSUPPORTED_PROTO_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL/HTTP_QUIC vserver" NSERR_APPQOE_UNSUPPORTED_VSVR_ERROR_CODE errorCode = 2143 NSERR_APPQOE_UNSUPPORTED_VSVR_ERROR_MESSAGE string = "Specified policy can be bound only to LB vserver types" NSERR_CLASSIC_POLICY_INVALID_ARG_ERROR_CODE errorCode = 2145 NSERR_CLASSIC_POLICY_INVALID_ARG_ERROR_MESSAGE string = "Invalid arguments for classic policy binding" NSERR_AUTHN_ADVANCE_INVALID_ARG_ERROR_CODE errorCode = 2146 NSERR_AUTHN_ADVANCE_INVALID_ARG_ERROR_MESSAGE string = "Invalid arguments for advanced authentication policy binding" NSERR_RENAME_NOT_PERMITTED_ERROR_CODE errorCode = 2147 NSERR_RENAME_NOT_PERMITTED_ERROR_MESSAGE string = "Rename operation not permitted" NSERR_PI_AUTHZPLCY_NOT_SUPPORTED_ERROR_CODE errorCode = 2148 NSERR_PI_AUTHZPLCY_NOT_SUPPORTED_ERROR_MESSAGE string = "advanced authorization policy cannot be bound to aaa user/group" NSERR_SAML_2FACTOR_CONFLICT_ERROR_CODE errorCode = 2149 NSERR_SAML_2FACTOR_CONFLICT_ERROR_MESSAGE string = "SAML 2-Factor policy should always be at the beginning of cascade" NSERR_AUDIT_SYSADVPLCY_BOUND_ERROR_CODE errorCode = 2150 NSERR_AUDIT_SYSADVPLCY_BOUND_ERROR_MESSAGE string = "Cannot bind Classic Syslog Policy to System global if Advanced Syslog Policy is already bound to SyslogGlobal" NSERR_AUDIT_SYSCLASSICPLCY_BOUND_ERROR_CODE errorCode = 2151 NSERR_AUDIT_SYSCLASSICPLCY_BOUND_ERROR_MESSAGE string = "Cannot bind Advanced Syslog Policy to SyslogGlobal if Classic Syslog Policy is already bound to System Global" NSERR_CLASSIC_TMSESSPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2152 NSERR_CLASSIC_TMSESSPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 164-byte string literal not displayed */ NSERR_ADVANCED_TMSESSPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2153 NSERR_ADVANCED_TMSESSPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 164-byte string literal not displayed */ NSERR_AUDIT_NSADVPLCY_BOUND_ERROR_CODE errorCode = 2311 NSERR_AUDIT_NSADVPLCY_BOUND_ERROR_MESSAGE string = "Cannot bind Classic Nslog Policy to System global if Advanced Nslog Policy is already bound to NslogGlobal" NSERR_AUDIT_NSCLASSICPLCY_BOUND_ERROR_CODE errorCode = 2312 NSERR_AUDIT_NSCLASSICPLCY_BOUND_ERROR_MESSAGE string = "Cannot bind Advanced Nslog Policy to NslogGlobal if Classic Nslog Policy is already bound to System Global" NSERR_CLASSIC_AUTHNPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2219 NSERR_CLASSIC_AUTHNPOL_ALREADY_BOUND_ERROR_MESSAGE string = "Advanced authentication Policy cannot be bound if Classic authentication Policy is already bound to system global" NSERR_ADVANCED_AUTHNPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2220 NSERR_ADVANCED_AUTHNPOL_ALREADY_BOUND_ERROR_MESSAGE string = "Classic authentication Policy cannot be bound if Advanced authentication Policy is already bound to system global" NSERR_NEXTFACTOR_ATTRIBMAP_MISMATCH_ERROR_CODE errorCode = 2221 NSERR_NEXTFACTOR_ATTRIBMAP_MISMATCH_ERROR_MESSAGE string = "Bind functionality not supported for current bind-entity and nextFactor" NSERR_CLASSIC_VPNTRAFFICPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2222 NSERR_CLASSIC_VPNTRAFFICPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 156-byte string literal not displayed */ NSERR_ADVANCED_VPNTRAFFICPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2223 NSERR_ADVANCED_VPNTRAFFICPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 156-byte string literal not displayed */ NSERR_CLASSIC_AUTHPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2224 NSERR_CLASSIC_AUTHPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 135-byte string literal not displayed */ NSERR_ADVANCED_AUTHPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2225 NSERR_ADVANCED_AUTHPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 135-byte string literal not displayed */ NSERR_CLASSIC_VPNSESSPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2226 NSERR_CLASSIC_VPNSESSPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 156-byte string literal not displayed */ NSERR_ADVANCED_VPNSESSPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2227 NSERR_ADVANCED_VPNSESSPOL_ALREADY_BOUND_ERROR_MESSAGE string = "" /* 156-byte string literal not displayed */ NSERR_INVALID_AUTHN_SET_ACTION_SUBTYPE_ERROR_CODE errorCode = 2228 NSERR_INVALID_AUTHN_SET_ACTION_SUBTYPE_ERROR_MESSAGE string = "Setting action for advanced authentication policy not allowed for different action subtype" NSERR_CLASSIC_AUTH_POLICY_DEPRECATED_ERROR_CODE errorCode = 2229 NSERR_CLASSIC_AUTH_POLICY_DEPRECATED_ERROR_MESSAGE string = "" /* 174-byte string literal not displayed */ NSERR_CLASSIC_PREAUTH_POLICY_DEPRECATED_ERROR_CODE errorCode = 2230 NSERR_CLASSIC_PREAUTH_POLICY_DEPRECATED_ERROR_MESSAGE string = "" /* 212-byte string literal not displayed */ NSERR_INVALID_POLICY_CONTAIN_CSEC_ERROR_CODE errorCode = 2231 NSERR_INVALID_POLICY_CONTAIN_CSEC_ERROR_MESSAGE string = "Binding policy with Client Security expression is not allowed for ICAOnly VPN Virtual Server" NSERR_CLASSIC_AUDITLOGPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2232 NSERR_CLASSIC_AUDITLOGPOL_ALREADY_BOUND_ERROR_MESSAGE string = "Advanced Audit Policy cannot be bound if Classic Audit Policy is already bound to Vserver" NSERR_ADVANCED_AUDITLOGPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2233 NSERR_ADVANCED_AUDITLOGPOL_ALREADY_BOUND_ERROR_MESSAGE string = "Classic Audit Policy cannot be bound if Advanced Audit Policy is already bound to Vserver" NSERR_MAX_AUDITLOGPOL_REACHED_ERROR_CODE errorCode = 2234 NSERR_MAX_AUDITLOGPOL_REACHED_ERROR_MESSAGE string = "Maximum auditlog policy binding to vserver reached" NSERR_PI_ADVANCED_POLICY_ALREADY_ADDED_ERROR_CODE errorCode = 2235 NSERR_PI_ADVANCED_POLICY_ALREADY_ADDED_ERROR_MESSAGE string = "Failed to bind classic policy because advanced policy(s) is already bound." NSERR_PI_CLASSIC_POLICY_ALREADY_ADDED_ERROR_CODE errorCode = 2236 NSERR_PI_CLASSIC_POLICY_ALREADY_ADDED_ERROR_MESSAGE string = "Failed to bind advanced policy because classic policy(s) is already bound." NSERR_CLASSIC_CLIENT_SECURITY_DEPRECATED_ERROR_CODE errorCode = 2237 NSERR_CLASSIC_CLIENT_SECURITY_DEPRECATED_ERROR_MESSAGE string = "" /* 177-byte string literal not displayed */ NSERR_CLASSIC_VPNURLPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2240 NSERR_CLASSIC_VPNURLPOL_ALREADY_BOUND_ERROR_MESSAGE string = "VPN URL Policy cannot be bound if Classic VPN URL is already bound to any entity" NSERR_ADVANCED_VPNURLPOL_ALREADY_BOUND_ERROR_CODE errorCode = 2241 NSERR_ADVANCED_VPNURLPOL_ALREADY_BOUND_ERROR_MESSAGE string = "Classic VPN URL cannot be bound if VPN URL Policy is already bound to any entity" NSERR_PORTALTHEME_DEPRECATED_ERROR_CODE errorCode = 2242 NSERR_PORTALTHEME_DEPRECATED_ERROR_MESSAGE string = "" /* 131-byte string literal not displayed */ NSERR_METADATA_REFRESH_MAX_INTERVAL_ERROR_CODE errorCode = 2243 NSERR_METADATA_REFRESH_MAX_INTERVAL_ERROR_MESSAGE string = "Max metadata refresh interval support has been changed to 3600 minutes (60 hours)" NSERR_EPA_V2_CONFIG_FAILED_ERROR_CODE errorCode = 2244 NSERR_EPA_V2_CONFIG_FAILED_ERROR_MESSAGE string = "EPA V2 config failed. Reconfigure this epa action when EPA v2 is enabled" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pooled-lic-errors NSERR_POOLED_LIC_SET_CAP_ERROR_CODE errorCode = 3569 NSERR_POOLED_LIC_SET_CAP_ERROR_MESSAGE string = "Unable to set capacity" NSERR_POOLED_LIC_LPED_COMM_ERROR_CODE errorCode = 3570 NSERR_POOLED_LIC_LPED_COMM_ERROR_MESSAGE string = "Connection to LPED failed" NSERR_POOLED_LIC_SERVER_CONN_ERROR_CODE errorCode = 3571 NSERR_POOLED_LIC_SERVER_CONN_ERROR_MESSAGE string = "Unable to connect to licenseserver" NSERR_POOLED_LIC_BAD_STATE_ERROR_CODE errorCode = 389 NSERR_POOLED_LIC_BAD_STATE_ERROR_MESSAGE string = "License engine initialization in progress" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#pq-errors NSERR_PQ_BINDVIP_ERROR_CODE errorCode = 1360 NSERR_PQ_BINDVIP_ERROR_MESSAGE string = "Cannot bind same priority policy to VIP" NSERR_PQ_INVALPRIO_ERROR_CODE errorCode = 1361 NSERR_PQ_INVALPRIO_ERROR_MESSAGE string = "Invalid priority value" NSERR_PQ_2BIGRULE_ERROR_CODE errorCode = 1362 NSERR_PQ_2BIGRULE_ERROR_MESSAGE string = "Rule argument too big" NSERR_PQ_INVALWT_ERROR_CODE errorCode = 1363 NSERR_PQ_INVALWT_ERROR_MESSAGE string = "Invalid weight value" NSERR_PQ_POLEXIST_ERROR_CODE errorCode = 1364 NSERR_PQ_POLEXIST_ERROR_MESSAGE string = "Policy name already in use" NSERR_PQ_NOPOL_ERROR_CODE errorCode = 1365 NSERR_PQ_NOPOL_ERROR_MESSAGE string = "No such PQ policy exists" NSERR_PQ_2MANYREF_ERROR_CODE errorCode = 1366 NSERR_PQ_2MANYREF_ERROR_MESSAGE string = "Cannot remove a policy which is bound to VIP" NSERR_PQ_NOLBVIP_ERROR_CODE errorCode = 1367 NSERR_PQ_NOLBVIP_ERROR_MESSAGE string = "No such LB vserver exists" NSERR_PQ_PHSCONFIG_ERROR_CODE errorCode = 1368 NSERR_PQ_PHSCONFIG_ERROR_MESSAGE string = "Cannot configure PQ on VIP if physical service has PQ configuration" NSERR_PQ_NOBIND_ERROR_CODE errorCode = 1369 NSERR_PQ_NOBIND_ERROR_MESSAGE string = "Cannot unbind PQ Policy which is not bound" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#qos-errors NSERR_QOS_64BIT_NOT_SUPPORTED_ERROR_CODE errorCode = 3776 NSERR_QOS_64BIT_NOT_SUPPORTED_ERROR_MESSAGE string = "Libqos is not currently supported on 64 bit platforms." NSERR_QOS_FEATURE_LOCKED_ERROR_CODE errorCode = 3777 NSERR_QOS_FEATURE_LOCKED_ERROR_MESSAGE string = "QoS featuremask parameter cannot be used with the videooptimization feature enabled." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#quic-errors NSERR_QUIC_INVALID_SERVER_ID_ERROR_CODE errorCode = 1699 NSERR_QUIC_INVALID_SERVER_ID_ERROR_MESSAGE string = "Invalid hex format of custom server id. Length should be even and it must be a hex string" NSERR_QUIC_INVALID_CONFIG_ERROR_CODE errorCode = 1700 NSERR_QUIC_INVALID_CONFIG_ERROR_MESSAGE string = "Invalid configuration" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#respoint-errors NSERR_TECHSPRT_BUNDLE_MISSING_ERROR_CODE errorCode = 3824 NSERR_TECHSPRT_BUNDLE_MISSING_ERROR_MESSAGE string = "Tech support bundle does not exist." NSERR_TECHSPRT_REMOVE_ERROR_CODE errorCode = 3825 NSERR_TECHSPRT_REMOVE_ERROR_MESSAGE string = "Error while removing tech support bundle." NSERR_RESPOINT_MISSING_ERROR_CODE errorCode = 3826 NSERR_RESPOINT_MISSING_ERROR_MESSAGE string = "Restore point does not exist." NSERR_RESPOINT_NAMEMISSING_ERROR_CODE errorCode = 2576 NSERR_RESPOINT_NAMEMISSING_ERROR_MESSAGE string = "Missing restore point name argument in the input." NSERR_RESPOINT_MAXLIMIT_ERROR_CODE errorCode = 2577 NSERR_RESPOINT_MAXLIMIT_ERROR_MESSAGE string = "Reached max limit of 3 for restore points. Remove older restorepoints to proceed." NSERR_CREATE_RESPOINT_ERROR_CODE errorCode = 2578 NSERR_CREATE_RESPOINT_ERROR_MESSAGE string = "Error while creating restore point." NSERR_UPDATE_MAPFILE_ERROR_CODE errorCode = 2579 NSERR_UPDATE_MAPFILE_ERROR_MESSAGE string = "Error while Updating the restorepoint map file." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#rewrite-errors NSERR_RW_ACT_INVAL_ERROR_CODE errorCode = 2817 NSERR_RW_ACT_INVAL_ERROR_MESSAGE string = "Invalid rewrite action" NSERR_RW_UNDEFACT_INVAL_ERROR_CODE errorCode = 2818 NSERR_RW_UNDEFACT_INVAL_ERROR_MESSAGE string = "Invalid undef action or log action" NSERR_ACTFLOWMISMATCH_ERROR_CODE errorCode = 2819 NSERR_ACTFLOWMISMATCH_ERROR_MESSAGE string = "Flow types of target and string expression are incompatible" NSERR_RONLY_TAR_EXPR_ERROR_CODE errorCode = 2820 NSERR_RONLY_TAR_EXPR_ERROR_MESSAGE string = "Target must be a simple reference to an unmodified portion of the message" NSERR_DATASET_BINDFAIL_ERROR_CODE errorCode = 2821 NSERR_DATASET_BINDFAIL_ERROR_MESSAGE string = "Unable to bind the pattern to dataset/patset" NSERR_DATASET_UNBINDFAIL_ERROR_CODE errorCode = 2822 NSERR_DATASET_UNBINDFAIL_ERROR_MESSAGE string = "Pattern or range does not exist in dataset/patset" NSERR_DATASET_NOTPRESENT_ERROR_CODE errorCode = 2823 NSERR_DATASET_NOTPRESENT_ERROR_MESSAGE string = "Dataset/Patset does not exist" NSERR_RSP_ACT_INVAL_ERROR_CODE errorCode = 2824 NSERR_RSP_ACT_INVAL_ERROR_MESSAGE string = "Invalid responder action" NSERR_RSP_POLICY_FLOWTYPE_REQ_ERROR_CODE errorCode = 2825 NSERR_RSP_POLICY_FLOWTYPE_REQ_ERROR_MESSAGE string = "Responder policy must be a request policy" NSERR_TAR_FLOWTYPE_NRES_ERROR_CODE errorCode = 2826 NSERR_TAR_FLOWTYPE_NRES_ERROR_MESSAGE string = "Flow type of target should not be response type" NSERR_RSP_CONFIG_LOCK_ERROR_CODE errorCode = 2827 NSERR_RSP_CONFIG_LOCK_ERROR_MESSAGE string = "Responder configuration is temporarily disabled" NSERR_RSP_ACT_MUST_BE_NOOP_ERROR_CODE errorCode = 2828 NSERR_RSP_ACT_MUST_BE_NOOP_ERROR_MESSAGE string = "Non-terminating policy must have NOOP action" NSERR_PATSET_INVALID_REGEX_ERROR_CODE errorCode = 2829 NSERR_PATSET_INVALID_REGEX_ERROR_MESSAGE string = "Patset contains invalid regex." NSERR_DATASET_BINDFAIL_DUP_INDEX_ERROR_CODE errorCode = 2830 NSERR_DATASET_BINDFAIL_DUP_INDEX_ERROR_MESSAGE string = "Pattern index already in use, try using other index" NSERR_PATSET_BINDFAIL_PATLEN_LT_WU_MINLEN_ERROR_CODE errorCode = 2833 NSERR_PATSET_BINDFAIL_PATLEN_LT_WU_MINLEN_ERROR_MESSAGE string = "" /* 141-byte string literal not displayed */ NSERR_TARGET_NOT_ALLOWED_IN_RULE_ERROR_CODE errorCode = 2834 NSERR_TARGET_NOT_ALLOWED_IN_RULE_ERROR_MESSAGE string = "Expression involving Target not allowed in rule." NSERR_RW_TARGET_NOT_ALLOWED_IN_STRBUILDER_ERROR_CODE errorCode = 2835 NSERR_RW_TARGET_NOT_ALLOWED_IN_STRBUILDER_ERROR_MESSAGE string = "Expression involving Target not allowed in StringBuilder expression." NSERR_PIT_INVAL_ERROR_CODE errorCode = 2836 NSERR_PIT_INVAL_ERROR_MESSAGE string = "Invalid Packet data" NSERR_INVAL_INVOKEPOINT_ERROR_CODE errorCode = 2837 NSERR_INVAL_INVOKEPOINT_ERROR_MESSAGE string = "Invalid invoke point" NSERR_PIT_MAX_PACKET_ERROR_CODE errorCode = 2838 NSERR_PIT_MAX_PACKET_ERROR_MESSAGE string = "Packet size exceeds maximum size" NSERR_REFINE_SEARCH_INVALID_ERROR_CODE errorCode = 2839 NSERR_REFINE_SEARCH_INVALID_ERROR_MESSAGE string = "Regular expression for patterns not allowed when refine search is specified" NSERR_EXTEND_INVALID_ERROR_CODE errorCode = 2840 NSERR_EXTEND_INVALID_ERROR_MESSAGE string = "Extend not allowed for non-body expressions" NSERR_NON_EXTEND_EXPR_ERROR_CODE errorCode = 2841 NSERR_NON_EXTEND_EXPR_ERROR_MESSAGE string = "Non extend expressions are not allowed" NSERR_EXTEND_INVAL_PIRL_ERROR_CODE errorCode = 2842 NSERR_EXTEND_INVAL_PIRL_ERROR_MESSAGE string = "Extend not allowed in the string builder expression" NSERR_INVAL_TAR_EXPR_ERROR_CODE errorCode = 2843 NSERR_INVAL_TAR_EXPR_ERROR_MESSAGE string = "Invalid target expression" NSERR_INVAL_SEARCH_ARGS_ERROR_CODE errorCode = 2845 NSERR_INVAL_SEARCH_ARGS_ERROR_MESSAGE string = "Invalid argument: search supports text, xpath, xpath_json, xpath_html, regex and patset" NSERR_RSP_ACT_MUST_BE_RESET_DROP_ERROR_CODE errorCode = 2846 NSERR_RSP_ACT_MUST_BE_RESET_DROP_ERROR_MESSAGE string = "Policy action must be DROP|RESET" NSERR_INVAL_SEARCH_SYNTAX_ERROR_CODE errorCode = 2847 NSERR_INVAL_SEARCH_SYNTAX_ERROR_MESSAGE string = "Invalid search syntax" NSERR_INVAL_SEARCH_XPATH_SYNTAX_ERROR_CODE errorCode = 2848 NSERR_INVAL_SEARCH_XPATH_SYNTAX_ERROR_MESSAGE string = "Invalid xpath syntax" NSERR_INVAL_SEARCH_PATSET_SYNTAX_ERROR_CODE errorCode = 2849 NSERR_INVAL_SEARCH_PATSET_SYNTAX_ERROR_MESSAGE string = "Invalid patset syntax" NSERR_INVAL_SEARCH_REGEX_SYNTAX_ERROR_CODE errorCode = 2850 NSERR_INVAL_SEARCH_REGEX_SYNTAX_ERROR_MESSAGE string = "Invalid regex syntax" NSERR_RW_REQ_BODY_NOT_ALLOWED_ERROR_CODE errorCode = 2851 NSERR_RW_REQ_BODY_NOT_ALLOWED_ERROR_MESSAGE string = "Request body based expression is not allowed" NSERR_RENAME_NOTSUPPORTED_ERROR_CODE errorCode = 2852 NSERR_RENAME_NOTSUPPORTED_ERROR_MESSAGE string = "Renaming this entity is not supported as entity based expression is configured" NSERR_ENTITY_REMOVAL_NOTALLOWED_ERROR_CODE errorCode = 2853 NSERR_ENTITY_REMOVAL_NOTALLOWED_ERROR_MESSAGE string = "Removing this entity is not allowed as entity based expression is configured" NSERR_PI_ENTITY_EXISTS_ERROR_CODE errorCode = 2854 NSERR_PI_ENTITY_EXISTS_ERROR_MESSAGE string = "Advanced expression entity with same name already exists." NSERR_INCOMPATIBLE_CALLOUT_CHANGE_ERROR_CODE errorCode = 2855 NSERR_INCOMPATIBLE_CALLOUT_CHANGE_ERROR_MESSAGE string = "Incompatible callout change for in-use callout." NSERR_STRINGMAP_NOTPRESENT_ERROR_CODE errorCode = 2856 NSERR_STRINGMAP_NOTPRESENT_ERROR_MESSAGE string = "String map does not exist" NSERR_HTTP_PROFILE_ACTION_NOT_ALLOWED_ERROR_CODE errorCode = 2857 NSERR_HTTP_PROFILE_ACTION_NOT_ALLOWED_ERROR_MESSAGE string = "Responder action using HTTP protocol expressions is not allowed in HTTP profile" NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESPONDWITH_ERROR_CODE errorCode = 2858 NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESPONDWITH_ERROR_MESSAGE string = "Policy action must be DROP|NOOP|RESPONDWITH" NSERR_RSP_ACT_MUST_BE_DROP_NOOP_ERROR_CODE errorCode = 2899 NSERR_RSP_ACT_MUST_BE_DROP_NOOP_ERROR_MESSAGE string = "Policy action must be DROP|NOOP" NSERR_RSP_UNDEF_ACT_MUST_BE_DROP_NOOP_ERROR_CODE errorCode = 2859 NSERR_RSP_UNDEF_ACT_MUST_BE_DROP_NOOP_ERROR_MESSAGE string = "Policy undef action must be DROP|NOOP" NSERR_INCOMPATIBLE_UNDEF_ERROR_CODE errorCode = 2860 NSERR_INCOMPATIBLE_UNDEF_ERROR_MESSAGE string = "Incompatible global undef action for SIP policy" NSERR_PIT_ACTION_EVAL_INVAL_ERROR_CODE errorCode = 2861 NSERR_PIT_ACTION_EVAL_INVAL_ERROR_MESSAGE string = "Action cannot be evaluated due to wrong input type." NSERR_STRLIT_MAXLEN_ERROR_CODE errorCode = 2863 NSERR_STRLIT_MAXLEN_ERROR_MESSAGE string = "" /* 208-byte string literal not displayed */ NSERR_DATASET_INVALID_ERROR_CODE errorCode = 2866 NSERR_DATASET_INVALID_ERROR_MESSAGE string = "Invalid dataset element" NSERR_DATASET_BINDFAIL_DUP_PATTERN_ERROR_CODE errorCode = 2867 NSERR_DATASET_BINDFAIL_DUP_PATTERN_ERROR_MESSAGE string = "Pattern already bound to dataset/patset, try using other pattern" NSERR_TIMER_ACT_INVAL_ERROR_CODE errorCode = 2868 NSERR_TIMER_ACT_INVAL_ERROR_MESSAGE string = "Invalid timer action" NSERR_TIMER_ENTITY_INUSE_ERROR_CODE errorCode = 2869 NSERR_TIMER_ENTITY_INUSE_ERROR_MESSAGE string = "Timer entity name already in use" NSERR_TIMER_ENTITY_GLOBAL_BINDPOINT_INVAL_ERROR_CODE errorCode = 2870 NSERR_TIMER_ENTITY_GLOBAL_BINDPOINT_INVAL_ERROR_MESSAGE string = "Invalid global bindpoint" NSERR_PATSET_BUILTIN_ERROR_CODE errorCode = 2871 NSERR_PATSET_BUILTIN_ERROR_MESSAGE string = "Built-in Patsets cannot be modified or deleted" NSERR_CROSS_MAX_LIMIT_ERROR_CODE errorCode = 2872 NSERR_CROSS_MAX_LIMIT_ERROR_MESSAGE string = "Maximum value can be 2147483647" NSERR_INVALID_IPV4_FORMAT_ERROR_CODE errorCode = 2873 NSERR_INVALID_IPV4_FORMAT_ERROR_MESSAGE string = "Value should be in IPv4 format" NSERR_INVALID_IPV4_MAX_FIELD_VALUE_ERROR_CODE errorCode = 2880 NSERR_INVALID_IPV4_MAX_FIELD_VALUE_ERROR_MESSAGE string = "Maximum value of an IPv4 field can be 255" NSERR_INVALID_IPV6_FORMAT_ERROR_CODE errorCode = 2881 NSERR_INVALID_IPV6_FORMAT_ERROR_MESSAGE string = "Invalid IPv6 address format" NSERR_INVALID_NUMERIC_FORMAT_ERROR_CODE errorCode = 2882 NSERR_INVALID_NUMERIC_FORMAT_ERROR_MESSAGE string = "Value should be in decimal or hexadecimal format" NSERR_VALID_PREFIX_NUMERIC_FORMAT_ERROR_CODE errorCode = 2048 NSERR_VALID_PREFIX_NUMERIC_FORMAT_ERROR_MESSAGE string = "Value is valid decimal or hexadecimal format, but is only a prefix of the string" NSERR_DATASET_PATTERN_ALREADY_BOUND_ERROR_CODE errorCode = 2883 NSERR_DATASET_PATTERN_ALREADY_BOUND_ERROR_MESSAGE string = "Specified pattern or range is already bound to dataset/patset" NSERR_PI_CIRCULAR_REFERENCE_DETECTED_ERROR_CODE errorCode = 2884 NSERR_PI_CIRCULAR_REFERENCE_DETECTED_ERROR_MESSAGE string = "Circular reference detected" NSERR_INVALID_ULONG_FORMAT_ERROR_CODE errorCode = 2885 NSERR_INVALID_ULONG_FORMAT_ERROR_MESSAGE string = "Value should be in unsigned long format like 23445, 88888999" NSERR_INVALID_MAC_ADDRESS_FORMAT_ERROR_CODE errorCode = 2886 NSERR_INVALID_MAC_ADDRESS_FORMAT_ERROR_MESSAGE string = "Value should be in mac address format like ff:ff:ff:ff:ff:ff" NSERR_INVALID_DOUBLE_FORMAT_ERROR_CODE errorCode = 2887 NSERR_INVALID_DOUBLE_FORMAT_ERROR_MESSAGE string = "Value should be in double format like 223, 22.3, 234e2" NSERR_CROSS_ULONG_MAX_LIMIT_ERROR_CODE errorCode = 2888 NSERR_CROSS_ULONG_MAX_LIMIT_ERROR_MESSAGE string = "Maximum value can be 18446744073709551615" NSERR_INVAL_AVP_INSERT_EXPR_ERROR_CODE errorCode = 2890 NSERR_INVAL_AVP_INSERT_EXPR_ERROR_MESSAGE string = "" /* 204-byte string literal not displayed */ NSERR_INVAL_AVP_LOOKUP_EXPR_ERROR_CODE errorCode = 2891 NSERR_INVAL_AVP_LOOKUP_EXPR_ERROR_MESSAGE string = "" /* 181-byte string literal not displayed */ NSERR_INVAL_DELETE_AVP_EXPR_ERROR_CODE errorCode = 2892 NSERR_INVAL_DELETE_AVP_EXPR_ERROR_MESSAGE string = "" /* 139-byte string literal not displayed */ NSERR_INVAL_NEW_MESSAGE_EXPR_ERROR_CODE errorCode = 2893 NSERR_INVAL_NEW_MESSAGE_EXPR_ERROR_MESSAGE string = "" /* 216-byte string literal not displayed */ NSERR_INVAL_DIAMETER_REDIRECT_ACTION_ERROR_CODE errorCode = 2894 NSERR_INVAL_DIAMETER_REDIRECT_ACTION_ERROR_MESSAGE string = "Binding Invalid Diameter action. Use DIAMETER.NEW_REDIRECT as target expression to create new redirect message" NSERR_INVAL_DIAMETER_ACTION_ERROR_CODE errorCode = 2895 NSERR_INVAL_DIAMETER_ACTION_ERROR_MESSAGE string = "Invalid action for Diameter bind point." NSERR_PIT_CONNECTION_ERROR_ERROR_CODE errorCode = 2897 NSERR_PIT_CONNECTION_ERROR_ERROR_MESSAGE string = "Connection error" NSERR_INVAL_SEARCH_AVP_ERROR_CODE errorCode = 2898 NSERR_INVAL_SEARCH_AVP_ERROR_MESSAGE string = "AVP code should be a number" NSERR_DATASET_PATTERN_LIMIT_OVERFLOW_ERROR_CODE errorCode = 2900 NSERR_DATASET_PATTERN_LIMIT_OVERFLOW_ERROR_MESSAGE string = "Cannot bind more than 50, 000 patterns to a patset/dataset" NSERR_INVAL_RADIUS_AVPCODE_ERROR_CODE errorCode = 2901 NSERR_INVAL_RADIUS_AVPCODE_ERROR_MESSAGE string = "RADIUS AVP code should be in 0-255 number range" NSERR_INVAL_RADIUS_RESPONSE_ERROR_CODE errorCode = 2902 NSERR_INVAL_RADIUS_RESPONSE_ERROR_MESSAGE string = "Invalid RADIUS response code" NSERR_RESP_ACT_REASON_PHRASE_REQUIRED_ERROR_CODE errorCode = 2903 NSERR_RESP_ACT_REASON_PHRASE_REQUIRED_ERROR_MESSAGE string = "Please also specify a reason phrase with a user-defined HTTP status code." NSERR_RESP_ACT_RESPONSE_CODE_REASON_PHRASE_NOT_ALLOWED_ERROR_CODE errorCode = 2904 NSERR_RESP_ACT_RESPONSE_CODE_REASON_PHRASE_NOT_ALLOWED_ERROR_MESSAGE string = "responseStatusCode and reasonPhrase options are allowed only for respondwithhtmlpage and redirect action types." NSERR_RESP_ACT_INVALID_REDIRECT_CODE_ERROR_CODE errorCode = 2905 NSERR_RESP_ACT_INVALID_REDIRECT_CODE_ERROR_MESSAGE string = "For redirect action type the response status code must be in the range 300-399." NSERR_RESP_ACT_INVALID_HTTP_STATUS_CODE_ERROR_CODE errorCode = 2906 NSERR_RESP_ACT_INVALID_HTTP_STATUS_CODE_ERROR_MESSAGE string = "Invalid HTTP status code." NSERR_RESP_ACT_EMPTY_REASON_PHRASE_NOT_ALLOWED_ERROR_CODE errorCode = 2907 NSERR_RESP_ACT_EMPTY_REASON_PHRASE_NOT_ALLOWED_ERROR_MESSAGE string = "Empty reasonPhrase string not allowed." NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESPONDWITH_RESET_ERROR_CODE errorCode = 2908 NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESPONDWITH_RESET_ERROR_MESSAGE string = "Policy action must be DROP|NOOP|RESPONDWITH|RESET" NSERR_MAX_STREAMING_PATTERN_LIMIT_ERROR_CODE errorCode = 2909 NSERR_MAX_STREAMING_PATTERN_LIMIT_ERROR_MESSAGE string = "Maximum number of streaming patterns exceeded." NSERR_RESP_UPDATE_HTMLPAGE_NOT_REFERENCED_ERROR_CODE errorCode = 1223 NSERR_RESP_UPDATE_HTMLPAGE_NOT_REFERENCED_ERROR_MESSAGE string = "Responder HTML Page must be referenced in a responder action prior to update." NSERR_PATSET_STREAMING_BINDFAIL_PATLEN_LT_WU_MINLEN_ERROR_CODE errorCode = 1224 NSERR_PATSET_STREAMING_BINDFAIL_PATLEN_LT_WU_MINLEN_ERROR_MESSAGE string = "" /* 174-byte string literal not displayed */ NSERR_DATASET_RANGE_ERROR_ERROR_CODE errorCode = 2910 NSERR_DATASET_RANGE_ERROR_ERROR_MESSAGE string = "Dataset range error" NSERR_DATASET_WARN_SUBNET_ADDR_ERROR_CODE errorCode = 2911 NSERR_DATASET_WARN_SUBNET_ADDR_ERROR_MESSAGE string = "Starting subnet address masked using subnet mask to create new starting address" NSERR_PATSET_CONFIG_CHANGED_ERROR_CODE errorCode = 2915 NSERR_PATSET_CONFIG_CHANGED_ERROR_MESSAGE string = "The patset/dataset configuration changed after the iterator was created/" NSERR_RSP_NOOP_ACTION_TYPE_NOT_ALLOWED_ERROR_CODE errorCode = 2916 NSERR_RSP_NOOP_ACTION_TYPE_NOT_ALLOWED_ERROR_MESSAGE string = "NOOP action type is deprecated and will be removed in the future - use NOOP action" NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESET_ERROR_CODE errorCode = 2917 NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESET_ERROR_MESSAGE string = "Policy action must be DROP|NOOP|RESET" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#rnat-errors NSERR_RNAT_NAME_EXISTS_ERROR_CODE errorCode = 976 NSERR_RNAT_NAME_EXISTS_ERROR_MESSAGE string = "A RNAT with same name exists" NSERR_VLAN_IPV6_LL_N_ALLOW_ERROR_CODE errorCode = 962 NSERR_VLAN_IPV6_LL_N_ALLOW_ERROR_MESSAGE string = "IP address cannot be link-local address" NSERR_VLAN_INTF_BOUND_NSVLAN_ERROR_CODE errorCode = 963 NSERR_VLAN_INTF_BOUND_NSVLAN_ERROR_MESSAGE string = "Cannot unbind interface from nsvlan" NSERR_VLAN_INVALID_ERROR_CODE errorCode = 964 NSERR_VLAN_INVALID_ERROR_MESSAGE string = "Incorrect vlan specified" NSERR_SYNC_VLAN_IPBOUND_ERROR_CODE errorCode = 965 NSERR_SYNC_VLAN_IPBOUND_ERROR_MESSAGE string = "Ipaddress binding/unbinding is not allowed on sync or default vlan" NSERR_VLAN_SUBNET_ALREADY_BOUND_ERROR_CODE errorCode = 966 NSERR_VLAN_SUBNET_ALREADY_BOUND_ERROR_MESSAGE string = "Subnet already bound to this vlan" NSERR_UNABLE_GET_VLAN_IP_ERROR_CODE errorCode = 967 NSERR_UNABLE_GET_VLAN_IP_ERROR_MESSAGE string = "Unable to get vlan of the IPaddress" NSERR_IP_VLAN_BOUND_ERROR_CODE errorCode = 968 NSERR_IP_VLAN_BOUND_ERROR_MESSAGE string = "Ipaddress already bound to a vlan" NSERR_VLAN_UNABLE_ADD_ERROR_CODE errorCode = 969 NSERR_VLAN_UNABLE_ADD_ERROR_MESSAGE string = "Unable to add vlan" NSERR_DEFVLAN_ERROR_CODE errorCode = 970 NSERR_DEFVLAN_ERROR_MESSAGE string = "Default VLAN or NSVLAN cannot be modified" NSERR_IPV6_ROUTING_BRIDGEGRP_ERROR_CODE errorCode = 971 NSERR_IPV6_ROUTING_BRIDGEGRP_ERROR_MESSAGE string = "vlan is part of a bridge group. Cannot enable routing" NSERR_VLAN_SDXMGMTVLAN_CLUSTER_ERROR_CODE errorCode = 972 NSERR_VLAN_SDXMGMTVLAN_CLUSTER_ERROR_MESSAGE string = "Operation not permitted. vlan is SDX management vlan in a cluster" NSERR_ACL_INUSE_RNAT_ERROR_CODE errorCode = 973 NSERR_ACL_INUSE_RNAT_ERROR_MESSAGE string = "This ACL is used for RNAT/NAT64/LSN/FORWARDINGSESSION. Action should be ALLOW" NSERR_RNAT_CM_TCPPROXY_ERROR_CODE errorCode = 974 NSERR_RNAT_CM_TCPPROXY_ERROR_MESSAGE string = "TCPPROXY should be disabled for connection failover to work properly." NSERR_RNAT_DYN_PERM_RT_ERROR_CODE errorCode = 2413 NSERR_RNAT_DYN_PERM_RT_ERROR_MESSAGE string = "RNAT cannot be configured on DYNAMIC/PERMANENT route" NSERR_RNAT_SRCIPPERSISTENCY_NOTSUPCLU_ERROR_CODE errorCode = 1218 NSERR_RNAT_SRCIPPERSISTENCY_NOTSUPCLU_ERROR_MESSAGE string = "RNAT SourceIPPersistency is not supported in Cluster." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#snmp-errors NSERR_INVALTHRESHOLD_ERROR_CODE errorCode = 3457 NSERR_INVALTHRESHOLD_ERROR_MESSAGE string = "Threshold value for this alarm is a percentage (1 - 100)" NSERR_WRONGTHRESHOLDS_ERROR_CODE errorCode = 3458 NSERR_WRONGTHRESHOLDS_ERROR_MESSAGE string = "Normal threshold must be lower than alarm threshold" NSERR_INVALID_SRCIP_ERROR_CODE errorCode = 3459 NSERR_INVALID_SRCIP_ERROR_MESSAGE string = "" /* 136-byte string literal not displayed */ NSERR_THRESHOLD_UNSETTABLE_ERROR_CODE errorCode = 3460 NSERR_THRESHOLD_UNSETTABLE_ERROR_MESSAGE string = "Threshold value cannot be set/unset for this alarm" NSERR_TIME_UNSETTABLE_ERROR_CODE errorCode = 3461 NSERR_TIME_UNSETTABLE_ERROR_MESSAGE string = "Time interval cannot be set/unset for this alarm" NSERR_WRONG_LOW_THRESHOLDS_ERROR_CODE errorCode = 3462 NSERR_WRONG_LOW_THRESHOLDS_ERROR_MESSAGE string = "Normal threshold must be higher than alarm threshold" NSERR_NOSNMPUSER_ERROR_CODE errorCode = 3463 NSERR_NOSNMPUSER_ERROR_MESSAGE string = "SNMP user doesn't exist" NSERR_WRONG_SNMPVERSION_ERROR_CODE errorCode = 3464 NSERR_WRONG_SNMPVERSION_ERROR_MESSAGE string = "Bind command allowed only for V3 traps" NSERR_V3TRAP_COMMUNITY_ERROR_CODE errorCode = 3465 NSERR_V3TRAP_COMMUNITY_ERROR_MESSAGE string = "V3 traps cannot have community" NSERR_IPINUSE_ERROR_CODE errorCode = 3466 NSERR_IPINUSE_ERROR_MESSAGE string = "IP is used in SNMP trap configuration" NSERR_DEFAULTONLY_ERROR_CODE errorCode = 3467 NSERR_DEFAULTONLY_ERROR_MESSAGE string = "Alarm not supported in non-default partition" NSERR_OWNERNODE_ERROR_CODE errorCode = 3468 NSERR_OWNERNODE_ERROR_MESSAGE string = "Owner node not specified or invalid" NSERR_FIPS_SNMP_ERROR_CODE errorCode = 3469 NSERR_FIPS_SNMP_ERROR_MESSAGE string = "Less secure SNMP configuration is not supported in FIPS mode" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#spotted-config-errors NSERR_NODECNT_EXCEED_ERROR_CODE errorCode = 4000 NSERR_NODECNT_EXCEED_ERROR_MESSAGE string = "You cannot have more than 32 nodes in a nodegroup." NSERR_INVAL_VAL_IN_DB_ERROR_CODE errorCode = 4001 NSERR_INVAL_VAL_IN_DB_ERROR_MESSAGE string = "Invalid values exists in database." NSERR_NODE_IDX_EXCEED_ERROR_CODE errorCode = 4002 NSERR_NODE_IDX_EXCEED_ERROR_MESSAGE string = "Node index cannot exceed 31." NSERR_INVALID_NODE_ERROR_CODE errorCode = 4003 NSERR_INVALID_NODE_ERROR_MESSAGE string = "Specified node does not exist." NSERR_INVALID_VSVR_ERROR_CODE errorCode = 4004 NSERR_INVALID_VSVR_ERROR_MESSAGE string = "Specified type of virtual server cannot be bound to the default nodegroup." NSERR_VSVR_NOT_EXISTS_ERROR_CODE errorCode = 4005 NSERR_VSVR_NOT_EXISTS_ERROR_MESSAGE string = "Specified virtual server does not exist." NSERR_VSVR_ALREADY_BOUND_ERROR_CODE errorCode = 4006 NSERR_VSVR_ALREADY_BOUND_ERROR_MESSAGE string = "Specified virtual server is already bound to some other nodegroup." NSERR_NOT_IN_SAME_NG_ERROR_CODE errorCode = 4007 NSERR_NOT_IN_SAME_NG_ERROR_MESSAGE string = "" /* 129-byte string literal not displayed */ NSERR_NG_NOT_EXISTS_ERROR_CODE errorCode = 4008 NSERR_NG_NOT_EXISTS_ERROR_MESSAGE string = "Specified nodegroup does not exist." NSERR_NO_NODES_OR_BOUND_ERROR_CODE errorCode = 4009 NSERR_NO_NODES_OR_BOUND_ERROR_MESSAGE string = "Specified node is not valid or is already bound to the nodegroup." NSERR_NO_NODES_OR_UNBOUND_ERROR_CODE errorCode = 4010 NSERR_NO_NODES_OR_UNBOUND_ERROR_MESSAGE string = "Specified node is not valid or is not bound to this nodegroup." NSERR_DEPENDENCIES_EXCEED_ERROR_CODE errorCode = 4011 NSERR_DEPENDENCIES_EXCEED_ERROR_MESSAGE string = "Specified virtual server has more than 1024 dependencies." NSERR_VSVR_NOT_BOUND_OR_BOUND_TO_DIFFERENT_ERROR_CODE errorCode = 4012 NSERR_VSVR_NOT_BOUND_OR_BOUND_TO_DIFFERENT_ERROR_MESSAGE string = "Specified virtual server is not bound to this nodegroup." NSERR_HAVE_DEPENDENCIES_ERROR_CODE errorCode = 4013 NSERR_HAVE_DEPENDENCIES_ERROR_MESSAGE string = "" /* 211-byte string literal not displayed */ NSERR_NG_CMDS_NOT_SUPPORTED_IN_STANDALONE_ERROR_CODE errorCode = 4014 NSERR_NG_CMDS_NOT_SUPPORTED_IN_STANDALONE_ERROR_MESSAGE string = "Nodegroup commands are supported only in a cluster setup." NSERR_BIND_VS_FAILS_IF_NO_NODES_AND_STRICT_OR_STICKY_ERROR_CODE errorCode = 4015 NSERR_BIND_VS_FAILS_IF_NO_NODES_AND_STRICT_OR_STICKY_ERROR_MESSAGE string = "You cannot bind an entity to a nodegroup that has no nodes and that has the strict/sticky option enabled." NSERR_UNBIND_LASTNODE_FAILS_IF_BOUND_ENTITIES_AND_STRICT_ERROR_CODE errorCode = 4016 NSERR_UNBIND_LASTNODE_FAILS_IF_BOUND_ENTITIES_AND_STRICT_ERROR_MESSAGE string = "You cannot unbind the last node of a nodegroup that has entities bound to it and that has the strict option enabled." NSERR_SET_STRICT_FAILS_IF_NO_NODES_AND_BOUND_ENTITIES_ERROR_CODE errorCode = 4017 NSERR_SET_STRICT_FAILS_IF_NO_NODES_AND_BOUND_ENTITIES_ERROR_MESSAGE string = "You cannot enable STRICT option for a nodegroup that has no nodes, but that has entities bound to it." NSERR_RM_FAILS_IF_BOUND_ENTITIES_ERROR_CODE errorCode = 4018 NSERR_RM_FAILS_IF_BOUND_ENTITIES_ERROR_MESSAGE string = "Specified nodegroup cannot be removed, because it has entities bound to it." NSERR_RM_NODE_FAILS_IF_BOUND_ENTITIES_ERROR_CODE errorCode = 4019 NSERR_RM_NODE_FAILS_IF_BOUND_ENTITIES_ERROR_MESSAGE string = "Specified cluster node cannot be removed, because it belongs to a nodegroup that has entities bound to it." NSERR_RM_CLUSTER_FAILS_IF_BOUND_ENTITIES_ERROR_CODE errorCode = 4020 NSERR_RM_CLUSTER_FAILS_IF_BOUND_ENTITIES_ERROR_MESSAGE string = "Specified cluster instance cannot be removed, because one of its nodegroups have entities bound to it." NSERR_BIND_WILDCARDVIP_FAILS_ERROR_CODE errorCode = 4021 NSERR_BIND_WILDCARDVIP_FAILS_ERROR_MESSAGE string = "You cannot bind a wildcard vserver to a nodegroup." NSERR_SQL_QUERY_TRUNCATED_ERROR_CODE errorCode = 4022 NSERR_SQL_QUERY_TRUNCATED_ERROR_MESSAGE string = "Too long SQL query to perform the database query." NSERR_IDENT_ALREADY_BOUND_ERROR_CODE errorCode = 4023 NSERR_IDENT_ALREADY_BOUND_ERROR_MESSAGE string = "Given identifier already bound." NSERR_IDENT_NOT_BOUND_OR_BOUND_TO_DIFFERENT_ERROR_CODE errorCode = 4024 NSERR_IDENT_NOT_BOUND_OR_BOUND_TO_DIFFERENT_ERROR_MESSAGE string = "Given identifier is not bound or bound to some other nodegroup." NSERR_IDENT_BOUND_TO_NG_ERROR_CODE errorCode = 4025 NSERR_IDENT_BOUND_TO_NG_ERROR_MESSAGE string = "Cannot delete identifier that is bound to a nodegroup" NSERR_GSLB_NG_EXISTS_ERROR_CODE errorCode = 4034 NSERR_GSLB_NG_EXISTS_ERROR_MESSAGE string = "Can not configure multiple GSLB nodegroups." NSERR_GSLB_SITE_TYPE_NOT_LOCAL_ERROR_CODE errorCode = 4035 NSERR_GSLB_SITE_TYPE_NOT_LOCAL_ERROR_MESSAGE string = "Can only perform this operation on a local GSLB site." NSERR_NG_NOGSLB_ERROR_CODE errorCode = 4036 NSERR_NG_NOGSLB_ERROR_MESSAGE string = "GSLB entities can not be bound to this nodegroup." NSERR_SERVICE_BOUND_TO_NG_ERROR_CODE errorCode = 4037 NSERR_SERVICE_BOUND_TO_NG_ERROR_MESSAGE string = "Cannot delete a service bound to a nodegroup." NSERR_GSLB_NG_NODE_COUNT_ERROR_CODE errorCode = 4039 NSERR_GSLB_NG_NODE_COUNT_ERROR_MESSAGE string = "This nodegroup must be bound to exactly ONE node" NSERR_GSLB_NG_ERROR_CODE errorCode = 4040 NSERR_GSLB_NG_ERROR_MESSAGE string = "Only GSLB entities can be bound to this nodegroup." NSERR_VPN_BOUND_TO_NG_ERROR_CODE errorCode = 4041 NSERR_VPN_BOUND_TO_NG_ERROR_MESSAGE string = "Cannot bind more than one node to a nodegroup that has vpn vservers bound" NSERR_VPN_BOUND_TO_OTHER_NG_ERROR_CODE errorCode = 4042 NSERR_VPN_BOUND_TO_OTHER_NG_ERROR_MESSAGE string = "Cannot bind vpn vserver to this nodegroup as other vpn vservers are bound to different nodegroup" NSERR_VPN_BOUND_TO_NG1_ERROR_CODE errorCode = 4043 NSERR_VPN_BOUND_TO_NG1_ERROR_MESSAGE string = "Cannot bind vpn vserver to a nodegroup that has more than one node bound" NSERR_UNBIND_LASTNODE_FAILS_IF_VPNVSERVER_BOUND_ERROR_CODE errorCode = 4044 NSERR_UNBIND_LASTNODE_FAILS_IF_VPNVSERVER_BOUND_ERROR_MESSAGE string = "You cannot unbind the last node of a nodegroup that has vpn vserver bound." NSERR_BIND_NODE_FAILS_IF_STICKY_ERROR_CODE errorCode = 4045 NSERR_BIND_NODE_FAILS_IF_STICKY_ERROR_MESSAGE string = "You cannot bind more than one node to a nodegroup that is sticky." NSERR_UNBIND_LASTNODE_FAILS_IF_BOUND_ENTITIES_AND_STICKY_ERROR_CODE errorCode = 4046 NSERR_UNBIND_LASTNODE_FAILS_IF_BOUND_ENTITIES_AND_STICKY_ERROR_MESSAGE string = "You cannot unbind the last node of a nodegroup that has entities bound to it and that has the sticky option enabled." NSERR_SET_STRICT_FAILS_IF_STICKY_ERROR_CODE errorCode = 4047 NSERR_SET_STRICT_FAILS_IF_STICKY_ERROR_MESSAGE string = "You cannot enable STRICT option for a nodegroup that is sticky." NSERR_25GSPEEDRESTRICT_ERROR_CODE errorCode = 4048 NSERR_25GSPEEDRESTRICT_ERROR_MESSAGE string = "25G ports on this platform are restricted to speeds 25000, 10000, 1000 or AUTO only" NSERR_NG_BIND_ENTITY_MISMATCH_ERROR_CODE errorCode = 4065 NSERR_NG_BIND_ENTITY_MISMATCH_ERROR_MESSAGE string = "Nodegroup with state option, supports only cluster nodes binding" NSERR_NG_SET_BOUND_ERROR_CODE errorCode = 4066 NSERR_NG_SET_BOUND_ERROR_MESSAGE string = "Can not set nodegroup, since already bound" NSERR_NODE_ALREADY_BOUND_TO_STATENG_ERROR_CODE errorCode = 4067 NSERR_NODE_ALREADY_BOUND_TO_STATENG_ERROR_MESSAGE string = "Node already bound to state specific nodegroup" NSERR_NODE_BOUND_TO_STATENG_ERROR_CODE errorCode = 4068 NSERR_NODE_BOUND_TO_STATENG_ERROR_MESSAGE string = "Can not set the state of the cluster node when bound to nodegroup with state option" NSERR_NG_STRICT_DISABLED_ERROR_CODE errorCode = 4069 NSERR_NG_STRICT_DISABLED_ERROR_MESSAGE string = "You can not disable STRICT option for nodegroup with state option" NSERR_NO_TRUE_POLICY_ERROR_CODE errorCode = 4071 NSERR_NO_TRUE_POLICY_ERROR_MESSAGE string = "No policy evaluated to TRUE" NSERR_BRIDGEAGE_DEPR_ERROR_CODE errorCode = 2749 NSERR_BRIDGEAGE_DEPR_ERROR_MESSAGE string = "Argument deprecated[bridgeAge]. Use set l2param -bridgeAgeTimeout instead" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#ssl-errors NSERR_SSL_CERT_ERROR_CODE errorCode = 1536 NSERR_SSL_CERT_ERROR_MESSAGE string = "Invalid certificate" NSERR_SSL_PKEY_ERROR_CODE errorCode = 1537 NSERR_SSL_PKEY_ERROR_MESSAGE string = "Invalid private key, or PEM pass phrase required for this private key" NSERR_SSL_NOMATCH_ERROR_CODE errorCode = 1538 NSERR_SSL_NOMATCH_ERROR_MESSAGE string = "Certificate and private key do not match" NSERR_SSL_CERTTYPE_ERROR_CODE errorCode = 1539 NSERR_SSL_CERTTYPE_ERROR_MESSAGE string = "Invalid cetificate type" NSERR_SSL_NOCERT_ERROR_CODE errorCode = 1540 NSERR_SSL_NOCERT_ERROR_MESSAGE string = "Certificate does not exist" NSERR_SSL_REFEXT_ERROR_CODE errorCode = 1541 NSERR_SSL_REFEXT_ERROR_MESSAGE string = "" /* 187-byte string literal not displayed */ NSERR_SSL_BIND_ERROR_CODE errorCode = 1542 NSERR_SSL_BIND_ERROR_MESSAGE string = "Certificate binding does not exist" NSERR_SSL_LINK_ERROR_CODE errorCode = 1543 NSERR_SSL_LINK_ERROR_MESSAGE string = "Certificate can't be linked to the same certificate" NSERR_SSL_NEED_SSLPROTO_ERROR_CODE errorCode = 1544 NSERR_SSL_NEED_SSLPROTO_ERROR_MESSAGE string = "Object's protocol type is not SSL" NSERR_SSL_NOLINK_ERROR_CODE errorCode = 1545 NSERR_SSL_NOLINK_ERROR_MESSAGE string = "Certificate does not have any CA link" NSERR_SSL_BINDOR_ERROR_CODE errorCode = 1546 NSERR_SSL_BINDOR_ERROR_MESSAGE string = "Current certificate replaces the previous binding" NSERR_SSL_NOSVRCERT_ERROR_CODE errorCode = 1547 NSERR_SSL_NOSVRCERT_ERROR_MESSAGE string = "Certificate is not a server/client certificate" NSERR_SSL_ISSUBMIS_ERROR_CODE errorCode = 1548 NSERR_SSL_ISSUBMIS_ERROR_MESSAGE string = "Issuer certificate mismatch" NSERR_SSL_CRL_ERROR_CODE errorCode = 1549 NSERR_SSL_CRL_ERROR_MESSAGE string = "Invalid CRL" NSERR_SSL_NOCRL_ERROR_CODE errorCode = 1550 NSERR_SSL_NOCRL_ERROR_MESSAGE string = "CRL does not exist" NSERR_SSL_DHCOUNT_ERROR_CODE errorCode = 1551 NSERR_SSL_DHCOUNT_ERROR_MESSAGE string = "DH Refresh count should be 0 or >=500" NSERR_SSL_SESSTO_ERROR_CODE errorCode = 1552 NSERR_SSL_SESSTO_ERROR_MESSAGE string = "Session timeout should be > 0" NSERR_SSL_ERSACOUNT_ERROR_CODE errorCode = 1553 NSERR_SSL_ERSACOUNT_ERROR_MESSAGE string = "eRSA Refresh count should be 0 or >=500" NSERR_SSL_DH_SIZE_ERROR_CODE errorCode = 1554 NSERR_SSL_DH_SIZE_ERROR_MESSAGE string = "DH params of size greater than 4096 bits not supported" NSERR_DHPATH_ERROR_CODE errorCode = 1555 NSERR_DHPATH_ERROR_MESSAGE string = "DH file path mandatory if DH enabled" NSERR_CERTHEADER_ERROR_CODE errorCode = 1556 NSERR_CERTHEADER_ERROR_MESSAGE string = "Cert header tag mandatory if cert enabled" NSERR_SESSHEADER_ERROR_CODE errorCode = 1557 NSERR_SESSHEADER_ERROR_MESSAGE string = "Sess header tag mandatory if sess enabled" NSERR_CIPHER_PERM_ERROR_CODE errorCode = 1558 NSERR_CIPHER_PERM_ERROR_MESSAGE string = "Default ciphers/aliases cannot be added or removed" NSERR_SSL_ERSADISABLED_ERROR_CODE errorCode = 1559 NSERR_SSL_ERSADISABLED_ERROR_MESSAGE string = "Setting eRSA count when eRSA is disabled" NSERR_SSL_DHDISABLED_ERROR_CODE errorCode = 1560 NSERR_SSL_DHDISABLED_ERROR_MESSAGE string = "Setting DH count when DH is disabled" NSERR_SSL_SESSDISABLED_ERROR_CODE errorCode = 1561 NSERR_SSL_SESSDISABLED_ERROR_MESSAGE string = "Setting session timeout when session reuse is disabled" NSERR_SSL_PKEY_SIZE_ERROR_CODE errorCode = 1562 NSERR_SSL_PKEY_SIZE_ERROR_MESSAGE string = "Certificate with key size greater than RSA4096 or DSA2048 bits not supported" NSERR_SSL_NOT_APPLICABLE_ERROR_CODE errorCode = 1563 NSERR_SSL_NOT_APPLICABLE_ERROR_MESSAGE string = "Option is not applicable for this type of service" NSERR_CERTDNHEADER_ERROR_CODE errorCode = 1564 NSERR_CERTDNHEADER_ERROR_MESSAGE string = "Cert DN tag mandatory if cert-DN enabled" NSERR_CERTISSUERHEADER_ERROR_CODE errorCode = 1565 NSERR_CERTISSUERHEADER_ERROR_MESSAGE string = "Cert issuer tag mandatory if cert-issuer enabled" NSERR_CIPHERHEADER_ERROR_CODE errorCode = 1566 NSERR_CIPHERHEADER_ERROR_MESSAGE string = "Cipher tag mandatory if cipher header enabled" NSERR_SSL_INTERNALERR_ERROR_CODE errorCode = 1567 NSERR_SSL_INTERNALERR_ERROR_MESSAGE string = "Internal Error" NSERR_SSL_NOCACERT_ERROR_CODE errorCode = 1568 NSERR_SSL_NOCACERT_ERROR_MESSAGE string = "cacert does not exists" NSERR_SSL_REFRESHDIS_ERROR_CODE errorCode = 1569 NSERR_SSL_REFRESHDIS_ERROR_MESSAGE string = "crl refresh disabled" NSERR_SSL_SVRPORTNEEDED_ERROR_CODE errorCode = 1570 NSERR_SSL_SVRPORTNEEDED_ERROR_MESSAGE string = "Server/port information is needed for enabling auto refresh" NSERR_SSL_BASEOBJNEEDED_ERROR_CODE errorCode = 1571 NSERR_SSL_BASEOBJNEEDED_ERROR_MESSAGE string = "baseDN is required for enabling auto refresh" NSERR_SSL_CIPHER_REDIRECT_ERROR_CODE errorCode = 1572 NSERR_SSL_CIPHER_REDIRECT_ERROR_MESSAGE string = "Send Internal Cipher mismatch error page" NSERR_SSL_NODSA_ERROR_CODE errorCode = 1573 NSERR_SSL_NODSA_ERROR_MESSAGE string = "Loading of certificate and key of type DSA(DSS) is not supported with FIPS" NSERR_SSL_FIPSREFEXT_ERROR_CODE errorCode = 1574 NSERR_SSL_FIPSREFEXT_ERROR_MESSAGE string = "The FIPS key is referenced by a certificate" NSERR_SSL_NOFIPSKEY_ERROR_CODE errorCode = 1575 NSERR_SSL_NOFIPSKEY_ERROR_MESSAGE string = "No such FIPS key" NSERR_NOFIPSCARD_ERROR_CODE errorCode = 1576 NSERR_NOFIPSCARD_ERROR_MESSAGE string = "Operation not permitted - no FIPS card present in the system" NSERR_SDXNOFIPSCARD_ERROR_CODE errorCode = 2256 NSERR_SDXNOFIPSCARD_ERROR_MESSAGE string = "Operation not permitted - Either FIPS card not present or not initialized, check SVM/Dom0." NSERR_FIPSCARDNOTCONF_ERROR_CODE errorCode = 1577 NSERR_FIPSCARDNOTCONF_ERROR_MESSAGE string = "Operation not permitted - FIPS card is not configured" NSERR_SSL_SSLV2_REDIRECT_ERROR_CODE errorCode = 1578 NSERR_SSL_SSLV2_REDIRECT_ERROR_MESSAGE string = "Send Internal SSL protocol mismatch error page" NSERR_SSL_MODSIZE64_ERROR_CODE errorCode = 1579 NSERR_SSL_MODSIZE64_ERROR_MESSAGE string = "Modulus size in bytes should be multiple of 64" NSERR_SSL_NONFIPSKEY_ERROR_CODE errorCode = 1580 NSERR_SSL_NONFIPSKEY_ERROR_MESSAGE string = "Configuration of non-FIPS key on FIPS system not allowed" NSERR_NFIPS_FIPS_UPD_ERROR_CODE errorCode = 1581 NSERR_NFIPS_FIPS_UPD_ERROR_MESSAGE string = "Cannot update a non-FIPS certificate with a FIPS certificate" NSERR_FIPS_NFIPS_UPD_ERROR_CODE errorCode = 1582 NSERR_FIPS_NFIPS_UPD_ERROR_MESSAGE string = "Cannot update a FIPS certificate with a non-FIPS certificate" NSERR_SSL_ISSUER_NOTIN_GLBCERTLIST_ERROR_CODE errorCode = 1583 NSERR_SSL_ISSUER_NOTIN_GLBCERTLIST_ERROR_MESSAGE string = "Unable to find the CA certificate for the CRL" NSERR_SSL_CRLSIGCHECK_FAIL_ERROR_CODE errorCode = 1584 NSERR_SSL_CRLSIGCHECK_FAIL_ERROR_MESSAGE string = "Signature check on the CRL failed" NSERR_SSL_PORTREWRITE_ERROR_CODE errorCode = 1585 NSERR_SSL_PORTREWRITE_ERROR_MESSAGE string = "SSL port rewrite can be enabled only when SSL redirect is enabled" NSERR_SSL_SSLV2_RENEG_CLIENT_CERT_ERROR_CODE errorCode = 1586 NSERR_SSL_SSLV2_RENEG_CLIENT_CERT_ERROR_MESSAGE string = "Send Internal error page for SSLv2 protocol and client authentication with session renegotiation" NSERR_SSL_BRKLINK_ERROR_CODE errorCode = 1587 NSERR_SSL_BRKLINK_ERROR_MESSAGE string = "All incompatible CA links/Cert bindings were broken during the update operation" NSERR_SSL_CERT_NOT_YET_VALID_ERROR_CODE errorCode = 1588 NSERR_SSL_CERT_NOT_YET_VALID_ERROR_MESSAGE string = "The specified certificate is not yet valid" NSERR_SSL_CERT_EXPIRED_ERROR_CODE errorCode = 1589 NSERR_SSL_CERT_EXPIRED_ERROR_MESSAGE string = "The certificate has expired" NSERR_SSL_EXPIRED_BRKLINK_ERROR_CODE errorCode = 1590 NSERR_SSL_EXPIRED_BRKLINK_ERROR_MESSAGE string = "All incompatible CA links were broken during the update operation. (Note: the certificate has expired)" NSERR_SSL_NYVALID_BRKLINK_ERROR_CODE errorCode = 1591 NSERR_SSL_NYVALID_BRKLINK_ERROR_MESSAGE string = "All incompatible CA links were broken during the update operation. (Note: the certificate is not yet valid)" NSERR_SSL_OCSP_RESPCERT_ERROR_CODE errorCode = 1592 NSERR_SSL_OCSP_RESPCERT_ERROR_MESSAGE string = "No such responder certificate." NSERR_SSL_OCSP_SIGNCERT_ERROR_CODE errorCode = 1593 NSERR_SSL_OCSP_SIGNCERT_ERROR_MESSAGE string = "No such signing certificate." NSERR_SSL_NO_SESS_TKT_ERROR_CODE errorCode = 1594 NSERR_SSL_NO_SESS_TKT_ERROR_MESSAGE string = "Session Ticket feature is not supported on FIPS platform" NSERR_SSL_OCSP_INVALID_AIA_ERROR_CODE errorCode = 1595 NSERR_SSL_OCSP_INVALID_AIA_ERROR_MESSAGE string = "Invalid OCSP AIA URL found" NSERR_SSL_OCSP_AIA_LEN_NOT_SUPPORTED_ERROR_CODE errorCode = 1596 NSERR_SSL_OCSP_AIA_LEN_NOT_SUPPORTED_ERROR_MESSAGE string = "OCSP AIA URL length is should be <126" NSERR_SSL_SSL3_SUPPORT_ERROR_CODE errorCode = 1597 NSERR_SSL_SSL3_SUPPORT_ERROR_MESSAGE string = "Enabling of SSLv3 is not supported on this platform." NSERR_SSL_BOUNDTO_SSLACTION_ERROR_CODE errorCode = 1598 NSERR_SSL_BOUNDTO_SSLACTION_ERROR_MESSAGE string = "Vserver cannot be removed as it's referenced by one or more SSL Actions. Remove SSL action(s) prior to removing vserver." NSERR_SSL_INVALID_SESS_TKT_DATA_ERROR_CODE errorCode = 1599 NSERR_SSL_INVALID_SESS_TKT_DATA_ERROR_MESSAGE string = "invalid session ticket key data len, length should be 64 bytes" NSERR_SSL_SAME_VS_IN_FORWARD_ERROR_CODE errorCode = 1600 NSERR_SSL_SAME_VS_IN_FORWARD_ERROR_MESSAGE string = "Vserver to which packets will be forwarded cannot be same as the vserver to which this policy is getting bound." NSERR_NAME_ALPHANUM_DASH_DOT_ERROR_CODE errorCode = 3358 NSERR_NAME_ALPHANUM_DASH_DOT_ERROR_MESSAGE string = "Name must begin with a letter followed by letters, digits or dots." NSERR_SSL_PROFILE_SSLI_NOT_ALLOWED_ERROR_CODE errorCode = 3370 NSERR_SSL_PROFILE_SSLI_NOT_ALLOWED_ERROR_MESSAGE string = "SSL interception can only be enabled on profile bound to proxy vserver" NSERR_SSL_CTX_SSLI_PROFILE_NOT_ALLOWED_ERROR_CODE errorCode = 3371 NSERR_SSL_CTX_SSLI_PROFILE_NOT_ALLOWED_ERROR_MESSAGE string = "Profile with SSL interception enabled cannot be set on non proxy vservers" NSERR_SSL_PROFILE_SSLI_CLUSTER_NOT_SUPPORTED_ERROR_CODE errorCode = 3372 NSERR_SSL_PROFILE_SSLI_CLUSTER_NOT_SUPPORTED_ERROR_MESSAGE string = "SSL interception is not supported on cluster" NSERR_SSL_DEFAULT_PROFILE_SSLI_NOT_SUPPORTED_ERROR_CODE errorCode = 3373 NSERR_SSL_DEFAULT_PROFILE_SSLI_NOT_SUPPORTED_ERROR_MESSAGE string = "SSL interception cannot be enabled on default frontend SSL profile" NSERR_SSL_CERT_BOUND_TO_AAA_FEATURE_ERROR_CODE errorCode = 3374 NSERR_SSL_CERT_BOUND_TO_AAA_FEATURE_ERROR_MESSAGE string = "SSL certificate is used for encrypting user data and can not be updated" NSERR_SSL_CERT_BOUND_TO_ADFSPROXY_PROFILE_ERROR_CODE errorCode = 3375 NSERR_SSL_CERT_BOUND_TO_ADFSPROXY_PROFILE_ERROR_MESSAGE string = "SSL certificate is bound to a adfsproxy profile and cannot be updated" NSERR_SSL_CERT_LINK_NOT_ALLOWED_ERROR_CODE errorCode = 3418 NSERR_SSL_CERT_LINK_NOT_ALLOWED_ERROR_MESSAGE string = "SSL certificate link can be done only for Non CA certificates" NSERR_SSL_DTLS12_SUPPORT_ERROR_CODE errorCode = 3391 NSERR_SSL_DTLS12_SUPPORT_ERROR_MESSAGE string = "DTLSv1.2 is not supported on this entity/platform." NSERR_SSL_ERR_HTTPS_ONLY_ERROR_CODE errorCode = 3419 NSERR_SSL_ERR_HTTPS_ONLY_ERROR_MESSAGE string = "Invalid Protocol. Only HTTPS supported." NSERR_SSL_PROFILE_SSLI_ADMIN_PARTITION_NOT_ALLOWED_ERROR_CODE errorCode = 3420 NSERR_SSL_PROFILE_SSLI_ADMIN_PARTITION_NOT_ALLOWED_ERROR_MESSAGE string = "SSL interception is not supported in non-default partition" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#ssl2-errors NSERR_SSL_FIPSCARDLOCKED_ERROR_CODE errorCode = 3584 NSERR_SSL_FIPSCARDLOCKED_ERROR_MESSAGE string = "FIPS card locked due to three unsuccessful login attempts" NSERR_SSL_DOMINCOMPAT_ERROR_CODE errorCode = 3585 NSERR_SSL_DOMINCOMPAT_ERROR_MESSAGE string = "Certificate is registered to a different domain; use the 'no domain check' option to force the operation" NSERR_SSL_NOMTHDCHANGE_ERROR_CODE errorCode = 3586 NSERR_SSL_NOMTHDCHANGE_ERROR_MESSAGE string = "Cannot change refresh method of CRL" NSERR_SSL_URLSRVRNEEDED_ERROR_CODE errorCode = 3587 NSERR_SSL_URLSRVRNEEDED_ERROR_MESSAGE string = "Either URL or server-IP required on CRL" NSERR_SSL_INVALID_URL_ERROR_CODE errorCode = 3588 NSERR_SSL_INVALID_URL_ERROR_MESSAGE string = "Invalid URL" NSERR_SSL_MIXPARAMS_ERROR_CODE errorCode = 3589 NSERR_SSL_MIXPARAMS_ERROR_MESSAGE string = "LDAP and HTTP parameters cannot both be specified" NSERR_SSL_PKEY_MINSIZE_ERROR_CODE errorCode = 3590 NSERR_SSL_PKEY_MINSIZE_ERROR_MESSAGE string = "Certificate of size smaller than 512 bits not supported" NSERR_SSL_SYNCINPROGRESS_ERROR_CODE errorCode = 3591 NSERR_SSL_SYNCINPROGRESS_ERROR_MESSAGE string = "Another synchronization is already in process, please try again later" NSERR_SSL_SYNCFAILED_ERROR_CODE errorCode = 3592 NSERR_SSL_SYNCFAILED_ERROR_MESSAGE string = "Synchronization failed, please try again" NSERR_SSL_CIPHGRP_REFCNT_ERROR_CODE errorCode = 3593 NSERR_SSL_CIPHGRP_REFCNT_ERROR_MESSAGE string = "Cipher group has bound entities or is referenced by an SSL vserver or SSL service" NSERR_SSL_CVM_NODSA_ERROR_CODE errorCode = 3594 NSERR_SSL_CVM_NODSA_ERROR_MESSAGE string = "Loading DSA(DSS) certificate and key not supported on this platform" NSERR_CERTHASHHEADER_ERROR_CODE errorCode = 3595 NSERR_CERTHASHHEADER_ERROR_MESSAGE string = "CertHash header tag mandatory if certHash is enabled" NSERR_SSL_CRLINREFRESH_ERROR_CODE errorCode = 3596 NSERR_SSL_CRLINREFRESH_ERROR_MESSAGE string = "CRL refresh in progress, details cannot be displayed" NSERR_SSL_CRLMEM_EXCEEDS_ERROR_CODE errorCode = 3597 NSERR_SSL_CRLMEM_EXCEEDS_ERROR_MESSAGE string = "CRL memory exhausted. Cannot load any more CRL's" NSERR_SSL_CRLINDELETION_ERROR_CODE errorCode = 3598 NSERR_SSL_CRLINDELETION_ERROR_MESSAGE string = "CRL deletion in progress, details cannot be displayed" NSERR_SSL_INDELETE_NOREFRESH_ERROR_CODE errorCode = 3599 NSERR_SSL_INDELETE_NOREFRESH_ERROR_MESSAGE string = "CRL deletion in progress, cannot be refreshed" NSERR_SSL_INREFRESH_NODELETE_ERROR_CODE errorCode = 3600 NSERR_SSL_INREFRESH_NODELETE_ERROR_MESSAGE string = "CRL refresh in progress, cannot be removed" NSERR_NOMIX_ERROR_CODE errorCode = 3601 NSERR_NOMIX_ERROR_MESSAGE string = "Cannot specify both HTTP data insertion and SSL actions" NSERR_NOPOLICY_NONTRSVC_ERROR_CODE errorCode = 3602 NSERR_NOPOLICY_NONTRSVC_ERROR_MESSAGE string = "Cannot bind SSL policy to SSL backend service" NSERR_SSL_SSLPOL_BIND_CONST_ERROR_CODE errorCode = 3603 NSERR_SSL_SSLPOL_BIND_CONST_ERROR_MESSAGE string = "Cannot bind non-SSL policy to SSL vserver/service" NSERR_SSL_NO_USABLE_CIPHERS_ERROR_CODE errorCode = 3604 NSERR_SSL_NO_USABLE_CIPHERS_ERROR_MESSAGE string = "No usable ciphers configured on the SSL vserver/service" NSERR_SSL_CERT_NOT_CA_ERROR_CODE errorCode = 3605 NSERR_SSL_CERT_NOT_CA_ERROR_MESSAGE string = "Not a CA certificate" NSERR_SSL_CACERT_NO_CRLSIGN_ERROR_CODE errorCode = 3606 NSERR_SSL_CACERT_NO_CRLSIGN_ERROR_MESSAGE string = "Specified certificate is either not a CA cert, or does not have privileges to issue CRLs" NSERR_SSL_CRL_EXPIRED_ERROR_CODE errorCode = 3607 NSERR_SSL_CRL_EXPIRED_ERROR_MESSAGE string = "CRL has expired" NSERR_SSL_CRL_NOTYET_VALID_ERROR_CODE errorCode = 3608 NSERR_SSL_CRL_NOTYET_VALID_ERROR_MESSAGE string = "CRL is not yet valid" NSERR_SSL_PARSING_DELTA_CRL_EXTN_ERROR_CODE errorCode = 3609 NSERR_SSL_PARSING_DELTA_CRL_EXTN_ERROR_MESSAGE string = "Parsing of Delta-CRL extension failed" NSERR_SSL_DELTA_CRL_MISSING_BASE_CRL_ERROR_CODE errorCode = 3610 NSERR_SSL_DELTA_CRL_MISSING_BASE_CRL_ERROR_MESSAGE string = "Base-CRL for the specified Delta-CRL is missing" NSERR_NOFIPSCIPHER_ERROR_CODE errorCode = 3611 NSERR_NOFIPSCIPHER_ERROR_MESSAGE string = "Specified cipher/cipher-alias is not FIPS-approved" NSERR_NOFIPSCIPHERGRP_ERROR_CODE errorCode = 3612 NSERR_NOFIPSCIPHERGRP_ERROR_MESSAGE string = "Cipher group does not contain all FIPS-approved ciphers" NSERR_NONFIPSCIPHERTOGRP_ERROR_CODE errorCode = 3613 NSERR_NONFIPSCIPHERTOGRP_ERROR_MESSAGE string = "Cannot add non FIPS approved cipher to cipher group" NSERR_NONFIPSALIASTOGRP_ERROR_CODE errorCode = 3614 NSERR_NONFIPSALIASTOGRP_ERROR_MESSAGE string = "Cannot add non FIPS approved cipher alias to cipher group" NSERR_NONFIPSGROUPTOGRP_ERROR_CODE errorCode = 3615 NSERR_NONFIPSGROUPTOGRP_ERROR_MESSAGE string = "Cannot add non FIPS cipher group to another cipher group" NSERR_SSL_IMPORT_FIPSKEY_NAME_MISMATCH_ERROR_CODE errorCode = 3616 NSERR_SSL_IMPORT_FIPSKEY_NAME_MISMATCH_ERROR_MESSAGE string = "Specified FIPS key name does not match with the exported FIPS key name" NSERR_SSL_PKEY_SIZE_CA_ERROR_CODE errorCode = 3617 NSERR_SSL_PKEY_SIZE_CA_ERROR_MESSAGE string = "CA certificate of size greater than 4096 bits not supported" NSERR_SSL_CRL_PORT_MISMATCH_ERROR_CODE errorCode = 3618 NSERR_SSL_CRL_PORT_MISMATCH_ERROR_MESSAGE string = "Port specified in URL does not match -port parameter" NSERR_SSL_PKEY_SIZE_VPX_ERROR_CODE errorCode = 3619 NSERR_SSL_PKEY_SIZE_VPX_ERROR_MESSAGE string = "Certificate with key size greater than RSA512 or DSA512 bits not supported" NSERR_SSL_DH_SIZE_VPX_ERROR_CODE errorCode = 3620 NSERR_SSL_DH_SIZE_VPX_ERROR_MESSAGE string = "DH params of size greater than 512 bits not supported" NSERR_NOENT_CIPHER_ERROR_CODE errorCode = 3621 NSERR_NOENT_CIPHER_ERROR_MESSAGE string = "No such cipher/cipherAlias/cipherGroup" NSERR_FIPSFWWRONGMAJOR_ERROR_CODE errorCode = 3622 NSERR_FIPSFWWRONGMAJOR_ERROR_MESSAGE string = "The current firmware's major version is not supported for update operation" NSERR_FIPSFWWRONGMINOR_ERROR_CODE errorCode = 3623 NSERR_FIPSFWWRONGMINOR_ERROR_MESSAGE string = "The current firmware's minor version is not supported for update operation" NSERR_FIPSFWUPDATED_ERROR_CODE errorCode = 3624 NSERR_FIPSFWUPDATED_ERROR_MESSAGE string = "The current firmware is already updated to 4.6.1" NSERR_SSL_PENDING_CMDS_ERROR_CODE errorCode = 3625 NSERR_SSL_PENDING_CMDS_ERROR_MESSAGE string = "" /* 128-byte string literal not displayed */ NSERR_FIPSFWUPDATEDOREBOOT_ERROR_CODE errorCode = 3626 NSERR_FIPSFWUPDATEDOREBOOT_ERROR_MESSAGE string = "Operation not permitted - FIPS card firmware update done, please reboot the system" NSERR_SSL_SNI_NOTENABLE_ERROR_CODE errorCode = 3627 NSERR_SSL_SNI_NOTENABLE_ERROR_MESSAGE string = "SNI feature not enabled on the vserver/service" NSERR_SSL_NO_CN_ERROR_CODE errorCode = 3628 NSERR_SSL_NO_CN_ERROR_MESSAGE string = "CommonName not present in certificate, it is must for a certificate to use for SNI" NSERR_SSL_DUP_SNICERT_ERROR_CODE errorCode = 3629 NSERR_SSL_DUP_SNICERT_ERROR_MESSAGE string = "Trying to bind SNI certificate with duplicate CommonName, operation failed" NSERR_SSL_SNI_NOTVALID_SERV_ERROR_CODE errorCode = 3630 NSERR_SSL_SNI_NOTVALID_SERV_ERROR_MESSAGE string = "Operation not permitted - SNI feature not supported on internal service" NSERR_SSL_NOT_SUPPORTED_ON_PLATFORM_ERROR_CODE errorCode = 3631 NSERR_SSL_NOT_SUPPORTED_ON_PLATFORM_ERROR_MESSAGE string = "Feature not supported on this platform" NSERR_OCSP_REFERENCES_ERROR_CODE errorCode = 3632 NSERR_OCSP_REFERENCES_ERROR_MESSAGE string = "OCSP responder is bound to a vserver/certkey pair. Use unbind ssl certkey." NSERR_OCSP_SIGNER_NOKEY_ERROR_CODE errorCode = 3633 NSERR_OCSP_SIGNER_NOKEY_ERROR_MESSAGE string = "Signing certificate must also have a private key." NSERR_SSL_NOT_SUPPORTED_ERROR_CODE errorCode = 3634 NSERR_SSL_NOT_SUPPORTED_ERROR_MESSAGE string = "OCSP responder must be an HTTP server; SSL is not supported." NSERR_OCSP_TOO_MANY_RESPONDERS_ERROR_CODE errorCode = 3635 NSERR_OCSP_TOO_MANY_RESPONDERS_ERROR_MESSAGE string = "Too many OCSP responders configured to add another. Please delete some and try again." NSERR_OCSP_NO_DNS_SERVER_CONFIGURED_ERROR_CODE errorCode = 3636 NSERR_OCSP_NO_DNS_SERVER_CONFIGURED_ERROR_MESSAGE string = "Unable to resolve DNS name." NSERR_SSL_DUP_SNICERT_BRKLINK_ERROR_CODE errorCode = 3637 NSERR_SSL_DUP_SNICERT_BRKLINK_ERROR_MESSAGE string = "Some of the existing SNI cert bindings are broken due to presence of certificate with duplicate Common Name." NSERR_SSL_NO_CN_BRLLINK_ERROR_CODE errorCode = 3638 NSERR_SSL_NO_CN_BRLLINK_ERROR_MESSAGE string = "All exitsing SNI Cert bindings are broken during update operation due to missing Common Name." NSERR_NGFIPSRESETREBOOT_ERROR_CODE errorCode = 3639 NSERR_NGFIPSRESETREBOOT_ERROR_MESSAGE string = "Operation not permitted - FIPS card was reset, please reboot the system" NSERR_NGFIPSINITREBOOT_ERROR_CODE errorCode = 3640 NSERR_NGFIPSINITREBOOT_ERROR_MESSAGE string = "Operation not permitted - FIPS card was initialized, please reboot the system" NSERR_FIPSCMDTIMEOUT_ERROR_CODE errorCode = 3641 NSERR_FIPSCMDTIMEOUT_ERROR_MESSAGE string = "Operation timedout on the FIPS card, please try again" NSERR_SSL_SIMTIMEOUT_ERROR_CODE errorCode = 3642 NSERR_SSL_SIMTIMEOUT_ERROR_MESSAGE string = "Operation timed out or repeated, please wait for 10 mins and redo the SIM/HA configuration steps." NSERR_SSL_NGFIPS_QFULL_ERROR_CODE errorCode = 3643 NSERR_SSL_NGFIPS_QFULL_ERROR_MESSAGE string = "FIPS card command queue full. Please try again later" NSERR_SSL_NOMEM_VSVRSRVLISTNODE_ERROR_CODE errorCode = 3644 NSERR_SSL_NOMEM_VSVRSRVLISTNODE_ERROR_MESSAGE string = "Failed to allocate memory for CertkeyVserverServList Node." NSERR_SSL_CERTKEY_SIZE64_ERROR_CODE errorCode = 3645 NSERR_SSL_CERTKEY_SIZE64_ERROR_MESSAGE string = "Certificate with key size (modulus) that is not multiple of 512 bits is not supported" NSERR_SNI_ATK_ERROR_CODE errorCode = 3646 NSERR_SNI_ATK_ERROR_MESSAGE string = "Host header field in the HTTP request does not match with the SNI domain name" NSERR_SNI_NOHOSTHDR_ERROR_CODE errorCode = 3647 NSERR_SNI_NOHOSTHDR_ERROR_MESSAGE string = "Host header missing in the HTTP header for SNI enabled session" NSERR_CRL_SHMEM_ALLOC_FAIL_ERROR_CODE errorCode = 3648 NSERR_CRL_SHMEM_ALLOC_FAIL_ERROR_MESSAGE string = "Crl node allocation in the shared mem is failed" NSERR_SSL_NOT_CTL_POL_ERROR_CODE errorCode = 3650 NSERR_SSL_NOT_CTL_POL_ERROR_MESSAGE string = "Not a control policy" NSERR_SSL_NOT_DATA_POL_ERROR_CODE errorCode = 3651 NSERR_SSL_NOT_DATA_POL_ERROR_MESSAGE string = "Not a data policy" NSERR_SSL_TYPE_REQD_ERROR_CODE errorCode = 3652 NSERR_SSL_TYPE_REQD_ERROR_MESSAGE string = "Type is required" NSERR_SSL_CERT_MISSING_PARAM_ERROR_CODE errorCode = 3655 NSERR_SSL_CERT_MISSING_PARAM_ERROR_MESSAGE string = "Required parameters missing in the certificate. Please check the certificate for completeness" NSERR_SSL_NOMEM_CERTKEY_OCSPRESP_LISTNODE_ERROR_CODE errorCode = 3656 NSERR_SSL_NOMEM_CERTKEY_OCSPRESP_LISTNODE_ERROR_MESSAGE string = "Failed to allocate memory for CertkeyOCSPRespList Node." NSERR_SSL_OCSP_DUPLICATE_ERROR_CODE errorCode = 3657 NSERR_SSL_OCSP_DUPLICATE_ERROR_MESSAGE string = "An ocspResponder is already bound with the specified priority." NSERR_SSL_BUNDLE_IC_FILE_EXISTS_ERROR_CODE errorCode = 3660 NSERR_SSL_BUNDLE_IC_FILE_EXISTS_ERROR_MESSAGE string = "Certificate file for intermediate certificate already exists." NSERR_SSL_BUNDLE_SCERT_MISSING_ERROR_CODE errorCode = 3661 NSERR_SSL_BUNDLE_SCERT_MISSING_ERROR_MESSAGE string = "Server certificate must be placed first in certificate bundle file." NSERR_SSL_BUNDLE_CERT_MISSING_ERROR_CODE errorCode = 3662 NSERR_SSL_BUNDLE_CERT_MISSING_ERROR_MESSAGE string = "No certificates present in the certificate bundle file." NSERR_SSL_BUNDLE_FAILED_ERROR_CODE errorCode = 3663 NSERR_SSL_BUNDLE_FAILED_ERROR_MESSAGE string = "Processing of certificate bundle file failed." NSERR_SSL_BUNDLE_PARSE_ERR_ERROR_CODE errorCode = 3664 NSERR_SSL_BUNDLE_PARSE_ERR_ERROR_MESSAGE string = "Unable to parse the certificate bundle file." NSERR_SSL_BUNDLE_MAX_CERT_ERROR_CODE errorCode = 3665 NSERR_SSL_BUNDLE_MAX_CERT_ERROR_MESSAGE string = "Exceeded maximum Intermediate certificates limit of 9." NSERR_SSL_BUNDLE_MAX_KEY_ERROR_CODE errorCode = 3666 NSERR_SSL_BUNDLE_MAX_KEY_ERROR_MESSAGE string = "Only one private-key is allowed in the certificate bundle file." NSERR_SSL_BUNDLE_IC_FILE_CREATE_FAILED_ERROR_CODE errorCode = 3667 NSERR_SSL_BUNDLE_IC_FILE_CREATE_FAILED_ERROR_MESSAGE string = "Intermediate certificate file creation failed." NSERR_SSL_SKIPCA_OPNOTPER_ERROR_CODE errorCode = 3668 NSERR_SSL_SKIPCA_OPNOTPER_ERROR_MESSAGE string = "skipCA is not permitted for this entity." NSERR_SSL_ISSUER_MISMATCH_ERROR_CODE errorCode = 3669 NSERR_SSL_ISSUER_MISMATCH_ERROR_MESSAGE string = "Certificate Issuer mismatch" NSERR_SSL_SET_POLICY_ACTION_TYPE_ERROR_CODE errorCode = 3670 NSERR_SSL_SET_POLICY_ACTION_TYPE_ERROR_MESSAGE string = "Action type cannot be changed from the previous configured action type" NSERR_SSL_DTLS_NOTSUPP_ERROR_CODE errorCode = 3671 NSERR_SSL_DTLS_NOTSUPP_ERROR_MESSAGE string = "Server/Service of type DTLS is not supported on this platform" NSERR_SSL_INVALID_CN_NAME_ERROR_CODE errorCode = 3672 NSERR_SSL_INVALID_CN_NAME_ERROR_MESSAGE string = "Invalid Common Name." NSERR_SSL_ECC_NOT_SUPPORTED_ERROR_CODE errorCode = 3673 NSERR_SSL_ECC_NOT_SUPPORTED_ERROR_MESSAGE string = "ECDHE ciphers supported only on FE SSL entities on VPX, MPX and BE MPX" NSERR_SSL_NO_PROTOCOL_ENABLED_ERROR_CODE errorCode = 3674 NSERR_SSL_NO_PROTOCOL_ENABLED_ERROR_MESSAGE string = "SSL or TLS protocols not enabled on the service." NSERR_SSL_SSL2_NOT_SUPPORTED_ERROR_CODE errorCode = 3675 NSERR_SSL_SSL2_NOT_SUPPORTED_ERROR_MESSAGE string = "SSLv2 not supported in this release" NSERR_DTLS_PROFILE_REFEXT_ERROR_CODE errorCode = 3676 NSERR_DTLS_PROFILE_REFEXT_ERROR_MESSAGE string = "DTLS profile is referenced by a vserver or front-end service." NSERR_SSL_NO_ECC_CURVES_ERROR_CODE errorCode = 3677 NSERR_SSL_NO_ECC_CURVES_ERROR_MESSAGE string = "No ECC curves bound for ECDHE ciphers." NSERR_CRYPTODEV_MAX_LIMIT_ERROR_CODE errorCode = 3678 NSERR_CRYPTODEV_MAX_LIMIT_ERROR_MESSAGE string = "Crypto Device count exceeds maximum available." NSERR_SSL_PROFILE_ATTACHED_ERROR_CODE errorCode = 3679 NSERR_SSL_PROFILE_ATTACHED_ERROR_MESSAGE string = "Operation not permitted. Use set ssl profile for setting these parameters." NSERR_SSL_PROFILE_USED_ERROR_CODE errorCode = 3680 NSERR_SSL_PROFILE_USED_ERROR_MESSAGE string = "Profile is being used by Virtual Server, Service or Monitor." NSERR_SSL_PROFILE_NOT_VAILD_PARAM_ERROR_CODE errorCode = 3681 NSERR_SSL_PROFILE_NOT_VAILD_PARAM_ERROR_MESSAGE string = "Specified parameters are not applicable for this type of SSL profile." NSERR_IMPORT_SSL_INVALID_DHFILE_ERROR_OBJECT_ERROR_CODE errorCode = 3682 NSERR_IMPORT_SSL_INVALID_DHFILE_ERROR_OBJECT_ERROR_MESSAGE string = "Import failed:DH file being imported is invalid." NSERR_IMPORT_SSL_INVALID_CRLFILE_ERROR_OBJECT_ERROR_CODE errorCode = 3683 NSERR_IMPORT_SSL_INVALID_CRLFILE_ERROR_OBJECT_ERROR_MESSAGE string = "Import failed:CRL file being imported is invalid." NSERR_IMPORT_SSL_INVALID_CERTFILE_ERROR_OBJECT_ERROR_CODE errorCode = 3684 NSERR_IMPORT_SSL_INVALID_CERTFILE_ERROR_OBJECT_ERROR_MESSAGE string = "Import failed:Certificate file being imported is invalid" NSERR_IMPORT_SSL_INVALID_KEYFILE_ERROR_OBJECT_ERROR_CODE errorCode = 3685 NSERR_IMPORT_SSL_INVALID_KEYFILE_ERROR_OBJECT_ERROR_MESSAGE string = "Import failed:Key file being imported is invalid" NSERR_FIPSFW_FILEPATH_ERROR_CODE errorCode = 3686 NSERR_FIPSFW_FILEPATH_ERROR_MESSAGE string = "Invalid firmware file path" NSERR_FIPSFW_FILEOPEN_ERROR_CODE errorCode = 3687 NSERR_FIPSFW_FILEOPEN_ERROR_MESSAGE string = "Unable to open firmware file" NSERR_FIPSFW_FILEIO_ERROR_CODE errorCode = 3688 NSERR_FIPSFW_FILEIO_ERROR_MESSAGE string = "Read error occurred for firmware file" NSERR_FIPSFW_FSTAT_ERROR_CODE errorCode = 3689 NSERR_FIPSFW_FSTAT_ERROR_MESSAGE string = "Failed to get status of firmware file" NSERR_FIPSFW_AUTH_FILEPATH_ERROR_CODE errorCode = 3690 NSERR_FIPSFW_AUTH_FILEPATH_ERROR_MESSAGE string = "Invalid firmware signature file path" NSERR_FIPSFW_AUTH_FILEOPEN_ERROR_CODE errorCode = 3691 NSERR_FIPSFW_AUTH_FILEOPEN_ERROR_MESSAGE string = "Unable to open firmware signature file" NSERR_FIPSFW_AUTH_FILEIO_ERROR_CODE errorCode = 3692 NSERR_FIPSFW_AUTH_FILEIO_ERROR_MESSAGE string = "Read error occurred for firmware signature file" NSERR_FIPSFW_AUTH_FSTAT_ERROR_CODE errorCode = 3693 NSERR_FIPSFW_AUTH_FSTAT_ERROR_MESSAGE string = "Failed to get status of firmware signature file" NSERR_FIPSFW_BEGIN_ERROR_ERROR_CODE errorCode = 3694 NSERR_FIPSFW_BEGIN_ERROR_ERROR_MESSAGE string = "Firmware update process failed BEGIN command" NSERR_FIPSFW_UPDATE_ERROR_ERROR_CODE errorCode = 3695 NSERR_FIPSFW_UPDATE_ERROR_ERROR_MESSAGE string = "Firmware update process failed UPDATE command" NSERR_FIPSFW_END_ERROR_ERROR_CODE errorCode = 3696 NSERR_FIPSFW_END_ERROR_ERROR_MESSAGE string = "Firmware update process failed END command" NSERR_FIPSFW_STATE_ERROR_ERROR_CODE errorCode = 3697 NSERR_FIPSFW_STATE_ERROR_ERROR_MESSAGE string = "Firmware update process failed, invalid state" NSERR_FIPSFW_INVALID_CHUNK_TYPE_ERROR_CODE errorCode = 3698 NSERR_FIPSFW_INVALID_CHUNK_TYPE_ERROR_MESSAGE string = "Firmware update process failed, invalid chunk type" NSERR_SSL_OCSP_WITH_CK_HSMKEY_ERROR_CODE errorCode = 3699 NSERR_SSL_OCSP_WITH_CK_HSMKEY_ERROR_MESSAGE string = "Configuration of OCSP signing certificate with external HSM key not supported." NSERR_SSL_HSMKEY_DEFLOCATION_ERROR_CODE errorCode = 3700 NSERR_SSL_HSMKEY_DEFLOCATION_ERROR_MESSAGE string = "Input HSM Key Simple file not present under the default directory /var/opt/nfast/kmdata/local/" NSERR_SSL_HSMKEY_IDENT_MISMATCH_ERROR_CODE errorCode = 3701 NSERR_SSL_HSMKEY_IDENT_MISMATCH_ERROR_MESSAGE string = "HSM Key Name must be same as HSM Key Ident" NSERR_SSL_HSMKEY_DTLS_ERROR_CODE errorCode = 3702 NSERR_SSL_HSMKEY_DTLS_ERROR_MESSAGE string = "HSM Key bind with DTLS Vserver is not supported." NSERR_SSL_HSMKEY_BUNDLE_ERROR_CODE errorCode = 3703 NSERR_SSL_HSMKEY_BUNDLE_ERROR_MESSAGE string = "Addition of certificate-bundle with external HSM Key is not supported." NSERR_CPE_EXPRESSION_PARTITION_INVALID_ERROR_CODE errorCode = 3704 NSERR_CPE_EXPRESSION_PARTITION_INVALID_ERROR_MESSAGE string = "Classic expression is not supported in current partition." NSERR_AP_INVALID_EXPRESSION_ERROR_CODE errorCode = 3705 NSERR_AP_INVALID_EXPRESSION_ERROR_MESSAGE string = "Expression value not supported." NSERR_SSL_DH_BUSY_ERROR_CODE errorCode = 3706 NSERR_SSL_DH_BUSY_ERROR_MESSAGE string = "DH Param in use. Please try later..." NSERR_FIPSFW22_MINKEYSIZE_ERROR_CODE errorCode = 3707 NSERR_FIPSFW22_MINKEYSIZE_ERROR_MESSAGE string = "Key size less than 2048 is not supported on FIPS Firmware Version 2.2." NSERR_SSL_MAXSAN_ERROR_CODE errorCode = 3708 NSERR_SSL_MAXSAN_ERROR_MESSAGE string = "Maximum number of SANs reached" NSERR_SSL_BADSNICERT_ERROR_CODE errorCode = 3709 NSERR_SSL_BADSNICERT_ERROR_MESSAGE string = "Bad SNI certificate" NSERR_SSL_AESGCM_SHA2_NOT_SUPPORTED_ERROR_CODE errorCode = 3710 NSERR_SSL_AESGCM_SHA2_NOT_SUPPORTED_ERROR_MESSAGE string = "SHA2 ciphers not supported on VPX and FIPS" NSERR_SSL_NOCIPHERGRP_ERROR_CODE errorCode = 3711 NSERR_SSL_NOCIPHERGRP_ERROR_MESSAGE string = "Cipher Group does not exist." NSERR_SSL_SVCVSR_NOT_FOUND_ERROR_CODE errorCode = 3712 NSERR_SSL_SVCVSR_NOT_FOUND_ERROR_MESSAGE string = "No SSL vserver/service found with this name." NSERR_SSL_DEF_DTLS_PROFILE_ERROR_CODE errorCode = 3713 NSERR_SSL_DEF_DTLS_PROFILE_ERROR_MESSAGE string = "Cannot modify default DTLS profile." NSERR_SSL_NOSSLV2REDIRECTOPT_ON_FIPS_ERROR_CODE errorCode = 3714 NSERR_SSL_NOSSLV2REDIRECTOPT_ON_FIPS_ERROR_MESSAGE string = "Sslv2 Redirect option is not permitted on MPX-FIPS platform." NSERR_SSL_OP_ON_NONFIPS_NOT_PERM_ERROR_CODE errorCode = 3715 NSERR_SSL_OP_ON_NONFIPS_NOT_PERM_ERROR_MESSAGE string = "Operation permitted only on MPX-FIPS platform." NSERR_SSL_LOAD_KEYS_ERROR_CODE errorCode = 3716 NSERR_SSL_LOAD_KEYS_ERROR_MESSAGE string = "Loading of internal keys failed." NSERR_SSL_PASSWORD_DECODE_ERROR_CODE errorCode = 3717 NSERR_SSL_PASSWORD_DECODE_ERROR_MESSAGE string = "Decode of the encrypted passphrase failed." NSERR_SSL_NOCERT_FILE_ERROR_CODE errorCode = 3718 NSERR_SSL_NOCERT_FILE_ERROR_MESSAGE string = "Certificate file name not specified." NSERR_SSL_DEFAULT_CERT_DEL_ERROR_CODE errorCode = 3719 NSERR_SSL_DEFAULT_CERT_DEL_ERROR_MESSAGE string = "Cannot delete internal default certificate." NSERR_SSL_FIPS_CERT_ERROR_CODE errorCode = 3720 NSERR_SSL_FIPS_CERT_ERROR_MESSAGE string = "FIPS certificate cannot be bound as a CA certificate, install the certificate without the FIPS key." NSERR_SSL_CERTKEY_HSM_ERROR_CODE errorCode = 3721 NSERR_SSL_CERTKEY_HSM_ERROR_MESSAGE string = "Cannot bind a certificate with HSM key to a service." NSERR_SSL_DEFAULT_CERT_BIND_ERROR_CODE errorCode = 3722 NSERR_SSL_DEFAULT_CERT_BIND_ERROR_MESSAGE string = "Cannot bind internal default certificate." NSERR_SSL_CMD_DEPRECATED_ERROR_CODE errorCode = 3723 NSERR_SSL_CMD_DEPRECATED_ERROR_MESSAGE string = "Command deprecated, operation not applicable to this platform." NSERR_SSL_NO_LIC_ERROR_CODE errorCode = 3724 NSERR_SSL_NO_LIC_ERROR_MESSAGE string = "Only export ciphers are allowed without proper SSL license." NSERR_SSL_DTLS_NA_ERROR_CODE errorCode = 3725 NSERR_SSL_DTLS_NA_ERROR_MESSAGE string = "Command arguments does not apply to vserver/service of type DTLS." NSERR_SSL_ECC_SUPPORT_ERROR_CODE errorCode = 3726 NSERR_SSL_ECC_SUPPORT_ERROR_MESSAGE string = "ECC curve is not supported for this entity/platform." NSERR_SSL_PROFILE_FE_ERROR_CODE errorCode = 3727 NSERR_SSL_PROFILE_FE_ERROR_MESSAGE string = "Cannot bind front-end profile to a back-end SSL service." NSERR_SSL_PROFILE_BE_ERROR_CODE errorCode = 3728 NSERR_SSL_PROFILE_BE_ERROR_MESSAGE string = "Cannot bind back-end profile to a front-end SSL vserver." NSERR_SSL_OP_ON_FIPS_WOFW22_NOT_PERM_ERROR_CODE errorCode = 3729 NSERR_SSL_OP_ON_FIPS_WOFW22_NOT_PERM_ERROR_MESSAGE string = "Operation not permitted on MPX-FIPS platform without FIPS firmware version 2.2 or higher." NSERR_SSL_NONSSL_VSERVER_ERROR_CODE errorCode = 3730 NSERR_SSL_NONSSL_VSERVER_ERROR_MESSAGE string = "Vserver is not of type SSL/HTTP_QUIC." NSERR_SSL_UDP_DTLS_ERROR_CODE errorCode = 3731 NSERR_SSL_UDP_DTLS_ERROR_MESSAGE string = "Cannot bind policy to vserver of type DTLS." NSERR_SSL_TLS11_12_SUPPORT_ERROR_CODE errorCode = 3732 NSERR_SSL_TLS11_12_SUPPORT_ERROR_MESSAGE string = "Enabling of TLSv1.1/1.2 is not supported on this entity/platform." NSERR_SSL_HSM_KEY_SVC_SVCGRP_ERROR_CODE errorCode = 3733 NSERR_SSL_HSM_KEY_SVC_SVCGRP_ERROR_MESSAGE string = "Binding of certificate with HSM key is not supported on back-end service, serviceGroup or monitors." NSERR_DTLS_PROFILE_ERROR_CODE errorCode = 3734 NSERR_DTLS_PROFILE_ERROR_MESSAGE string = "Cannot bind DTLS profile to a SSL vserver." NSERR_SSL_PROFILE_NO_USABLE_CIPHERS_ERROR_CODE errorCode = 3735 NSERR_SSL_PROFILE_NO_USABLE_CIPHERS_ERROR_MESSAGE string = "No usable ciphers configured for some of the SSL vserver/service binded to this profile" NSERR_SSL_CIPHGRP_NO_USABLE_CIPHERS_ERROR_CODE errorCode = 3736 NSERR_SSL_CIPHGRP_NO_USABLE_CIPHERS_ERROR_MESSAGE string = "No usable ciphers configured for some of the SSL vserver/service binded to this cipher group" NSERR_SSL_PROFILE_UNSET_DEFAULT_ERROR_CODE errorCode = 3737 NSERR_SSL_PROFILE_UNSET_DEFAULT_ERROR_MESSAGE string = "Unsetting a default SSL Profile is not allowed" NSERR_SSL_DEFAULT_PROFILE_ENABLED_ERROR_CODE errorCode = 3738 NSERR_SSL_DEFAULT_PROFILE_ENABLED_ERROR_MESSAGE string = "Disabling ssl default profile is not allowed" NSERR_SSL_PROFILE_DEFAULT_DISABLED_ERROR_CODE errorCode = 3739 NSERR_SSL_PROFILE_DEFAULT_DISABLED_ERROR_MESSAGE string = "Operation not permitted. To do this Enable default ssl profile by setting 'set ssl parameter -defaultProfile E'" NSERR_SSL_PROFILE_DEFAULT_ENABLED_ERROR_CODE errorCode = 3740 NSERR_SSL_PROFILE_DEFAULT_ENABLED_ERROR_MESSAGE string = "Operation not permitted. To do this Disable default ssl profile by setting 'set ssl parameter -defaultProfile D'" NSERR_SSL_CIPHER_EXIST_HIGHER_PRI_ERROR_CODE errorCode = 3741 NSERR_SSL_CIPHER_EXIST_HIGHER_PRI_ERROR_MESSAGE string = "Specified cipher is already bound with higher priority" NSERR_SSL_DEFAULT_PROFILE_PERM_ERROR_CODE errorCode = 3742 NSERR_SSL_DEFAULT_PROFILE_PERM_ERROR_MESSAGE string = "Default ssl profile can not be removed" NSERR_SSL_DH_SIZE_16B_ERROR_CODE errorCode = 3743 NSERR_SSL_DH_SIZE_16B_ERROR_MESSAGE string = "DH params of size is not 16B aligned" NSERR_SSL_NOCIPHERREDIRECTOPT_ERROR_CODE errorCode = 3744 NSERR_SSL_NOCIPHERREDIRECTOPT_ERROR_MESSAGE string = "The cipher redirect option is not supported for SSL Service" NSERR_SSL_NOCLIENTAUTHOPT_ERROR_CODE errorCode = 3745 NSERR_SSL_NOCLIENTAUTHOPT_ERROR_MESSAGE string = "The client auth option is not supported for SSL Service" NSERR_SSL_NOSSLV2REDIRECTOPT_ERROR_CODE errorCode = 3746 NSERR_SSL_NOSSLV2REDIRECTOPT_ERROR_MESSAGE string = "The SSLv2 redirect option is not supported for SSL Service" NSERR_SSL_NONONFIPSCIPHERSOPT_ERROR_CODE errorCode = 3747 NSERR_SSL_NONONFIPSCIPHERSOPT_ERROR_MESSAGE string = "The nonFipsCiphers option is not applicable any more" NSERR_SSL_NOCIPHERREDIRECTOPT_ON_FIPS_ERROR_CODE errorCode = 3748 NSERR_SSL_NOCIPHERREDIRECTOPT_ON_FIPS_ERROR_MESSAGE string = "Cipher Redirect option is not permitted on MPX-FIPS platform." NSERR_SSL_NOSSL2PROTOOPT_ON_FIPS_ERROR_CODE errorCode = 3749 NSERR_SSL_NOSSL2PROTOOPT_ON_FIPS_ERROR_MESSAGE string = "Ssl2 protocol option is not permitted on MPX-FIPS platform." NSERR_SSL_CANNOT_BIND_VSERVER_ERROR_CODE errorCode = 3750 NSERR_SSL_CANNOT_BIND_VSERVER_ERROR_MESSAGE string = "Front end service cannot be bound to a vserver." NSERR_SSL_SERVERAUTHNOTSUPP_ERROR_CODE errorCode = 3751 NSERR_SSL_SERVERAUTHNOTSUPP_ERROR_MESSAGE string = "ServerAuth Operation is not supported for front end service." NSERR_SSL_SERVERAUTH_SNI_REQUIRED_ERROR_CODE errorCode = 3752 NSERR_SSL_SERVERAUTH_SNI_REQUIRED_ERROR_MESSAGE string = "Argument pre-requisite missing serverAuth == ENABLED or SNIEnable == ENABLED" NSERR_SSL_CN_REQUIRED_ERROR_CODE errorCode = 3753 NSERR_SSL_CN_REQUIRED_ERROR_MESSAGE string = "Argument pre-requisite missing commonName" NSERR_SSL_DTLSPROFNOTSUPP_ERROR_CODE errorCode = 3754 NSERR_SSL_DTLSPROFNOTSUPP_ERROR_MESSAGE string = "DTLS options are not applicable to non-DTLS vserver/Service" NSERR_SSL_PUSHENCNOTSUPP_ERROR_CODE errorCode = 3755 NSERR_SSL_PUSHENCNOTSUPP_ERROR_MESSAGE string = "Push encryption trigger is not supported for SSL Service." NSERR_N3FIPS_MINKEYSIZE_ERROR_CODE errorCode = 3756 NSERR_N3FIPS_MINKEYSIZE_ERROR_MESSAGE string = "Key size less than 2048 is not supported on N3FIPS" NSERR_N3FIPS_MAXKEYSIZE_ERROR_CODE errorCode = 3757 NSERR_N3FIPS_MAXKEYSIZE_ERROR_MESSAGE string = "Key size more than 3072 is not supported on N3FIPS" NSERR_N3FIPS_MINEXPSIZE_ERROR_CODE errorCode = 3758 NSERR_N3FIPS_MINEXPSIZE_ERROR_MESSAGE string = "N3FIPS only supports F4(65537) as an exponent" NSERR_SSL_OCSPNAMENOTSUPP_ERROR_CODE errorCode = 3759 NSERR_SSL_OCSPNAMENOTSUPP_ERROR_MESSAGE string = "Ocsp responder name should not start with ns_internal." NSERR_SSL_OCSP_NOT_VALID_PARAM_ERROR_CODE errorCode = 3760 NSERR_SSL_OCSP_NOT_VALID_PARAM_ERROR_MESSAGE string = "Specified parameters are not applicable for this type of ocsp responder." NSERR_SSL_NOOCSPSTAP_ERROR_CODE errorCode = 3761 NSERR_SSL_NOOCSPSTAP_ERROR_MESSAGE string = "Ocsp stapling option is not supported for SSL Service." NSERR_SSL_CREATE_AIA_OCSP_RESP_FAILED_ERROR_CODE errorCode = 3762 NSERR_SSL_CREATE_AIA_OCSP_RESP_FAILED_ERROR_MESSAGE string = "Failed to create/bind Internal Ocsp responder(using certkey AIA URL)." NSERR_N3FIPDEXUPGRADE_ERROR_CODE errorCode = 3763 NSERR_N3FIPDEXUPGRADE_ERROR_MESSAGE string = "N3FIPS VPX does not support upgrade firmware operation" NSERR_N3FIP_MAXKEYNUM_ERROR_CODE errorCode = 3764 NSERR_N3FIP_MAXKEYNUM_ERROR_MESSAGE string = "Maximum Fips keys limit reached" NSERR_FIPSCARDCONFIGED_ERROR_CODE errorCode = 3765 NSERR_FIPSCARDCONFIGED_ERROR_MESSAGE string = "Fips is already configured, please reset first to set fips again" NSERR_N3FIPSCHANGELIC_ERROR_CODE errorCode = 3770 NSERR_N3FIPSCHANGELIC_ERROR_MESSAGE string = "N3FIPS license is changed, please reboot the system" NSERR_SSL_OCSP_SET_NOT_ALLOWED_ON_AIA_ERROR_CODE errorCode = 3771 NSERR_SSL_OCSP_SET_NOT_ALLOWED_ON_AIA_ERROR_MESSAGE string = "Set operation on internal ocsp entity is not allowed" NSERR_SSL_TLS13_SUPPORT_ERROR_CODE errorCode = 3775 NSERR_SSL_TLS13_SUPPORT_ERROR_MESSAGE string = "Enabling of TLSv1.3 is not supported on this entity/platform." NSERR_SSL_CLEARTEXTPORT_WARNING_ERROR_CODE errorCode = 3778 NSERR_SSL_CLEARTEXTPORT_WARNING_ERROR_MESSAGE string = "Cannot set cleartextport for a ssl service." NSERR_SSL_DH_SIZE_2048_ERROR_CODE errorCode = 3780 NSERR_SSL_DH_SIZE_2048_ERROR_MESSAGE string = "DH params of size greater than 2048 bits not supported on this platform." NSERR_SSL_DEFAULT_CERT_NAME_ERROR_CODE errorCode = 3802 NSERR_SSL_DEFAULT_CERT_NAME_ERROR_MESSAGE string = "Cannot use this name in non-default partition." NSERR_SSL_VS_NOT_ALLOWED_ERROR_CODE errorCode = 3803 NSERR_SSL_VS_NOT_ALLOWED_ERROR_MESSAGE string = "Vserver should be of type: TCP, SSL_BRIDGE, SSL_TCP or SSL." NSERR_SSL_CACERTGROUP_EXIST_ERROR_CODE errorCode = 3566 NSERR_SSL_CACERTGROUP_EXIST_ERROR_MESSAGE string = "CA certificate group already exists." NSERR_SSL_CACERTGROUP_NOTEXIST_ERROR_CODE errorCode = 3567 NSERR_SSL_CACERTGROUP_NOTEXIST_ERROR_MESSAGE string = "CA certificate group does not exist." NSERR_SSL_CACERTGROUP_REF_ERROR_CODE errorCode = 3579 NSERR_SSL_CACERTGROUP_REF_ERROR_MESSAGE string = "Certificate group is referenced by SSL action(s)." NSERR_SSL_NOT_CACERT_ERROR_CODE errorCode = 3580 NSERR_SSL_NOT_CACERT_ERROR_MESSAGE string = "Certificate is not a CA certificate." NSERR_SSL_GROUP_HAS_CACERTKEY_ERROR_CODE errorCode = 3581 NSERR_SSL_GROUP_HAS_CACERTKEY_ERROR_MESSAGE string = "CA certificate group already has an entry for this CA certificate-key." NSERR_SSL_GROUP_HAS_NO_CACERTKEY_ERROR_CODE errorCode = 3583 NSERR_SSL_GROUP_HAS_NO_CACERTKEY_ERROR_MESSAGE string = "CA certificate group does not have an entry for this CA certificate-key." NSERR_SSL_SNICERT_INVALID_ERROR_CODE errorCode = 3805 NSERR_SSL_SNICERT_INVALID_ERROR_MESSAGE string = "Cannot bind SNI cert on an internal and backend service. SNI cert can be bound only to SSL vserver." NSERR_SSL_NO_CERTKEY_FILE_ERROR_CODE errorCode = 3807 NSERR_SSL_NO_CERTKEY_FILE_ERROR_MESSAGE string = "CertKey files deleted from file system, do save config, unsaved reboot will not bring deleted certKey files." NSERR_SSL_NO_PRIVATE_KEY_ERROR_CODE errorCode = 3827 NSERR_SSL_NO_PRIVATE_KEY_ERROR_MESSAGE string = "Private Key is not present." NSERR_SSL_NO_DTLS_PROTOCOL_ENABLED_ERROR_CODE errorCode = 1691 NSERR_SSL_NO_DTLS_PROTOCOL_ENABLED_ERROR_MESSAGE string = "DTLS protocols not enabled on the vserver/service." NSERR_SSL_PROFILE_QUIC_MISMATCH_ERROR_CODE errorCode = 1776 NSERR_SSL_PROFILE_QUIC_MISMATCH_ERROR_MESSAGE string = "SSL profiles of type QUIC-FrontEnd can only be associated with HTTP_QUIC virtual servers." NSERR_SSL_DH_SIZE_INTEL_CRYPTO_ERROR_CODE errorCode = 1777 NSERR_SSL_DH_SIZE_INTEL_CRYPTO_ERROR_MESSAGE string = "DH params key size is not supported in the Intel Crypto platform" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#sslvpn-aaa-errors NSERR_ERR_AAA_LICENSE_ERROR_CODE errorCode = 2624 NSERR_ERR_AAA_LICENSE_ERROR_MESSAGE string = "MaxAAAUsers value more than allowed by license, ignored." NSERR_USR_NOINTRAIP_ERROR_CODE errorCode = 2625 NSERR_USR_NOINTRAIP_ERROR_MESSAGE string = "No intranet IP bound to user" NSERR_USR_NOTCONFIGURED_ERROR_CODE errorCode = 2626 NSERR_USR_NOTCONFIGURED_ERROR_MESSAGE string = "User does not exist" NSERR_INVAL_AAA_GRP_ERROR_CODE errorCode = 2627 NSERR_INVAL_AAA_GRP_ERROR_MESSAGE string = "Group does not exist" NSERR_INVAL_COMBNATION_ERROR_CODE errorCode = 2628 NSERR_INVAL_COMBNATION_ERROR_MESSAGE string = "NONE and ALL cannot be used simultaneously" NSERR_INVAL_MIP_IIP_ERROR_CODE errorCode = 2629 NSERR_INVAL_MIP_IIP_ERROR_MESSAGE string = "Both Mapped IP and Intranet IP must be specified" NSERR_INVAL_MIPOFF_IIPOFF_ERROR_CODE errorCode = 2630 NSERR_INVAL_MIPOFF_IIPOFF_ERROR_MESSAGE string = "Mapped IP and Intranet IP cannot be OFF at the same time" NSERR_USEREXIST_ERROR_CODE errorCode = 2631 NSERR_USEREXIST_ERROR_MESSAGE string = "User already exists" NSERR_GROUPEXIST_ERROR_CODE errorCode = 2632 NSERR_GROUPEXIST_ERROR_MESSAGE string = "Group already exists" NSERR_USERALREADYBOUND_ERROR_CODE errorCode = 2633 NSERR_USERALREADYBOUND_ERROR_MESSAGE string = "User is already bound to the group" NSERR_NO_RADIUS_IP_ERROR_CODE errorCode = 2634 NSERR_NO_RADIUS_IP_ERROR_MESSAGE string = "ServerIP is not configured in radius params" NSERR_NO_TACACS_IP_ERROR_CODE errorCode = 2635 NSERR_NO_TACACS_IP_ERROR_MESSAGE string = "ServerIP is not configured in tacacs params" NSERR_USERNOTBOUND_ERROR_CODE errorCode = 2640 NSERR_USERNOTBOUND_ERROR_MESSAGE string = "User is not bound to the group" NSERR_ENTITYNOTBOUND_ERROR_CODE errorCode = 2641 NSERR_ENTITYNOTBOUND_ERROR_MESSAGE string = "Entity not bound" NSERR_GROUPNOTEXIST_ERROR_CODE errorCode = 2642 NSERR_GROUPNOTEXIST_ERROR_MESSAGE string = "Group does not exist" NSERR_INVALIDLOGLEVEL_ERROR_CODE errorCode = 2643 NSERR_INVALIDLOGLEVEL_ERROR_MESSAGE string = "NONE cannot be combined with other options" NSERR_DH_MISCONFIG_ERROR_CODE errorCode = 2644 NSERR_DH_MISCONFIG_ERROR_MESSAGE string = "The first hop and second hop can not be enabled on the same vserver" NSERR_DH_IPPORT_ERROR_CODE errorCode = 2645 NSERR_DH_IPPORT_ERROR_MESSAGE string = "The SG second hop ip and port are required" NSERR_DHINUSE_ERROR_CODE errorCode = 2646 NSERR_DHINUSE_ERROR_MESSAGE string = "Bound double hop server cannot be removed" NSERR_INVAL_AAAGLOBAL_POLTYPE_ERROR_CODE errorCode = 2647 NSERR_INVAL_AAAGLOBAL_POLTYPE_ERROR_MESSAGE string = "Only preauthentication policies can be bound to AAA global" NSERR_NO_LDAP_IP_ERROR_CODE errorCode = 2648 NSERR_NO_LDAP_IP_ERROR_MESSAGE string = "ServerIP is not configured in ldap params" NSERR_AAATM_LIC_ERROR_CODE errorCode = 2649 NSERR_AAATM_LIC_ERROR_MESSAGE string = "Feature not licensed [AAA]" NSERR_AAATM_DISABLED_ERROR_CODE errorCode = 2650 NSERR_AAATM_DISABLED_ERROR_MESSAGE string = "Feature(s) not enabled [AAA]" NSERR_NO_AUTH_HOST_ERROR_CODE errorCode = 2651 NSERR_NO_AUTH_HOST_ERROR_MESSAGE string = "No Authentication Host specified" NSERR_AUTH_ON_ERROR_CODE errorCode = 2652 NSERR_AUTH_ON_ERROR_MESSAGE string = "Turn authentication off first" NSERR_KILLPENDING_ERROR_CODE errorCode = 2653 NSERR_KILLPENDING_ERROR_MESSAGE string = "Another kill command in progress" NSERR_AAATM_NO_AUTH_VS_ERROR_CODE errorCode = 2654 NSERR_AAATM_NO_AUTH_VS_ERROR_MESSAGE string = "No Authentication vserver name specified or the server does not exist" NSERR_AAATM_401AUTH_ON_ERROR_CODE errorCode = 2655 NSERR_AAATM_401AUTH_ON_ERROR_MESSAGE string = "Turn off 401 based authentication first" NSERR_UNAUTHRZED_ERROR_CODE errorCode = 2656 NSERR_UNAUTHRZED_ERROR_MESSAGE string = "Unauthorized" NSERR_KILL_INPROGRESS_ERROR_CODE errorCode = 2657 NSERR_KILL_INPROGRESS_ERROR_MESSAGE string = "A kill session command is in progress. Try again later" NSERR_WI_FRM_NOTEXIST_ERROR_CODE errorCode = 2658 NSERR_WI_FRM_NOTEXIST_ERROR_MESSAGE string = "Farm does not exist" NSERR_WI_FRM_LAST_ERROR_CODE errorCode = 2659 NSERR_WI_FRM_LAST_ERROR_MESSAGE string = "At least one Farm should be configured: can not remove last farm" NSERR_WI_NOTINST_ERROR_CODE errorCode = 2660 NSERR_WI_NOTINST_ERROR_MESSAGE string = "Web interface not installed" NSERR_WI_GENFAILED_ERROR_CODE errorCode = 2661 NSERR_WI_GENFAILED_ERROR_MESSAGE string = "Unable to generate website" NSERR_WI_SITE_EXIST_ERROR_CODE errorCode = 2662 NSERR_WI_SITE_EXIST_ERROR_MESSAGE string = "Site already exists" NSERR_WI_SITE_NOTEXIST_ERROR_CODE errorCode = 2663 NSERR_WI_SITE_NOTEXIST_ERROR_MESSAGE string = "Site does not exist" NSERR_WI_SITE_INVAL_AGURL_ERROR_CODE errorCode = 2664 NSERR_WI_SITE_INVAL_AGURL_ERROR_MESSAGE string = "Invalid agURL" NSERR_WI_SITE_INVAL_STAURL_ERROR_CODE errorCode = 2665 NSERR_WI_SITE_INVAL_STAURL_ERROR_MESSAGE string = "Invalid staURL" NSERR_WI_SITE_ONLY_MPX_ERROR_CODE errorCode = 2666 NSERR_WI_SITE_ONLY_MPX_ERROR_MESSAGE string = "WI can only be installed on NetScaler nCore builds" NSERR_WI_INSTFAILED_ERROR_CODE errorCode = 2667 NSERR_WI_INSTFAILED_ERROR_MESSAGE string = "Installation failed. Please check the log file /var/log/wicmd.log" NSERR_WI_MAXSITE_EXCD_ERROR_CODE errorCode = 2668 NSERR_WI_MAXSITE_EXCD_ERROR_MESSAGE string = "Maximum number of WI Sites exceeded. Please check the log file /var/log/wicmd.log" NSERR_WI_STAWITHOUTAGURL_ERROR_CODE errorCode = 2669 NSERR_WI_STAWITHOUTAGURL_ERROR_MESSAGE string = "STAUrl cannot be specified without AGUrl." NSERR_WI_AGURLWITHOUTSTA_ERROR_CODE errorCode = 2670 NSERR_WI_AGURLWITHOUTSTA_ERROR_MESSAGE string = "AGUrl cannot be specified without STAUrl." NSERR_WI_RELWITHOUTAGURL_ERROR_CODE errorCode = 2671 NSERR_WI_RELWITHOUTAGURL_ERROR_MESSAGE string = "SessionReliability cannot be ON without AGUrl." NSERR_WI_AUTHWITHOUTAGURL_ERROR_CODE errorCode = 2672 NSERR_WI_AUTHWITHOUTAGURL_ERROR_MESSAGE string = "AuthenticationPoint cannot be specified without AGUrl." NSERR_WI_TWOTKTWITHOUTREL_ERROR_CODE errorCode = 2673 NSERR_WI_TWOTKTWITHOUTREL_ERROR_MESSAGE string = "UseTwoTickets cannot be ON without SessionReliability." NSERR_WI_TWOTKTWITHOUTSECSTA_ERROR_CODE errorCode = 2674 NSERR_WI_TWOTKTWITHOUTSECSTA_ERROR_MESSAGE string = "UseTwoTickets cannot be ON without SecondSTAUrl." NSERR_WI_SECSTASAME_ERROR_CODE errorCode = 2675 NSERR_WI_SECSTASAME_ERROR_MESSAGE string = "SecondSTAUrl should be different from StaURL." NSERR_WI_LICENSE_ERROR_CODE errorCode = 2676 NSERR_WI_LICENSE_ERROR_MESSAGE string = "Web Interface on NS Feature not licensed." NSERR_WI_SECSTAWITHOUTSTA_ERROR_CODE errorCode = 2677 NSERR_WI_SECSTAWITHOUTSTA_ERROR_MESSAGE string = "SecondSTAUrl cannot be specified without STAUrl." NSERR_AUTH_NEGOTIATE_ERROR_CODE errorCode = 2678 NSERR_AUTH_NEGOTIATE_ERROR_MESSAGE string = "Negotiate authentication required" NSERR_WI_INSTSITESREDUCED_ERROR_CODE errorCode = 2679 NSERR_WI_INSTSITESREDUCED_ERROR_MESSAGE string = "Memory available is not sufficient for the passed maxSites value" NSERR_WI_INCOMPATIBLEAUTHPOINT_ERROR_CODE errorCode = 2680 NSERR_WI_INCOMPATIBLEAUTHPOINT_ERROR_MESSAGE string = "WI Authentication methods can not be specified unless authentication point is WI" NSERR_WI_SITE_WITHIN_SITE_ERROR_CODE errorCode = 2681 NSERR_WI_SITE_WITHIN_SITE_ERROR_MESSAGE string = "One WI site can not be completely within another WI site" NSERR_WI_SITE_TRANSLATION_NOEXIST_ERROR_CODE errorCode = 2682 NSERR_WI_SITE_TRANSLATION_NOEXIST_ERROR_MESSAGE string = "Translation Map does not exist" NSERR_WI_SITE_TRANSLATION_LAST_ERROR_CODE errorCode = 2683 NSERR_WI_SITE_TRANSLATION_LAST_ERROR_MESSAGE string = "Can't Unbind Last Translation Map" NSERR_WI_SITE_NOAGURL_ERROR_CODE errorCode = 2684 NSERR_WI_SITE_NOAGURL_ERROR_MESSAGE string = "AGURL is not set" NSERR_AGSVC_AUTHFAIL_ERROR_CODE errorCode = 2685 NSERR_AGSVC_AUTHFAIL_ERROR_MESSAGE string = "AG-Service request with invalid AAAC cookie" NSERR_TM_INVALID_PERS_CONFIG_ERROR_CODE errorCode = 2686 NSERR_TM_INVALID_PERS_CONFIG_ERROR_MESSAGE string = "Please specify both persistentCookie and persistentCookieValidity parameters" NSERR_WI_SMARTCARD_NOT_SUPPORTED_ERROR_CODE errorCode = 2687 NSERR_WI_SMARTCARD_NOT_SUPPORTED_ERROR_MESSAGE string = "SmartCard AGAuthentication method is not supported with sites created using wi package" NSERR_WI_SEARCH_NOT_SITEWEB_ERROR_CODE errorCode = 2688 NSERR_WI_SEARCH_NOT_SITEWEB_ERROR_MESSAGE string = "Show Search Attribute supported only for site type XenAppWeb" NSERR_KCD_ACCOUNT_NOT_EXISTS_ERROR_CODE errorCode = 2689 NSERR_KCD_ACCOUNT_NOT_EXISTS_ERROR_MESSAGE string = "The KCD account does not exist" NSERR_KCD_KEYTAB_NOT_EXISTS_ERROR_CODE errorCode = 2690 NSERR_KCD_KEYTAB_NOT_EXISTS_ERROR_MESSAGE string = "The keytab file does not exist" NSERR_KCD_VS_PRINCIPLE_NOT_FOUND_ERROR_CODE errorCode = 2691 NSERR_KCD_VS_PRINCIPLE_NOT_FOUND_ERROR_MESSAGE string = "The Vserver principle not found" NSERR_KCD_REM_INUSE_ERROR_CODE errorCode = 2692 NSERR_KCD_REM_INUSE_ERROR_MESSAGE string = "KCD account is in use and cannot be removed" NSERR_KCD_TOO_MANY_VS_PRINCIPLE_ERROR_CODE errorCode = 2693 NSERR_KCD_TOO_MANY_VS_PRINCIPLE_ERROR_MESSAGE string = "Too many host principles" NSERR_WI_REFRESH_NOT_SITEWEB_ERROR_CODE errorCode = 2694 NSERR_WI_REFRESH_NOT_SITEWEB_ERROR_MESSAGE string = "Show Refresh Attribute supported only for site type XenAppWeb" NSERR_WI_UIMODE_NOT_SITEWEB_ERROR_CODE errorCode = 2695 NSERR_WI_UIMODE_NOT_SITEWEB_ERROR_MESSAGE string = "User Interface Mode Attribute supported only for site type XenAppWeb" NSERR_WI_UILAYOUT_NOT_SITEWEB_ERROR_CODE errorCode = 2696 NSERR_WI_UILAYOUT_NOT_SITEWEB_ERROR_MESSAGE string = "User Interface Layout Attribute supported only for site type XenAppWeb" NSERR_WI_MESSAGESTRS_NOT_SITEWEB_ERROR_CODE errorCode = 2697 NSERR_WI_MESSAGESTRS_NOT_SITEWEB_ERROR_MESSAGE string = "" /* 172-byte string literal not displayed */ NSERR_AAATM_AUTHN_PROFILE_CONF_ERROR_CODE errorCode = 2704 NSERR_AAATM_AUTHN_PROFILE_CONF_ERROR_MESSAGE string = "Please turn ON authentication or authn401 setting in order to use authentication profile" NSERR_NEGACTION_UNAME_DOM_ERROR_CODE errorCode = 2705 NSERR_NEGACTION_UNAME_DOM_ERROR_MESSAGE string = "Domain must either be specified either explicitly or in the username" NSERR_NO_PRODUCTION_FARM_ERROR_CODE errorCode = 2706 NSERR_NO_PRODUCTION_FARM_ERROR_MESSAGE string = "WI site will not be fuctional till a production farm is bound" NSERR_SAML_FORM_CONFLICT_ERROR_CODE errorCode = 2707 NSERR_SAML_FORM_CONFLICT_ERROR_MESSAGE string = "Traffic cannot have both SAML SSO and Form SSO on same action" NSERR_MAXLOGIN_FAILLOGIN_CONFLICT_ERROR_CODE errorCode = 2708 NSERR_MAXLOGIN_FAILLOGIN_CONFLICT_ERROR_MESSAGE string = "Please specify both max login attempts and fail login timeout" NSERR_KCD_ACCOUNT_EXIST_ERROR_CODE errorCode = 2709 NSERR_KCD_ACCOUNT_EXIST_ERROR_MESSAGE string = "The KCD account does not exist" NSERR_KCD_ACCOUNT_NOTCONFIGURED_ERROR_CODE errorCode = 2710 NSERR_KCD_ACCOUNT_NOTCONFIGURED_ERROR_MESSAGE string = "The KCD account is not configured" NSERR_NEGACTION_KEYTAB_CONFLICT_ERROR_CODE errorCode = 2711 NSERR_NEGACTION_KEYTAB_CONFLICT_ERROR_MESSAGE string = "" /* 129-byte string literal not displayed */ NSERR_KEYTAB_INVALID_ENC_ERROR_CODE errorCode = 2712 NSERR_KEYTAB_INVALID_ENC_ERROR_MESSAGE string = "Unsupported encryption type in keytab file" NSERR_HTTP_SSL_PROXY_CONFLICT_ERROR_CODE errorCode = 2713 NSERR_HTTP_SSL_PROXY_CONFLICT_ERROR_MESSAGE string = "Cannot configure both HTTP and SSL proxy" NSERR_INVALIDIP_PORT_ERROR_CODE errorCode = 2714 NSERR_INVALIDIP_PORT_ERROR_MESSAGE string = "Invalid IP or Port" NSERR_ADVEPA_NOTSUPP_ERROR_CODE errorCode = 2715 NSERR_ADVEPA_NOTSUPP_ERROR_MESSAGE string = "VServer does not support advanced EPA scans" NSERR_ADVEPA_NOPROFILE_ERROR_CODE errorCode = 2716 NSERR_ADVEPA_NOPROFILE_ERROR_MESSAGE string = "EPA profile with this name does not exist" NSERR_ADVEPA_INUSE_ERROR_CODE errorCode = 2717 NSERR_ADVEPA_INUSE_ERROR_MESSAGE string = "Bound EPA profile cannot be removed." NSERR_ADVEPA_EXISTS_ERROR_CODE errorCode = 2718 NSERR_ADVEPA_EXISTS_ERROR_MESSAGE string = "EPA profile exists." NSERR_ADVEPA_BOUND_ERROR_CODE errorCode = 2719 NSERR_ADVEPA_BOUND_ERROR_MESSAGE string = "EPA profile already bound to vserver." NSERR_ADVEPA_NOTBOUND_ERROR_CODE errorCode = 2720 NSERR_ADVEPA_NOTBOUND_ERROR_MESSAGE string = "EPA profile not bound to vserver." NSERR_ADVEPA_ON_ERROR_CODE errorCode = 2721 NSERR_ADVEPA_ON_ERROR_MESSAGE string = "Advanced EPA is ON, can not bind classic preauthentication policy." NSERR_DEVICEPROFILE_ADDRM_FAIL_ERROR_CODE errorCode = 2722 NSERR_DEVICEPROFILE_ADDRM_FAIL_ERROR_MESSAGE string = "" /* 178-byte string literal not displayed */ NSERR_DEVICEPROFILE_INTERNAL_ERR_ERROR_CODE errorCode = 2723 NSERR_DEVICEPROFILE_INTERNAL_ERR_ERROR_MESSAGE string = "An Internal Error occurred while operating on the Device Profile, please contact your Admin" NSERR_AAA_SESS_INVALID_INDEX_ERROR_CODE errorCode = 2724 NSERR_AAA_SESS_INVALID_INDEX_ERROR_MESSAGE string = "Invalid attribute index. Attribute index should be between 1 and 16 both included" NSERR_AAATM_FORCETIMEOUT_ERROR_CODE errorCode = 2725 NSERR_AAATM_FORCETIMEOUT_ERROR_MESSAGE string = "Force timeout setting of START or RESET must accompany a desired time in minutes" NSERR_KCDACCOUNT_KEYTAB_ERROR_CODE errorCode = 2726 NSERR_KCDACCOUNT_KEYTAB_ERROR_MESSAGE string = "Keytab file cannot be specified along with other parameters in kcdaccount" NSERR_KCDACCOUNT_REALM_ERROR_CODE errorCode = 2727 NSERR_KCDACCOUNT_REALM_ERROR_MESSAGE string = "Realm must be specified by itself or extracted from delegated username/keytab" NSERR_KCDACCOUNT_KEYTAB_INVALID_ERROR_CODE errorCode = 2238 NSERR_KCDACCOUNT_KEYTAB_INVALID_ERROR_MESSAGE string = "Invalid Keytab file" NSERR_WEBAUTH_FULLEXP_ERROR_CODE errorCode = 2728 NSERR_WEBAUTH_FULLEXP_ERROR_MESSAGE string = "Please specify full request expression" NSERR_WI_INVALID_SETTING_FOR_AUTHPOINT_ERROR_CODE errorCode = 2729 NSERR_WI_INVALID_SETTING_FOR_AUTHPOINT_ERROR_MESSAGE string = "Setting is Invalid for given Authpoint" NSERR_WI_SETTING_VALIDONLYFOR_XENAPPWEB_ERROR_CODE errorCode = 2730 NSERR_WI_SETTING_VALIDONLYFOR_XENAPPWEB_ERROR_MESSAGE string = "Setting is Invalid for SiteType other than XenAppWeb" NSERR_WI_PARAMETER_UPGARDE_ERROR_ERROR_CODE errorCode = 2731 NSERR_WI_PARAMETER_UPGARDE_ERROR_ERROR_MESSAGE string = "Migration of WebInterface.conf parameter to CLI didn't happen successfully" NSERR_SAMLIDP_ENC_CERT_ERROR_CODE errorCode = 2732 NSERR_SAMLIDP_ENC_CERT_ERROR_MESSAGE string = "Encryption option requires ServiceProvider (SP) certificate." NSERR_WF_NOT_INST_ERROR_CODE errorCode = 2733 NSERR_WF_NOT_INST_ERROR_MESSAGE string = "Web Front is not installed" NSERR_WF_INSTFAILED_ERROR_CODE errorCode = 2734 NSERR_WF_INSTFAILED_ERROR_MESSAGE string = "Installation failed. Please check the log file /var/log/wfcmd.log" NSERR_AAA_TOOMANY_EXP_ERROR_CODE errorCode = 2735 NSERR_AAA_TOOMANY_EXP_ERROR_MESSAGE string = "Number of expressions found exceeds allowed limit" NSERR_SAML_REDIR_CONFLICT_ERROR_CODE errorCode = 2736 NSERR_SAML_REDIR_CONFLICT_ERROR_MESSAGE string = "Signature and Digest algorithms are incompatible for Redirect Binding" NSERR_SET_MAXAAAUSER_NOT_ALLOWED_ERROR_CODE errorCode = 2737 NSERR_SET_MAXAAAUSER_NOT_ALLOWED_ERROR_MESSAGE string = "Set maxaaaUser not allowed per partition" NSERR_AAATM_INCOMP_NO_PROFILE_ERROR_CODE errorCode = 2744 NSERR_AAATM_INCOMP_NO_PROFILE_ERROR_MESSAGE string = "Profile does not exist or does not have Host configured" NSERR_RENAME_AUTHN_LABEL_NOT_PERMITTED_ERROR_CODE errorCode = 2745 NSERR_RENAME_AUTHN_LABEL_NOT_PERMITTED_ERROR_MESSAGE string = "Rename of authentication policyLabel not permitted if it referred as nextFactor" NSERR_ERR_AAA_LICENSE_LOW_ERROR_CODE errorCode = 2747 NSERR_ERR_AAA_LICENSE_LOW_ERROR_MESSAGE string = "MaxAAAUsers value less than allowed by license, ignored." NSERR_ERR_ENABLE_DTLS_ERROR_CODE errorCode = 2750 NSERR_ERR_ENABLE_DTLS_ERROR_MESSAGE string = "Cannot start DTLS or PCOIP listener due to existing (ip, port, transport) conflicts." NSERR_OPENID_ENC_METADATA_ERROR_CODE errorCode = 2751 NSERR_OPENID_ENC_METADATA_ERROR_MESSAGE string = "Token encryption requires Relying Party metadata url." NSERR_OPENID_MAX_ATTRIBUTES_ERROR_CODE errorCode = 2814 NSERR_OPENID_MAX_ATTRIBUTES_ERROR_MESSAGE string = "Expression exceeds maximum permissble attributes." NSERR_AAA_MAX_LIMIT_ERROR_CODE errorCode = 2815 NSERR_AAA_MAX_LIMIT_ERROR_MESSAGE string = "It's taking longer than expeected. Not processing further entries." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#sst-errors NSERR_SST_SUBSCR_ALLOC_FAILED_ERROR_CODE errorCode = 3504 NSERR_SST_SUBSCR_ALLOC_FAILED_ERROR_MESSAGE string = "Cannot allocate memory for subscriber in extended memory space" NSERR_SST_SUBSCR_LOOKUP_FAILED_ERROR_CODE errorCode = 3505 NSERR_SST_SUBSCR_LOOKUP_FAILED_ERROR_MESSAGE string = "Cannot find subscriber" NSERR_SST_SUBSCR_REQUEST_ERROR_ERROR_CODE errorCode = 3506 NSERR_SST_SUBSCR_REQUEST_ERROR_ERROR_MESSAGE string = "Invalid request for subscriber" NSERR_GX_SERVICE_CONFIG_XOR_ERROR_CODE errorCode = 3507 NSERR_GX_SERVICE_CONFIG_XOR_ERROR_MESSAGE string = "service and vserver cannot be set at the same time." NSERR_GX_NOT_DIAMETER_VS_ERROR_CODE errorCode = 3508 NSERR_GX_NOT_DIAMETER_VS_ERROR_MESSAGE string = "Not a DIAMETER or SSL_DIAMETER vserver." NSERR_GX_NOT_DIAMETER_SERVICE_ERROR_CODE errorCode = 3509 NSERR_GX_NOT_DIAMETER_SERVICE_ERROR_MESSAGE string = "Not a DIAMETER or SSL_DIAMETER service." NSERR_SST_SUBSCRIBER_ENTRY_EXCEEDED_ERROR_CODE errorCode = 3510 NSERR_SST_SUBSCRIBER_ENTRY_EXCEEDED_ERROR_MESSAGE string = "Size of subscriber entry exceeds total allowed size." NSERR_GX_PCRF_NOT_CONFIGURED_VSERVER_SERVICE_ERROR_CODE errorCode = 3511 NSERR_GX_PCRF_NOT_CONFIGURED_VSERVER_SERVICE_ERROR_MESSAGE string = "PCRF not configured. To configure PCRF, please use set gxInteface -vserver/service ." NSERR_SST_STATIC_SUBSCRIBER_SESSION_DELETION_ERROR_CODE errorCode = 3512 NSERR_SST_STATIC_SUBSCRIBER_SESSION_DELETION_ERROR_MESSAGE string = "Static subscriber profiles cannot be deleted using this command, please use 'rm subscriber profile'" NSERR_SST_SUBSCRIBER_SESSION_EXIST_ERROR_CODE errorCode = 3513 NSERR_SST_SUBSCRIBER_SESSION_EXIST_ERROR_MESSAGE string = "subscriber profile cannot be added as corresponding subscriber session already exists" NSERR_SST_NOT_RADIUS_SERVICE_ERROR_CODE errorCode = 3514 NSERR_SST_NOT_RADIUS_SERVICE_ERROR_MESSAGE string = "Not RADIUS Listener service" NSERR_MAX_SERVICE_FUNCTIONS_ERROR_CODE errorCode = 3515 NSERR_MAX_SERVICE_FUNCTIONS_ERROR_MESSAGE string = "Number for service functions exceeding the limit" NSERR_NOSUCH_SVCFUNC_ERROR_CODE errorCode = 3516 NSERR_NOSUCH_SVCFUNC_ERROR_MESSAGE string = "Service Function is not present with specified name" NSERR_NOSUCH_SVCPATH_ERROR_CODE errorCode = 3517 NSERR_NOSUCH_SVCPATH_ERROR_MESSAGE string = "Service Path is not present with specified name" NSERR_INVALID_SVCINDEX_ERROR_CODE errorCode = 3518 NSERR_INVALID_SVCINDEX_ERROR_MESSAGE string = "The value of service index is invalid" NSERR_SVCPATH_SVCINX_EXISTS_ERROR_CODE errorCode = 3519 NSERR_SVCPATH_SVCINX_EXISTS_ERROR_MESSAGE string = "A service function is already bound with given service index" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#sst-errors2 NSERR_SST_IPANDVLAN_GXONLY_ERROR_CODE errorCode = 3799 NSERR_SST_IPANDVLAN_GXONLY_ERROR_MESSAGE string = "IPANDVLAN keytype can only be set in GxOnly interface type mode." NSERR_VLAN_NOT_ALLOWED_DEFAULT_SUBSCRIBER_PROFILE_ERROR_CODE errorCode = 3800 NSERR_VLAN_NOT_ALLOWED_DEFAULT_SUBSCRIBER_PROFILE_ERROR_MESSAGE string = "VLAN ID is not allowed for the default subscriber profile." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#svpn-errors NSCFG_INFO_ERROR_CODE errorCode = 2049 NSCFG_INFO_ERROR_MESSAGE string = "Sending the /cfg information" NSCS_INFO_ERROR_CODE errorCode = 2050 NSCS_INFO_ERROR_MESSAGE string = "Backend server info exists" NSCSPROBE_INFO_ERROR_CODE errorCode = 2051 NSCSPROBE_INFO_ERROR_MESSAGE string = "Probe to backend server pending" NSAPPPROBE_INFO_ERROR_CODE errorCode = 2052 NSAPPPROBE_INFO_ERROR_MESSAGE string = "Client side connection being closed" NSCFG_MP_INFO_ERROR_CODE errorCode = 2112 NSCFG_MP_INFO_ERROR_MESSAGE string = "Sending the /mp_cfg Information" NSERR_NOINTRANETIP_ERROR_CODE errorCode = 2113 NSERR_NOINTRANETIP_ERROR_MESSAGE string = "No Intranet IP available" NSERR_ALREADYLOGEDIN_ERROR_CODE errorCode = 2114 NSERR_ALREADYLOGEDIN_ERROR_MESSAGE string = "The user is already logged-in" NSERR_URLINUSE_ERROR_CODE errorCode = 2115 NSERR_URLINUSE_ERROR_MESSAGE string = "Bound URL/bookmark cannot be removed." NSERR_VPNAPPINUSE_ERROR_CODE errorCode = 2116 NSERR_VPNAPPINUSE_ERROR_MESSAGE string = "Bound VPN application cannot be removed." NSERR_NOTSUPP_TRANS_INTERCPT_ERROR_CODE errorCode = 2117 NSERR_NOTSUPP_TRANS_INTERCPT_ERROR_MESSAGE string = "Transparent interception is not yet supported." NSERR_CLNT_CERT_RENEG_ERROR_CODE errorCode = 2118 NSERR_CLNT_CERT_RENEG_ERROR_MESSAGE string = "Client SSL certificate renegotiation failed" NSERR_DEFAULTCMDPLCY_ERROR_CODE errorCode = 2119 NSERR_DEFAULTCMDPLCY_ERROR_MESSAGE string = "Default command policy cannot be removed" NSERR_CLNT_CERT_REQD_ERROR_CODE errorCode = 2120 NSERR_CLNT_CERT_REQD_ERROR_MESSAGE string = "Client SSL certificate is required" NSERR_INVAL_CERTFIELD_ERROR_CODE errorCode = 2121 NSERR_INVAL_CERTFIELD_ERROR_MESSAGE string = "Invalid certificate field" NSERR_VPNAPP_PROXY_IPRANGE_ERROR_CODE errorCode = 2064 NSERR_VPNAPP_PROXY_IPRANGE_ERROR_MESSAGE string = "Proxy interception does not support IP ranges" NSERR_VPNAPP_PROXY_NETMASK_ERROR_CODE errorCode = 2065 NSERR_VPNAPP_PROXY_NETMASK_ERROR_MESSAGE string = "Proxy interception does not support netmasks" NSERR_VPNAPP_PROXY_DSTPORT_RANGE_ERROR_CODE errorCode = 2066 NSERR_VPNAPP_PROXY_DSTPORT_RANGE_ERROR_MESSAGE string = "Proxy interception does not support destination port ranges" NSERR_VPNAPP_PROXY_PROTOCOL_ERROR_CODE errorCode = 2067 NSERR_VPNAPP_PROXY_PROTOCOL_ERROR_MESSAGE string = "Proxy interception supports only TCP" NSERR_VPNAPP_PROXY_HOSTNAME_ERROR_CODE errorCode = 2068 NSERR_VPNAPP_PROXY_HOSTNAME_ERROR_MESSAGE string = "Proxy interception does not support hostname interception" NSERR_VPNAPP_TRANS_SRCIP_ERROR_CODE errorCode = 2069 NSERR_VPNAPP_TRANS_SRCIP_ERROR_MESSAGE string = "Transparent interception does not support source IP" NSERR_VPNAPP_TRANS_SRCPORT_ERROR_CODE errorCode = 2070 NSERR_VPNAPP_TRANS_SRCPORT_ERROR_MESSAGE string = "Transparent interception does not support source port" NSERR_VPNAPP_NO_INTERCEPTION_TYPE_ERROR_CODE errorCode = 2071 NSERR_VPNAPP_NO_INTERCEPTION_TYPE_ERROR_MESSAGE string = "Intranet application requires an interception type" NSERR_VPNAPP_CLIAPP_PORT_ERROR_CODE errorCode = 2072 NSERR_VPNAPP_CLIAPP_PORT_ERROR_MESSAGE string = "Both client application name and destination port cannot be specified" NSERR_VPNAPP_CLIAPP_PROTO_ERROR_CODE errorCode = 2073 NSERR_VPNAPP_CLIAPP_PROTO_ERROR_MESSAGE string = "Protocol can not be specified when client application name is present" NSERR_VPNAPP_PROXY_CLIAPP_ERROR_CODE errorCode = 2074 NSERR_VPNAPP_PROXY_CLIAPP_ERROR_MESSAGE string = "Proxy interception does not support client application based interception" NSERR_VPNAPP_MISSING_PROTO_ERROR_CODE errorCode = 2075 NSERR_VPNAPP_MISSING_PROTO_ERROR_MESSAGE string = "Protocol must be specified" NSERR_VPNAPP_MISSING_ARG_ERROR_CODE errorCode = 2076 NSERR_VPNAPP_MISSING_ARG_ERROR_MESSAGE string = "One of destIP, IPRange or hostname has to be specified" NSERR_VPNAPP_TOO_MANY_ARG_ERROR_CODE errorCode = 2077 NSERR_VPNAPP_TOO_MANY_ARG_ERROR_MESSAGE string = "At most one of destIP, IPRange or hostname may be specified" NSERR_FS_AUTHFAIL_ERROR_CODE errorCode = 2078 NSERR_FS_AUTHFAIL_ERROR_MESSAGE string = "" NSERR_NSIPV6NOTPRESENT_ERROR_CODE errorCode = 2079 NSERR_NSIPV6NOTPRESENT_ERROR_MESSAGE string = "No IPV6 Netscaler IP has been configured" NSERR_REMOVE_SESSION_ERROR_CODE errorCode = 2096 NSERR_REMOVE_SESSION_ERROR_MESSAGE string = "No IPV6 Netscaler IP has been configured" NSERR_STAWI_EXIST_ERROR_CODE errorCode = 3250 NSERR_STAWI_EXIST_ERROR_MESSAGE string = "A STA or WI DBS configuration exists. Unset it first" NSERR_INVALID_SSO_ACTION_ERROR_CODE errorCode = 2099 NSERR_INVALID_SSO_ACTION_ERROR_MESSAGE string = "Invalid sso action" NSERR_INVALID_TMTRAFFIC_ACTION_ERROR_CODE errorCode = 2100 NSERR_INVALID_TMTRAFFIC_ACTION_ERROR_MESSAGE string = "Invalid tm traffic action" NSERR_INVALFSSO_ERROR_CODE errorCode = 2101 NSERR_INVALFSSO_ERROR_MESSAGE string = "SSO should be turned on for setting formsso action" NSERR_INVALIDURL_ERROR_CODE errorCode = 2102 NSERR_INVALIDURL_ERROR_MESSAGE string = "Action url should be root relative url" NSERR_INVALID_FLOWTYPE_FORAPPFLOW_ERROR_CODE errorCode = 2126 NSERR_INVALID_FLOWTYPE_FORAPPFLOW_ERROR_MESSAGE string = "Flowtype needs to be REQUEST or ICA_REQUEST or OTHERTCP_REQUEST for appflow policy when bound to VPN vservers" NSERR_TOO_MANY_SERVERS_ERROR_CODE errorCode = 2127 NSERR_TOO_MANY_SERVERS_ERROR_MESSAGE string = "Too many servers bound" NSERR_BLOCKING_ATTR_WARNING_FOR_VPN_APPFLOW_ERROR_CODE errorCode = 2961 NSERR_BLOCKING_ATTR_WARNING_FOR_VPN_APPFLOW_ERROR_MESSAGE string = "Policy will not apply to VPN traffic if it has blocking attributes" NSERR_SAMLIDP_ACTION_ERROR_CODE errorCode = 2975 NSERR_SAMLIDP_ACTION_ERROR_MESSAGE string = "Invalid SAML IDP Action" NSERR_SAML_ACTION_AUTHNCTX_ERROR_CODE errorCode = 2976 NSERR_SAML_ACTION_AUTHNCTX_ERROR_MESSAGE string = "None option is mutually exclusive with other Authentication Class References" NSERR_ABSOLUTE_URL_ERROR_CODE errorCode = 2977 NSERR_ABSOLUTE_URL_ERROR_MESSAGE string = "URL has to be an absolute URL" NSERR_INVALID_AG_BIND_ERROR_CODE errorCode = 2978 NSERR_INVALID_AG_BIND_ERROR_MESSAGE string = "SSLVPN vserver can be bound to only SSL type CS vserver" NSERR_NO_VSERVER_ERROR_CODE errorCode = 2979 NSERR_NO_VSERVER_ERROR_MESSAGE string = "Please specify the associated vserver name" NSERR_SSSO_NOT_LICENSED_ERROR_CODE errorCode = 2980 NSERR_SSSO_NOT_LICENSED_ERROR_MESSAGE string = "This feature needs enterprise or platinum license." NSERR_MULT_AGBIND_ERROR_CODE errorCode = 2981 NSERR_MULT_AGBIND_ERROR_MESSAGE string = "Only one VPN vserver can be bound to a CS vserver." NSERR_VPN_VSERV_PROTOCOL_NOT_ALLOWED_ERROR_CODE errorCode = 2982 NSERR_VPN_VSERV_PROTOCOL_NOT_ALLOWED_ERROR_MESSAGE string = "VPN/Authentication Vserver of service type 'HTTP' is not allowed." NSERR_SET_NOT_ALLOWED_ON_ICAONLY_BIT_ERROR_CODE errorCode = 2983 NSERR_SET_NOT_ALLOWED_ON_ICAONLY_BIT_ERROR_MESSAGE string = "Changing 'ICAonly' parameter is not allowed in Cluster Deployment." NSERR_IIP_INVALID_RANGE_ERROR_CODE errorCode = 2984 NSERR_IIP_INVALID_RANGE_ERROR_MESSAGE string = "The given intranet IP binding does not exist" NSERR_SSLVPN_LICENSE_ERROR_CODE errorCode = 2985 NSERR_SSLVPN_LICENSE_ERROR_MESSAGE string = "Feature not licensed [SSLVPN]" NSERR_SAMLIDP_REDIR_INVALID_SIGN_ERROR_CODE errorCode = 2990 NSERR_SAMLIDP_REDIR_INVALID_SIGN_ERROR_MESSAGE string = "signAssertion option can only be set to ASSERTION in Redirect binding" NSERR_VPN_AUTH_BIND_ERROR_CODE errorCode = 2991 NSERR_VPN_AUTH_BIND_ERROR_MESSAGE string = "Authentication vserver can not be bound to a CS vserver if VPN vserver is already bound to it." NSERR_AUTH_VPN_BIND_ERROR_CODE errorCode = 2992 NSERR_AUTH_VPN_BIND_ERROR_MESSAGE string = "VPN vserver can not be bound to a CS vserver if Authentication vserver is already bound to it." NSERR_SVPN_INVALID_URL_ERROR_CODE errorCode = 2993 NSERR_SVPN_INVALID_URL_ERROR_MESSAGE string = "URL must be an absolute url with a trailing slash" NSERR_MULT_AUTHBIND_ERROR_CODE errorCode = 2994 NSERR_MULT_AUTHBIND_ERROR_MESSAGE string = "Only one Authentication vserver can be bound to a CS vserver." NSERR_SVPN_INVALID_ICONURL_ERROR_CODE errorCode = 2995 NSERR_SVPN_INVALID_ICONURL_ERROR_MESSAGE string = "Only the following image types i.e. .png, .jpeg, .jpg and .giff are allowed as bookmark icons." NSERR_XM_PKG_CONTENT_ERROR_CODE errorCode = 2996 NSERR_XM_PKG_CONTENT_ERROR_MESSAGE string = "XenMobile package content error. Please find more information in /var/log/nsxm.log" NSERR_XM_MISSING_TOKEN_VALUE_ERROR_CODE errorCode = 2997 NSERR_XM_MISSING_TOKEN_VALUE_ERROR_MESSAGE string = "XenMobile script tokens replacement failure. Please find more information in /var/log/nsxm.log" NSERR_SAML_ARTIFACT_NO_URL_ERROR_CODE errorCode = 2998 NSERR_SAML_ARTIFACT_NO_URL_ERROR_MESSAGE string = "Artifact resolution url is required when binding is specified as ARTIFACT" NSERR_OAUTHIDP_ACTION_ERROR_CODE errorCode = 2999 NSERR_OAUTHIDP_ACTION_ERROR_MESSAGE string = "Invalid OAuth IDP Action" NSERR_NOLICENCE_PUSH_ERROR_CODE errorCode = 3000 NSERR_NOLICENCE_PUSH_ERROR_MESSAGE string = "Platinum license is required for this operation" NSERR_INVALSAMLSSO_ERROR_CODE errorCode = 3001 NSERR_INVALSAMLSSO_ERROR_MESSAGE string = "SSO should be turned on for setting samlsso action" NSERR_INVALSAMLIDPATTR1_ERROR_CODE errorCode = 2512 NSERR_INVALSAMLIDPATTR1_ERROR_MESSAGE string = "Incorrect expression at attribute 1" NSERR_INVALSAMLIDPATTR2_ERROR_CODE errorCode = 2513 NSERR_INVALSAMLIDPATTR2_ERROR_MESSAGE string = "Incorrect expression at attribute 2" NSERR_INVALSAMLIDPATTR3_ERROR_CODE errorCode = 2514 NSERR_INVALSAMLIDPATTR3_ERROR_MESSAGE string = "Incorrect expression at attribute 3" NSERR_INVALSAMLIDPATTR4_ERROR_CODE errorCode = 2515 NSERR_INVALSAMLIDPATTR4_ERROR_MESSAGE string = "Incorrect expression at attribute 4" NSERR_INVALSAMLIDPATTR5_ERROR_CODE errorCode = 2516 NSERR_INVALSAMLIDPATTR5_ERROR_MESSAGE string = "Incorrect expression at attribute 5" NSERR_INVALSAMLIDPATTR6_ERROR_CODE errorCode = 2517 NSERR_INVALSAMLIDPATTR6_ERROR_MESSAGE string = "Incorrect expression at attribute 6" NSERR_INVALSAMLIDPATTR7_ERROR_CODE errorCode = 2518 NSERR_INVALSAMLIDPATTR7_ERROR_MESSAGE string = "Incorrect expression at attribute 7" NSERR_INVALSAMLIDPATTR8_ERROR_CODE errorCode = 2519 NSERR_INVALSAMLIDPATTR8_ERROR_MESSAGE string = "Incorrect expression at attribute 8" NSERR_INVALSAMLIDPATTR9_ERROR_CODE errorCode = 2520 NSERR_INVALSAMLIDPATTR9_ERROR_MESSAGE string = "Incorrect expression at attribute 9" NSERR_INVALSAMLIDPATTR10_ERROR_CODE errorCode = 2521 NSERR_INVALSAMLIDPATTR10_ERROR_MESSAGE string = "Incorrect expression at attribute 10" NSERR_INVALSAMLIDPATTR11_ERROR_CODE errorCode = 3002 NSERR_INVALSAMLIDPATTR11_ERROR_MESSAGE string = "Incorrect expression at attribute 11" NSERR_INVALSAMLIDPATTR12_ERROR_CODE errorCode = 2523 NSERR_INVALSAMLIDPATTR12_ERROR_MESSAGE string = "Incorrect expression at attribute 12" NSERR_INVALSAMLIDPATTR13_ERROR_CODE errorCode = 2524 NSERR_INVALSAMLIDPATTR13_ERROR_MESSAGE string = "Incorrect expression at attribute 13" NSERR_INVALSAMLIDPATTR14_ERROR_CODE errorCode = 2525 NSERR_INVALSAMLIDPATTR14_ERROR_MESSAGE string = "Incorrect expression at attribute 14" NSERR_INVALSAMLIDPATTR15_ERROR_CODE errorCode = 2526 NSERR_INVALSAMLIDPATTR15_ERROR_MESSAGE string = "Incorrect expression at attribute 15" NSERR_INVALSAMLIDPATTR16_ERROR_CODE errorCode = 2527 NSERR_INVALSAMLIDPATTR16_ERROR_MESSAGE string = "Incorrect expression at attribute 16" NSERR_PUSH_SERVICE_AZURE_ARGS_ERROR_CODE errorCode = 2550 NSERR_PUSH_SERVICE_AZURE_ARGS_ERROR_MESSAGE string = "Azure type service requires Namespace, Hub, Servicekey and Servicekey name but not Trust service" NSERR_PUSH_SERVICE_NS_ARGS_ERROR_CODE errorCode = 2551 NSERR_PUSH_SERVICE_NS_ARGS_ERROR_MESSAGE string = "Citrix type service requires Client id and secret" NSERR_INVALID_DFA_BINDPOINT_ERROR_CODE errorCode = 2552 NSERR_INVALID_DFA_BINDPOINT_ERROR_MESSAGE string = "DFA policies cannot be bound to user defined policylabels/factors" NSERR_SMARTACCESS_ACTION_ERROR_CODE errorCode = 2313 NSERR_SMARTACCESS_ACTION_ERROR_MESSAGE string = "Invalid Smartaccess profile" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#td-errors NSERR_TD_EXISTS_ERROR_CODE errorCode = 944 NSERR_TD_EXISTS_ERROR_MESSAGE string = "The specified traffic domain is already configured." NSERR_TD_VLAN_ERROR_CODE errorCode = 945 NSERR_TD_VLAN_ERROR_MESSAGE string = "" /* 135-byte string literal not displayed */ NSERR_TD_NOTEXIST_ERROR_CODE errorCode = 946 NSERR_TD_NOTEXIST_ERROR_MESSAGE string = "The specified traffic domain is not configured." NSERR_TD_MISMATCH_WITH_L3VLAN_ERROR_CODE errorCode = 947 NSERR_TD_MISMATCH_WITH_L3VLAN_ERROR_MESSAGE string = "L3 VLANs can not be bound to a traffic domain." NSERR_TD_MISMATCH_ERROR_CODE errorCode = 948 NSERR_TD_MISMATCH_ERROR_MESSAGE string = "The binding entities have incompatible traffic domain identifiers." NSERR_TD_NOSUPP_ERROR_CODE errorCode = 949 NSERR_TD_NOSUPP_ERROR_MESSAGE string = "This feature is not supported in a non-default traffic domain." NSERR_TD_CONFIG_NOT_ALLOWED_ERROR_CODE errorCode = 950 NSERR_TD_CONFIG_NOT_ALLOWED_ERROR_MESSAGE string = "This configuration option is not supported in a non-default traffic domain." NSERR_TD_IP_NOTEXIST_ERROR_CODE errorCode = 951 NSERR_TD_IP_NOTEXIST_ERROR_MESSAGE string = "The IP address is not configured for the specified traffic domain." NSERR_TD_VLAN_NOTEXIST_ERROR_CODE errorCode = 952 NSERR_TD_VLAN_NOTEXIST_ERROR_MESSAGE string = "The specified VLAN is not configured." NSERR_TD_DEFVLAN_ERROR_CODE errorCode = 953 NSERR_TD_DEFVLAN_ERROR_MESSAGE string = "Default VLAN cannot be bound/unbound to/from traffic domain." NSERR_TD_BDG_NOTEXIST_ERROR_CODE errorCode = 954 NSERR_TD_BDG_NOTEXIST_ERROR_MESSAGE string = "The specified bridge group is not configured." NSERR_TD_VLAN_BDG_EXIST_ERROR_CODE errorCode = 955 NSERR_TD_VLAN_BDG_EXIST_ERROR_MESSAGE string = "The specified VLAN is bound to a bridge group." NSERR_TD_SERVER_MISMATCH_ERROR_CODE errorCode = 956 NSERR_TD_SERVER_MISMATCH_ERROR_MESSAGE string = "The specified virtual server already bound to a service in a different traffic domain." NSERR_DIFF_TD_NALLOWED_LLB_ERROR_CODE errorCode = 957 NSERR_DIFF_TD_NALLOWED_LLB_ERROR_MESSAGE string = "Not allowed for LLB: Services bound to the specified virtual server must be in same traffic domain." NSERR_DUPIP_ERROR_CODE errorCode = 958 NSERR_DUPIP_ERROR_MESSAGE string = "IP address duplication with VMAC address detected. Please try a different IP address." NSERR_VMAC_VLAN_ERROR_CODE errorCode = 959 NSERR_VMAC_VLAN_ERROR_MESSAGE string = "Traffic domain can be either VLAN based or VMAC based." NSERR_TD_SYNCVLAN_ERROR_CODE errorCode = 960 NSERR_TD_SYNCVLAN_ERROR_MESSAGE string = "SYNC VLAN cannot be bound/unbound to/from traffic domain." NSERR_TD_NOT_VLAN_ERROR_CODE errorCode = 961 NSERR_TD_NOT_VLAN_ERROR_MESSAGE string = "The specified VLAN/VXLAN/bridge group is not bound to given traffic domain." NSERR_SYNCNSVLAN_TD_ERROR_CODE errorCode = 975 NSERR_SYNCNSVLAN_TD_ERROR_MESSAGE string = "VLAN bound to traffic domain cannot be configured as SYNC/NS VLAN." NSERR_TD_CONFIG_DEPR_ERROR_CODE errorCode = 934 NSERR_TD_CONFIG_DEPR_ERROR_MESSAGE string = "" /* 184-byte string literal not displayed */ // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#urlfilt-errors NSERR_URLFILT_CANNOT_PARSE_XML_ERROR_CODE errorCode = 3772 NSERR_URLFILT_CANNOT_PARSE_XML_ERROR_MESSAGE string = "Cannot parse XML categories file." NSERR_URLFILT_CANNOT_FIND_GROUP_ERROR_CODE errorCode = 3773 NSERR_URLFILT_CANNOT_FIND_GROUP_ERROR_MESSAGE string = "Cannot find the specified category group." NSERR_URLFILT_XML_FILE_TOO_BIG_ERROR_CODE errorCode = 3774 NSERR_URLFILT_XML_FILE_TOO_BIG_ERROR_MESSAGE string = "XML categories file is too big." NSERR_URLFILT_DEPRECATED_IC_CACHE_NOT_ENABLED_ERROR_CODE errorCode = 3869 NSERR_URLFILT_DEPRECATED_IC_CACHE_NOT_ENABLED_ERROR_MESSAGE string = "IC feature need to be enabled too. URLFiltering feature is deprecated and will be removed in future." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#urlset-errors NSERR_URLSET_CANNOT_INIT_PATTERN_ERROR_CODE errorCode = 3768 NSERR_URLSET_CANNOT_INIT_PATTERN_ERROR_MESSAGE string = "Cannot initialize urlset pattern." NSERR_URLSET_CANNOT_FIND_URL_ERROR_CODE errorCode = 3769 NSERR_URLSET_CANNOT_FIND_URL_ERROR_MESSAGE string = "Cannot find url in urlset." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#urltrans-errors NSERR_URLTRANS_MAX_ENTITIES_ERROR_CODE errorCode = 2960 NSERR_URLTRANS_MAX_ENTITIES_ERROR_MESSAGE string = "Number of URL Transformation entities exceeds limit" NSERR_URLTRANS_INVAL_PROFILE_ERROR_CODE errorCode = 2962 NSERR_URLTRANS_INVAL_PROFILE_ERROR_MESSAGE string = "Invalid URL Transformation profile" NSERR_URLTRANS_ACTION_INUSE_ERROR_CODE errorCode = 2963 NSERR_URLTRANS_ACTION_INUSE_ERROR_MESSAGE string = "Action name is already in use" NSERR_URLTRANS_PRIORITY_EXISTS_ERROR_CODE errorCode = 2964 NSERR_URLTRANS_PRIORITY_EXISTS_ERROR_MESSAGE string = "An object with this priority already exists" NSERR_URLTRANS_REQ_PCRE_ERR_ERROR_CODE errorCode = 2965 NSERR_URLTRANS_REQ_PCRE_ERR_ERROR_MESSAGE string = "Invalid PCRE expression under 'reqUrlFrom'" NSERR_URLTRANS_RESP_PCRE_ERR_ERROR_CODE errorCode = 2966 NSERR_URLTRANS_RESP_PCRE_ERR_ERROR_MESSAGE string = "Invalid PCRE expression under 'resUrlFrom'" NSERR_URLTRANS_REQ_INTO_ERR_ERROR_CODE errorCode = 2967 NSERR_URLTRANS_REQ_INTO_ERR_ERROR_MESSAGE string = "Invalid expression under 'reqUrlInto'" NSERR_URLTRANS_RESP_INTO_ERR_ERROR_CODE errorCode = 2968 NSERR_URLTRANS_RESP_INTO_ERR_ERROR_MESSAGE string = "Invalid expression under 'resUrlInto'" NSERR_URLTRANS_COOKIE_INTO_ERR_ERROR_CODE errorCode = 2969 NSERR_URLTRANS_COOKIE_INTO_ERR_ERROR_MESSAGE string = "Invalid expression under 'cookieDomainInto'" NSERR_URLTRANS_COOKIE_PCRE_ERR_ERROR_CODE errorCode = 2970 NSERR_URLTRANS_COOKIE_PCRE_ERR_ERROR_MESSAGE string = "Invalid PCRE expression under 'cookieDomainFrom'" NSERR_URLTRANS_TOO_MANY_BACKREFS_ERROR_CODE errorCode = 2971 NSERR_URLTRANS_TOO_MANY_BACKREFS_ERROR_MESSAGE string = "More than 5 back references in PCRE expression" NSERR_URLTRANS_MISSING_FROM_ERROR_CODE errorCode = 2972 NSERR_URLTRANS_MISSING_FROM_ERROR_MESSAGE string = "Each 'Into' expression must have a corresponding 'From' pattern" NSERR_URLTRANS_NOT_SUPPORTED_VS_ERROR_CODE errorCode = 2973 NSERR_URLTRANS_NOT_SUPPORTED_VS_ERROR_MESSAGE string = "Specified policy can be bound only to HTTP/SSL/PROXY/HTTP_QUIC type vserver" NSERR_URLTRANS_BAD_COMMENT_ERROR_CODE errorCode = 2974 NSERR_URLTRANS_BAD_COMMENT_ERROR_MESSAGE string = "Invalid comment" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#videoopt-errors NSERR_VIDEOOPT_INV_RANDOMSAMPLING_ERROR_CODE errorCode = 3804 NSERR_VIDEOOPT_INV_RANDOMSAMPLING_ERROR_MESSAGE string = "Invalid RandomSampling parameter. Should be >=0.0 and <=100.0" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#vlan-errors NSERR_INTERFACEBOUND_ERROR_CODE errorCode = 2080 NSERR_INTERFACEBOUND_ERROR_MESSAGE string = "Interface is already bound to this VLAN" NSERR_IFACE_NO_UNBIND_ERROR_CODE errorCode = 2081 NSERR_IFACE_NO_UNBIND_ERROR_MESSAGE string = "Untagged interface cannot be removed from default VLAN. To remove, bind to other VLAN." NSERR_IFACE_MAX_VLANS_ERROR_CODE errorCode = 2082 NSERR_IFACE_MAX_VLANS_ERROR_MESSAGE string = "Maximum number of tagged VLANs bound to the interface exceeded or the binding of this VLAN is not allowed on the interface." NSERR_VLAN_RTEXIST_ERROR_CODE errorCode = 2083 NSERR_VLAN_RTEXIST_ERROR_MESSAGE string = "An existing route relies on the presence of this vlan" NSERR_VLAN_LLEXIST_ERROR_CODE errorCode = 2084 NSERR_VLAN_LLEXIST_ERROR_MESSAGE string = "An existing link-local ip relies on the presence of this vlan" NSERR_BOUNDTONSVLAN_ERROR_CODE errorCode = 2085 NSERR_BOUNDTONSVLAN_ERROR_MESSAGE string = "Interface/Channel bound to NSVLAN" NSERR_VLAN_TD_CONFIGURED_ERROR_CODE errorCode = 2408 NSERR_VLAN_TD_CONFIGURED_ERROR_MESSAGE string = "TD is configured on this bridgegroup/vlan. Cannot delete this" NSERR_VLAN_BOUNDTO_NETBRIDGE_ERROR_CODE errorCode = 1216 NSERR_VLAN_BOUNDTO_NETBRIDGE_ERROR_MESSAGE string = "Vlan bound to Netbridge cannot be removed" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#vmac-errors NSERR_INTERFACE_BOUND_ERROR_CODE errorCode = 3329 NSERR_INTERFACE_BOUND_ERROR_MESSAGE string = "Interface already bound" NSERR_VRID_INTERFACE_NOT_BOUND_ERROR_CODE errorCode = 3330 NSERR_VRID_INTERFACE_NOT_BOUND_ERROR_MESSAGE string = "Interface not bound" NSERR_NO_SUCH_INTERFACE_ERROR_CODE errorCode = 3331 NSERR_NO_SUCH_INTERFACE_ERROR_MESSAGE string = "No such interface" NSERR_DYNAMIC_ENTRY_ERROR_CODE errorCode = 3346 NSERR_DYNAMIC_ENTRY_ERROR_MESSAGE string = "Dynamic Entry exists." NSERR_PRIO_INTFVRID_ERROR_CODE errorCode = 3347 NSERR_PRIO_INTFVRID_ERROR_MESSAGE string = "Invalid Priority for interface bound VRID" NSERR_INTFVRID_ERROR_CODE errorCode = 3348 NSERR_INTFVRID_ERROR_MESSAGE string = "Binding interface is not allowed for Dynamic or IP bound VRID" NSERR_NOTSTATIC_VRID_ERROR_CODE errorCode = 3349 NSERR_NOTSTATIC_VRID_ERROR_MESSAGE string = "Not a Configured VRID" NSERR_IPVRID_ERROR_CODE errorCode = 3350 NSERR_IPVRID_ERROR_MESSAGE string = "IP binding is not allowed for Interface VRID" NSERR_IPVRID_BOUND_ERROR_CODE errorCode = 3351 NSERR_IPVRID_BOUND_ERROR_MESSAGE string = "VRID already bound to this IP" NSERR_NOVRID_ERROR_CODE errorCode = 3354 NSERR_NOVRID_ERROR_MESSAGE string = "VRID doesn't exist" NSERR_INTF_TRACKINTF_BOUND_ERROR_CODE errorCode = 3362 NSERR_INTF_TRACKINTF_BOUND_ERROR_MESSAGE string = "Interfaces can either be tracked or bound to a vrID." NSERR_VRRP_SHAREDVLAN_NOT_SUPPORTED_ERROR_CODE errorCode = 3408 NSERR_VRRP_SHAREDVLAN_NOT_SUPPORTED_ERROR_MESSAGE string = "VRRP functionality is not supported on shared VLANs." NSERR_INTF_VRID_BIND_NOTALLOWED_ERROR_CODE errorCode = 3868 NSERR_INTF_VRID_BIND_NOTALLOWED_ERROR_MESSAGE string = "Binding of interface to this VRID is not allowed. Plesae check if the VRID is allowed for the interface from SVM." // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#vxlan-errors NSERR_VXLAN_INCOMP_ERROR_CODE errorCode = 2608 NSERR_VXLAN_INCOMP_ERROR_MESSAGE string = "Vlan extension and IP address - both cannot be configured on vxlan" NSERR_VXLAN_TUN_BOUND_ERROR_CODE errorCode = 2609 NSERR_VXLAN_TUN_BOUND_ERROR_MESSAGE string = "Tunnel is already bound to this vxlan" NSERR_INV_MCAST_ERROR_CODE errorCode = 2610 NSERR_INV_MCAST_ERROR_MESSAGE string = "Another multicast group already configured for this vxlan" NSERR_TUN_NOT_BOUND_ERROR_CODE errorCode = 2611 NSERR_TUN_NOT_BOUND_ERROR_MESSAGE string = "Tunnel not bound to this vxlan" NSERR_IP_NOT_BOUND_ERROR_CODE errorCode = 2612 NSERR_IP_NOT_BOUND_ERROR_MESSAGE string = "IP/IPv6 address not bound to this vxlan" NSERR_INV_TUN_ERROR_CODE errorCode = 2613 NSERR_INV_TUN_ERROR_MESSAGE string = "Tunnel should be of VXLAN type" NSERR_NO_VXLAN_ERROR_CODE errorCode = 2614 NSERR_NO_VXLAN_ERROR_MESSAGE string = "Vxlan is not configured" NSERR_VLAN_EXT_ERROR_CODE errorCode = 2615 NSERR_VLAN_EXT_ERROR_MESSAGE string = "Vlan already extended by a different vxlan" NSERR_VXLAN_TD_ERROR_CODE errorCode = 2616 NSERR_VXLAN_TD_ERROR_MESSAGE string = "Vxlan is bound to a traffic domain" NSERR_VXLAN_ROTUING_ERROR_CODE errorCode = 2617 NSERR_VXLAN_ROTUING_ERROR_MESSAGE string = "Vlan extension and routing - both cannot be configured on vxlan" NSERR_VXLANMAP_INUSE_ERROR_CODE errorCode = 2743 NSERR_VXLANMAP_INUSE_ERROR_MESSAGE string = "This vlan-to-vxlan map table is in use by a netbridge/pbr-tunnel" NSERR_VXLAN_TBL_BOUND_ERROR_CODE errorCode = 2738 NSERR_VXLAN_TBL_BOUND_ERROR_MESSAGE string = "Vxlan is in use by a vlan-to-vxlan map table" NSERR_TUN_MAP_TBL_ERROR_CODE errorCode = 2739 NSERR_TUN_MAP_TBL_ERROR_MESSAGE string = "The tunnel currently applies vlan-to-vxlan mappings" NSERR_VXLAN_INUSE_ERROR_CODE errorCode = 2740 NSERR_VXLAN_INUSE_ERROR_MESSAGE string = "Vxlans that have vlan extensions or IP addresses or routing cannot be used in mapping table" NSERR_NETBDG_VXLAN_VLAN_ERROR_CODE errorCode = 2741 NSERR_NETBDG_VXLAN_VLAN_ERROR_MESSAGE string = "Vlan-to-vxlan map table and vlan - both cannot be configured on a netbridge" NSERR_NO_VXLANMAP_ERROR_CODE errorCode = 2742 NSERR_NO_VXLANMAP_ERROR_MESSAGE string = "Vlan-to-vxlan map table is not configured" NSERR_VXLANMAP_TUN_NOSUP_ERROR_CODE errorCode = 2746 NSERR_VXLANMAP_TUN_NOSUP_ERROR_MESSAGE string = "Incompatible tunnel type for vlan-to-vxlan map table" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#warning-errors NSERR_AUTHORIZE_ERROR_CODE errorCode = 0 NSERR_AUTHORIZE_ERROR_MESSAGE string = "" NSERR_AUTHFAIL_ERROR_CODE errorCode = 0 NSERR_AUTHFAIL_ERROR_MESSAGE string = "" NSWAR_SSL_BINDOR_ERROR_CODE errorCode = 0 NSWAR_SSL_BINDOR_ERROR_MESSAGE string = "Current certificate replaces the previous binding" NSWAR_SSL_BRKLINK_ERROR_CODE errorCode = 0 NSWAR_SSL_BRKLINK_ERROR_MESSAGE string = "All incompatible CA links/Cert Bindings were broken during the update operation" NSWAR_SSL_CERT_NOT_YET_VALID_ERROR_CODE errorCode = 0 NSWAR_SSL_CERT_NOT_YET_VALID_ERROR_MESSAGE string = "The specified certificate is not yet valid" NSWAR_SSL_CERT_EXPIRED_ERROR_CODE errorCode = 0 NSWAR_SSL_CERT_EXPIRED_ERROR_MESSAGE string = "The certificate has expired" NSWAR_SSL_EXPIRED_BRKLINK_ERROR_CODE errorCode = 0 NSWAR_SSL_EXPIRED_BRKLINK_ERROR_MESSAGE string = "All incompatible CA links were broken during the update operation. (Note: the certificate has expired)" NSWAR_SSL_NYVALID_BRKLINK_ERROR_CODE errorCode = 0 NSWAR_SSL_NYVALID_BRKLINK_ERROR_MESSAGE string = "All incompatible CA links were broken during the update operation. (Note: the certificate is not yet valid)" // https://developer-docs.netscaler.com/en-us/adc-nitro-api/current-release/error-messages/error-messages#xs-errors NSERR_CIPROF_INTERFACE_NOT_ALLOWED_ERROR_CODE errorCode = 2436 NSERR_CIPROF_INTERFACE_NOT_ALLOWED_ERROR_MESSAGE string = "IngressInterface and Ingressvlan are not allowed for this contentinspection profile type" NSERR_XS_INTERNAL_RESOURCE_CREATION_ERROR_CODE errorCode = 3794 NSERR_XS_INTERNAL_RESOURCE_CREATION_ERROR_MESSAGE string = "Resource creation failed, internal error." NSERR_XS_INVALID_SERVERNAME_ERROR_CODE errorCode = 3795 NSERR_XS_INVALID_SERVERNAME_ERROR_MESSAGE string = "Unsupported service type. Supported types are TCP and SSL_TCP for ICAP, TCP for INLINEINSPECTION and ANY for MIRROR." NSERR_CI_ACT_IP_PORT_NOT_ALLOWED_ERROR_CODE errorCode = 3820 NSERR_CI_ACT_IP_PORT_NOT_ALLOWED_ERROR_MESSAGE string = "IP and Port can't set be for this contentinspection action type" NSERR_CI_ACT_SNAME_SIP_CONFLICT_ERROR_CODE errorCode = 3796 NSERR_CI_ACT_SNAME_SIP_CONFLICT_ERROR_MESSAGE string = "Server name and ip can't both be set for this content inspection entity." NSERR_XS_INVALID_ICAPPROFILE_NAME_ERROR_CODE errorCode = 3797 NSERR_XS_INVALID_ICAPPROFILE_NAME_ERROR_MESSAGE string = "Invalid ICAP profile name." NSERR_CI_PROFILE_EXISTS_ERROR_CODE errorCode = 3798 NSERR_CI_PROFILE_EXISTS_ERROR_MESSAGE string = "ContentInspection profile exists with the given name." NSERR_CIPROF_INUSE_ERROR_CODE errorCode = 3801 NSERR_CIPROF_INUSE_ERROR_MESSAGE string = "Can't change MODE as the ContentInspection profile is in use." NSERR_XS_INVALID_CIPROFILE_NAME_ERROR_CODE errorCode = 3766 NSERR_XS_INVALID_CIPROFILE_NAME_ERROR_MESSAGE string = "Invalid contentInspection profile name." NSERR_CI_UNSUPPORTED_PROFILE_TYPE_ERROR_CODE errorCode = 3767 NSERR_CI_UNSUPPORTED_PROFILE_TYPE_ERROR_MESSAGE string = "Invalid Content Inspection type specified." NSERR_CI_NO_PROFILE_ERROR_CODE errorCode = 3817 NSERR_CI_NO_PROFILE_ERROR_MESSAGE string = "Content Inspection profile does not exist." NSERR_CI_INVALID_CIC_ERROR_CODE errorCode = 3821 NSERR_CI_INVALID_CIC_ERROR_MESSAGE string = "Content Inspection callout does not exist or type didn't match." NSERR_CI_ACT_MISSING_PROFILE_ERROR_CODE errorCode = 3823 NSERR_CI_ACT_MISSING_PROFILE_ERROR_MESSAGE string = "ContentInspectionProfile is not set on service(s)" NSERR_CIPROF_TUNNEL_NOT_ALLOWED_ERROR_CODE errorCode = 2437 NSERR_CIPROF_TUNNEL_NOT_ALLOWED_ERROR_MESSAGE string = "Tunnel is not allowed for this contentinspection profile type" )
View Source
const (
ResourcePackagePath = "github.com/corelayer/go-netscaleradc-nitro/pkg/nitro/resource/"
)
Variables ¶
View Source
var ( ActionNone = Action{""} ActionClear = Action{"clear"} ActionCount = Action{"count"} ActionCreate = Action{"create"} ActionDiff = Action{"diff"} ActionDisable = Action{"disable"} ActionEnable = Action{"enable"} ActionForce = Action{"force"} ActionKill = Action{"kill"} ActionLink = Action{"link"} ActionRename = Action{"rename"} ActionRestore = Action{"restore"} ActionSave = Action{"save"} ActionSync = Action{"sync"} ActionUnlink = Action{"unlink"} ActionUnset = Action{"unset"} ActionUpdate = Action{"update"} )
View Source
var ( ClientCreateError = Error{/* contains filtered or unexported fields */} ClientCreateHttpRequestError = Error{/* contains filtered or unexported fields */} ClientExecuteRequestError = Error{/* contains filtered or unexported fields */} ClientLoginError = Error{/* contains filtered or unexported fields */} ClientLogoutError = Error{/* contains filtered or unexported fields */} ClientSaveConfigError = Error{/* contains filtered or unexported fields */} ClientConnectionSettingsError = Error{/* contains filtered or unexported fields */} ResourceValidationError = Error{/* contains filtered or unexported fields */} ResourceInvalidTypeError = Error{/* contains filtered or unexported fields */} ResourceInvalidFieldError = Error{/* contains filtered or unexported fields */} ResourceSerializationError = Error{/* contains filtered or unexported fields */} ResourceDeserializationError = Error{/* contains filtered or unexported fields */} ResourceExtractionError = Error{/* contains filtered or unexported fields */} ResourceTagError = Error{/* contains filtered or unexported fields */} ControllerOperationNotImplementedError = Error{/* contains filtered or unexported fields */} ApiError = Error{/* contains filtered or unexported fields */} )
View Source
var ( NSERR_RNAT_INV = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IF = Error{/* contains filtered or unexported fields */} NSERR_MGRLIMIT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_SP_INVALD_TABLE = Error{/* contains filtered or unexported fields */} NSERR_RNAT_NATIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_RNAT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_RNAT_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_RNAT_NATIP_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_RNAT_INVALID_NATIP = Error{/* contains filtered or unexported fields */} NSERR_RNAT_XACLWITHTTL = Error{/* contains filtered or unexported fields */} NSERR_ARP_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_ARP_SEC_NOT_OWNEDIP = Error{/* contains filtered or unexported fields */} NSERR_CPE_RULE_INVAL = Error{/* contains filtered or unexported fields */} NSERR_INVAL_FLOWTYPE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_POLICY_TYPE = Error{/* contains filtered or unexported fields */} NSERR_CPE_RULE_ACTION_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CPE_DEF_SET_INVAL = Error{/* contains filtered or unexported fields */} NSERR_INVAL_FORCECLEANUP = Error{/* contains filtered or unexported fields */} NSERR_INVAL_AAA_GROUP = Error{/* contains filtered or unexported fields */} NSERR_INVAL_PROXY = Error{/* contains filtered or unexported fields */} NSERR_INVAL_HTTTPPROXY = Error{/* contains filtered or unexported fields */} NSERR_INVAL_FTPPROXY = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SOCKPROXY = Error{/* contains filtered or unexported fields */} NSERR_INVAL_GOPHERPROXY = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SSLPROXY = Error{/* contains filtered or unexported fields */} NSERR_INVAL_AAAGRP_MAX = Error{/* contains filtered or unexported fields */} NSERR_INVAL_MAX_PORT_NUM = Error{/* contains filtered or unexported fields */} NSERR_INVAL_HTTPPORT = Error{/* contains filtered or unexported fields */} NSERR_INVAL_VPNVSERER_POLTYPE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_VPNGLOBAL_POLTYPE = Error{/* contains filtered or unexported fields */} NSERR_CPE_REM_INUSE = Error{/* contains filtered or unexported fields */} NSERR_PROXY_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_PROXY_INVAL = Error{/* contains filtered or unexported fields */} NSERR_PXYEXCPT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CPE_POLTYPE_NO_CSE = Error{/* contains filtered or unexported fields */} NSERR_SESSACT_CSE_INCOMPATIBLE = Error{/* contains filtered or unexported fields */} NSERR_NOMEM_CSE = Error{/* contains filtered or unexported fields */} NSERR_INCOMPAT_FS_RULE = Error{/* contains filtered or unexported fields */} NSERR_INCOMPAT_FS_MIX = Error{/* contains filtered or unexported fields */} NSERR_DR_ENABLE = Error{/* contains filtered or unexported fields */} NSERR_MAX_DISTANCE = Error{/* contains filtered or unexported fields */} NSERR_NULL_ROUTE_DISTANCE = Error{/* contains filtered or unexported fields */} NSERR_BAD_ACTION_TCP_PROFILE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_BAD_ACTION_HTTP_PROFILE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_SP_INVALID_THRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_VIP_ROUTE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ACTION_BOUND = Error{/* contains filtered or unexported fields */} NSERR_MAX_IPLIMIT = Error{/* contains filtered or unexported fields */} NSERR_BAD_PREFIX_LEN = Error{/* contains filtered or unexported fields */} NSERR_INV_NETADDR = Error{/* contains filtered or unexported fields */} NSERR_MIN_DISTANCE = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_PROFILE_INUSE = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_INVALID_PROFILE_NAME = Error{/* contains filtered or unexported fields */} NSERR_SPOTTED = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_PBR_ONLY_IP_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_IP_NOT_CONTIGUOUS = Error{/* contains filtered or unexported fields */} NSERR_INVAL_USER_ACCOUNTING = Error{/* contains filtered or unexported fields */} NSERR_RDP_PROFILE_INUSE = Error{/* contains filtered or unexported fields */} NSERR_RDP_INVALID_PROFILE_NAME = Error{/* contains filtered or unexported fields */} NSERR_RDP_INVALID_RDP_FILE_NAME = Error{/* contains filtered or unexported fields */} NSERR_RDP_INVALID_SERVERPROFILE_NAME = Error{/* contains filtered or unexported fields */} NSERR_RDP_SERVERPROFILE_ALREADY_IN_USE = Error{/* contains filtered or unexported fields */} NSERR_AUTO_PROXY_URL_INVALID = Error{/* contains filtered or unexported fields */} NSERR_AUTO_PROXY_NO_BROWSER = Error{/* contains filtered or unexported fields */} NSERR_AUTO_PROXY_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_RDP_INVALID_HOST_LEN = Error{/* contains filtered or unexported fields */} NSERR_RDP_NEED_IP = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_INV_PROF = Error{/* contains filtered or unexported fields */} NSERR_RDP_NEED_PSK = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_ONLY_V1 = Error{/* contains filtered or unexported fields */} NSERR_RDP_LISTENER_SPECIFY_PORT = Error{/* contains filtered or unexported fields */} NSERR_RDP_INVALID_LISTENER_HOST = Error{/* contains filtered or unexported fields */} NSERR_RDP_LISTENER_INVALID_PORT = Error{/* contains filtered or unexported fields */} NSERR_PROXY_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_HOST_RT_GW_NOT_SET = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_INTERVAL = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_DESTIP = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_CODES = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_REF = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_BUILTIN = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_BOUND = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_TYPE = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_LOCAL = Error{/* contains filtered or unexported fields */} NSERR_TIMEOUT_RANGE = Error{/* contains filtered or unexported fields */} NSERR_INVALIDHASHLEN = Error{/* contains filtered or unexported fields */} NSERR_NOTAUTHORIZED = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_LDNS_ADD_PERM = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_LDNS_BIND_PERM = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_LOOP = Error{/* contains filtered or unexported fields */} NSERR_SECURE_UDP = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_WRONG_TYPE = Error{/* contains filtered or unexported fields */} NSERR_LRTM_PERM = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_SCRIPTNAME = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_DISPATCHERIP = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_USERPERM = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_NOCODES = Error{/* contains filtered or unexported fields */} NSERR_INVAL_MON = Error{/* contains filtered or unexported fields */} NSERR_TYPE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_UNBIND_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_BIND_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_DISABLE_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_DRTM_PERM = Error{/* contains filtered or unexported fields */} NSERR_MON_DTRM_DEVIATION = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_INVALID_VALUE = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_INVALID_MONITOR = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_NO_SUCHIPADDR = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_SCRIPT_ARG_SIZE = Error{/* contains filtered or unexported fields */} NSERR_METRICTABLE_NOENT = Error{/* contains filtered or unexported fields */} NSERR_METRICTABLE_EXIST = Error{/* contains filtered or unexported fields */} NSERR_DEL_METRICTABLE_PERMANENT = Error{/* contains filtered or unexported fields */} NSERR_MAX_METRIC_BINDING = Error{/* contains filtered or unexported fields */} NSERR_METRIC_NOENT = Error{/* contains filtered or unexported fields */} NSERR_METRIC_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_OID_EXIST = Error{/* contains filtered or unexported fields */} NSERR_SNMP_OID_INVAL = Error{/* contains filtered or unexported fields */} NSERR_METRICTABLE_RDONLY = Error{/* contains filtered or unexported fields */} NSERR_THRESHOLD_ZERO = Error{/* contains filtered or unexported fields */} NSERR_LDAP_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_MYSQL_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_POP3_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_NNTP_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_FTPEXTENDED_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_SNMP_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_CITRIX_XML_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_CITRIX_WEB_INTERFACE = Error{/* contains filtered or unexported fields */} NSERR_LDNS_MON_CANT_DISABLE = Error{/* contains filtered or unexported fields */} NSERR_RES_RETRY_ON_IP_SVR = Error{/* contains filtered or unexported fields */} NSERR_IP_ON_DBS_SVR = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_FAILURERETRIES = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_IP = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_SUBNET = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_STATIC = Error{/* contains filtered or unexported fields */} NSERR_TOSID_NOT_SET = Error{/* contains filtered or unexported fields */} NSERR_FAILURERETRIES_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SUCCESSRETRIES_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SETVS_INVAL_MYSQLPARAMS = Error{/* contains filtered or unexported fields */} NSERR_SETVS_INVAL_PROTOCOL_PARAMS = Error{/* contains filtered or unexported fields */} NSERR_SETVS_INVAL_PROTOCOLS_PARAMS = Error{/* contains filtered or unexported fields */} NSERR_DDC_VALIDATE_CRED_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_CITRIX_WI_EXTENDED_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_SETVS_INVAL_MSSQLPARAMS = Error{/* contains filtered or unexported fields */} NSERR_DRTM_MON_BOUNDED_SVC = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_RESP_TO_THRESH = Error{/* contains filtered or unexported fields */} NSERR_PASSIVE_ON_LOAD_ONLY = Error{/* contains filtered or unexported fields */} NSERR_SETVS_INVAL_ORACLEPARAMS = Error{/* contains filtered or unexported fields */} NSERR_RADIUS_ACCOUNTING_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_SCRIPT_ARG_CNT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_DBSLB_BIND = Error{/* contains filtered or unexported fields */} NSERR_USER_NONETPROF = Error{/* contains filtered or unexported fields */} NSERR_MONITOR_NO_SSLPROFILE_BOUND = Error{/* contains filtered or unexported fields */} NSERR_DIAMETER_MONITOR_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_SVCPORTTYPE = Error{/* contains filtered or unexported fields */} NSERR_VIP_IN_GROUP = Error{/* contains filtered or unexported fields */} NSERR_UNSUPPORTED_BKP = Error{/* contains filtered or unexported fields */} NSERR_NONHTTPSSL_VIPINGRP = Error{/* contains filtered or unexported fields */} NSERR_NONHTTP_VIPINGRP = Error{/* contains filtered or unexported fields */} NSERR_USE_PROPER_RM_CMD = Error{/* contains filtered or unexported fields */} NSERR_LBMETHOD_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_PERSISTENCE_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_VSERVER_PARAMETERS = Error{/* contains filtered or unexported fields */} NSERR_SERVICE_PARAMETERS = Error{/* contains filtered or unexported fields */} NSERR_LBVIP_DELETE = Error{/* contains filtered or unexported fields */} NSERR_CACHEPOLICY_RESPACTION_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHELICENSE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_LBVIP_MULTIROUTES = Error{/* contains filtered or unexported fields */} NSERR_LBMAC_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHESTATS_OBJ_NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_CACHEPOLICY_NOTACTIVE = Error{/* contains filtered or unexported fields */} NSERR_CACHE_BUILTINS_NOT_SOURCED = Error{/* contains filtered or unexported fields */} NSERR_CACHEPOLICY_PRIORITY_INVAL = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_DEFAULT_ONLY = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_DEFAULT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_INVALID_GATEWAY = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_MAX = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_IPV6_INVALID_ADDR = Error{/* contains filtered or unexported fields */} NSERR_LBVIP_IPV6TOV4 = Error{/* contains filtered or unexported fields */} NSERR_IPV6_NSIPTOVIP = Error{/* contains filtered or unexported fields */} NSERR_IPV6_VIPTONSIP = Error{/* contains filtered or unexported fields */} NSERR_IPV6_SCOPE = Error{/* contains filtered or unexported fields */} NSERR_LBVIP_IPV4TOV6 = Error{/* contains filtered or unexported fields */} NSERR_IPV6_LINKLOCALTOVIP = Error{/* contains filtered or unexported fields */} NSERR_IPV6_MAPIPONNSIP = Error{/* contains filtered or unexported fields */} NSERR_SECUREIPPORTADDRINUSE = Error{/* contains filtered or unexported fields */} NSERR_IPV6_INVALID_PREFIX = Error{/* contains filtered or unexported fields */} NSERR_ND6_LINKLOCAL_VLAN = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IPV6_PREFIXLFT = Error{/* contains filtered or unexported fields */} NSERR_IPV6_ND_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_ND6_VLAN_INTF = Error{/* contains filtered or unexported fields */} NSERR_PERSIST_TIMEOUT_TO_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_LB_GROUP_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_LB_VSERVER_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_INVALID_LINKLOCAL_GATEWAY_VLAN = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_NO_GWORIF = Error{/* contains filtered or unexported fields */} NSERR_ROUTE6_VLAN_MONITOR = Error{/* contains filtered or unexported fields */} NSERR_LBMETHOD_LEASTREQ_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_IPV6_MULTIPLE_LLIP = Error{/* contains filtered or unexported fields */} NSERR_IPV6_TOOMANY_PREFIXES = Error{/* contains filtered or unexported fields */} NSERR_RAPREFIX_BOUNDTOVLAN = Error{/* contains filtered or unexported fields */} NSERR_LB_VSERVER_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_VSERVER_BOUND_TO_NG = Error{/* contains filtered or unexported fields */} NSERR_LRMINTHROUGHPUT_ONLACPONLY = Error{/* contains filtered or unexported fields */} NSERR_CACHE_POLICY_CONTENTGRPMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_NONHTTPNOSQL_VS = Error{/* contains filtered or unexported fields */} NSERR_SMPP_CUSTOM_SVRID_LEN_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SMPP_CUSTOM_SVRID_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_SMPP_CUSTOM_SVRID_EXIST = Error{/* contains filtered or unexported fields */} NSERR_SIP_DUPLICATE_SRC_PORT = Error{/* contains filtered or unexported fields */} NSERR_SIP_DUPLICATE_DST_PORT = Error{/* contains filtered or unexported fields */} NSERR_IP_ADDR_ICMP_DIS_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_IP_ADDR_ND6_DIS_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_IP_ADDR_STATE_DIS_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_ND6_LOOP_LL_NOT_ALLOW = Error{/* contains filtered or unexported fields */} NSERR_PERSISTENCE_NOT_SUPPORTED_ON_GROUP = Error{/* contains filtered or unexported fields */} NSERR_ARGS_AAA_OTP = Error{/* contains filtered or unexported fields */} NSERR_ARGS_AAA_SSHPUBKEY = Error{/* contains filtered or unexported fields */} NSERR_CLOUD_CRED = Error{/* contains filtered or unexported fields */} NSERR_CLOUD_NSCRED = Error{/* contains filtered or unexported fields */} NSERR_SECTYPE_PLAINTEXT = Error{/* contains filtered or unexported fields */} NSERR_ARGS_AAA_HASH_ATTRIB = Error{/* contains filtered or unexported fields */} NSERR_CLOUD_DNS = Error{/* contains filtered or unexported fields */} NSERR_CLOUD_FSERR = Error{/* contains filtered or unexported fields */} NSERR_REDIRECTION_INVALID = Error{/* contains filtered or unexported fields */} NSERR_ACL_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ACL_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ACLPIP_WOSRCDST = Error{/* contains filtered or unexported fields */} NSERR_ACL_SAMEIP_PIP = Error{/* contains filtered or unexported fields */} NSERR_ACL_INVAL_PEERIP = Error{/* contains filtered or unexported fields */} NSERR_ACL_IPPIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_XACLDELERROR = Error{/* contains filtered or unexported fields */} NSERR_XACLADDERROR = Error{/* contains filtered or unexported fields */} NSERR_XACL_PRIORITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_XACL_ICMP_REQD = Error{/* contains filtered or unexported fields */} NSERR_NOLOOPBACK = Error{/* contains filtered or unexported fields */} NSERR_INVICMPTYPE = Error{/* contains filtered or unexported fields */} NSERR_INVICMPCODE = Error{/* contains filtered or unexported fields */} NSERR_XACLRNATDEL = Error{/* contains filtered or unexported fields */} NSERR_XACLMODCFGINFO = Error{/* contains filtered or unexported fields */} NSERR_XACLFWDSESSIONDEL = Error{/* contains filtered or unexported fields */} NSERR_ACL6_IPPIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ACL6_DELERROR = Error{/* contains filtered or unexported fields */} NSERR_ACL6_ADDERROR = Error{/* contains filtered or unexported fields */} NSERR_ACL6_PRIORITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ACL6_ICMP_REQD = Error{/* contains filtered or unexported fields */} NSERR_ACL6_UNSPECADDR = Error{/* contains filtered or unexported fields */} NSERR_ACL6_MODCFGINFO = Error{/* contains filtered or unexported fields */} NSERR_ACL6_PREFIXLEN = Error{/* contains filtered or unexported fields */} NSERR_ACL6_RNAT_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_ACL6RNAT_DELERROR = Error{/* contains filtered or unexported fields */} NSERR_RNAT6_INVALID_REDPORT = Error{/* contains filtered or unexported fields */} NSERR_ACL6_RNAT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NET_RNAT6_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_RNAT_VIP_PORT_ALLOC_FAIL = Error{/* contains filtered or unexported fields */} NSERR_ACL6_RNAT_NAT64_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_ACL_SRCMAC_MASK_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_ACL_INVALID_NAME = Error{/* contains filtered or unexported fields */} NSERR_ACL_SRCMAC_MASK_PAIR = Error{/* contains filtered or unexported fields */} NSERR_ADTCP_PROFILE_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_ADTCP_PROFILE_INVALID = Error{/* contains filtered or unexported fields */} NSERR_ADTCP_CQARULE_NAME_INUSE = Error{/* contains filtered or unexported fields */} NSERR_APPFLOW_INVALIDPORT = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_COLLECTOR = Error{/* contains filtered or unexported fields */} NSERR_APPFLOW_METRICS_ACTION = Error{/* contains filtered or unexported fields */} NSERR_APPFLOW_NONZERO_REFCOUNT = Error{/* contains filtered or unexported fields */} NSERR_APPFLOW_COLLECTOR_NAME_INUSE = Error{/* contains filtered or unexported fields */} NSERR_APPFLOW_ACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_APPFLOW_NETPROF_REQD = Error{/* contains filtered or unexported fields */} NSERR_COLLECTOR_TRANSPORT_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SAME_TYPE_PROFILE_BOUND = Error{/* contains filtered or unexported fields */} NSERR_COLLECTOR_LOGSTREAM = Error{/* contains filtered or unexported fields */} NSERR_HTTP_STREAM = Error{/* contains filtered or unexported fields */} NSERR_PROFILE_TYPE_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_ENABLE_IPFIX_LOGGING = Error{/* contains filtered or unexported fields */} NSERR_BOUNDTO_ANALYTICS = Error{/* contains filtered or unexported fields */} NSERR_HTTP_SVC_ONLY = Error{/* contains filtered or unexported fields */} NSERR_REST_COL_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_PROFILE_TYPE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_INVALID_APPFLOW_TRANSPORT = Error{/* contains filtered or unexported fields */} NSERR_COLLECTOR_DUPLICATES = Error{/* contains filtered or unexported fields */} NSERR_MULTIPLE_EVENTS_AUDITS_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_AS_NOSTARTURL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_STARTURL = Error{/* contains filtered or unexported fields */} NSERR_AS_NODENYURL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_DENYURL = Error{/* contains filtered or unexported fields */} NSERR_AS_NOCOOKIECONSISTENCY = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_COOKIECONSISTENCY = Error{/* contains filtered or unexported fields */} NSERR_AS_NOFIELDCONSISTENCY = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_FIELDCONSISTENCY = Error{/* contains filtered or unexported fields */} NSERR_AS_NOXSS = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XSS = Error{/* contains filtered or unexported fields */} NSERR_AS_NOSQL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_SQL = Error{/* contains filtered or unexported fields */} NSERR_AS_NOFIELDFORMAT = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_FIELDFORMAT = Error{/* contains filtered or unexported fields */} NSERR_AS_NOOBJECTEXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_OBJECTEXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_NOFIELDTYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_NOT_SUPPORTED_VS = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_STARTURL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_DENYURL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_COOKIECONSISTENCY = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_FIELDCONSISTENCY = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_XSS = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_SQL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_FIELDFORMAT = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_OBJECTEXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_BUFFEROVERFLOW = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_CCARD = Error{/* contains filtered or unexported fields */} NSERR_AS_FIELDFORMAT_MIN_GT_MAX = Error{/* contains filtered or unexported fields */} NSERR_AS_FIELDTYPE_BAD_NAME_LEN = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_COMMENT_LEN = Error{/* contains filtered or unexported fields */} NSERR_AS_FIELDTYPE_BAD_REGEX_LEN = Error{/* contains filtered or unexported fields */} NSERR_AS_SECURITY_CHECK_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_AS_FIELDTYPE_BUILTIN = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_CONTENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_DEFAULT_CHARSET = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_COOKIECONSISTENCY_NAME = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ERRORURL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ENCODING_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ENCODING_FIELDNAME = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ENCODING_COOKIENAME = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ENCODING_OBJECTEXPRESSION_NAME = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ENCODING_EXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ENCODING_REGEX = Error{/* contains filtered or unexported fields */} NSERR_AS_MODIFIED_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_MODIFIED_OBJECTEXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_CFFIELD_BAD_FIELDNAME_LEN = Error{/* contains filtered or unexported fields */} NSERR_AS_CFFIELD_BAD_URL_LEN = Error{/* contains filtered or unexported fields */} NSERR_AS_NOCFFIELD = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_CFF_NAME = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_CFF_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_CFF_DUP = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_XDOS = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XML_DOS_URL = Error{/* contains filtered or unexported fields */} NSERR_XML_URL_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_XDOS_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_XML_DOS_CONF = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_XML_SQLINJECTION = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_XML_XSS = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_XML_WELLFORMEDNESS = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_PROFILE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_MODIFIED_FIELDNAME = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_WSI = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XML_WSI_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_WSI_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_XML_WSI_CONF = Error{/* contains filtered or unexported fields */} NSERR_AS_OBJECTNAME_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_AS_OBJECT_NO_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AS_SERVER_NAME_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_AS_OBJECT_NOT_READABLE = Error{/* contains filtered or unexported fields */} NSERR_AS_NOPROFILE = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_XML_ATTACHMENT = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_MSGVAL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XML_MSGVAL_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_MSGVAL_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_XML_MSGVAL_CONF = Error{/* contains filtered or unexported fields */} NSERR_AS_BIND_XML_MSGVAL_CONF = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_OBJECT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_OPTION = Error{/* contains filtered or unexported fields */} NSERR_AS_REMOVE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_RESOURCE = Error{/* contains filtered or unexported fields */} NSERR_AS_SHOW_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_DEPENDENCY_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_COMPILATION_FAILED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_OBJECT_NAME = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_DOWNLOAD_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_RESOURCE_INUSE = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_MAPPING_DATA = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_HTML = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_XML = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_ALREADY_INPROCESS = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_XML_ERROR_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_XML_WELLFORMEDNESS_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_AS_INDIVIDUAL_IMPORT_LIMIT_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_AS_TOTAL_IMPORT_LIMIT_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_AS_LEARNING_BUSY = Error{/* contains filtered or unexported fields */} NSERR_AS_DEPRECATED_XML_WSI_RULE_R4003 = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XML_ATTACHMENT_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_XML_ATTACHMENT_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_SOAP_FAULT = Error{/* contains filtered or unexported fields */} NSERR_AS_XML_DOS_VALUE_OUT_OF_RANGE = Error{/* contains filtered or unexported fields */} NSERR_AS_XML_MSGVAL_CLI_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_CUSTOM_SETTINGS_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_SESSION_TIMEOUT_LIFETIME_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_AS_CLASSIC_POLICY_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_AS_ADVANCED_POLICY_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_AS_CUSTOM_SETTINGS_NO_INJECTION_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_NOCSRF_TAG = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_CSRF_TAG = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_CSRF_TAG = Error{/* contains filtered or unexported fields */} NSERR_AS_TURNING_TAGGING_OFF_CSRF_TAG_ON = Error{/* contains filtered or unexported fields */} NSERR_AS_TURNING_CSRF_TAG_ON_TAGGING_OFF = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_LIMIT_LESS_THAN_IMPORT_DIR_SIZE = Error{/* contains filtered or unexported fields */} NSERR_AS_UNSUPPORTED_IMPORT_PROTOCOL = Error{/* contains filtered or unexported fields */} NSERR_AS_UNSUPPORTED_EXPORT_PROTOCOL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXPORT_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_LOCAL_FILE = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_REGEX_CUSTOM_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_BUILTIN_INVALID_OP = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_ADV_POLICY_STATE = Error{/* contains filtered or unexported fields */} NSERR_AS_BUILTIN_NAMES_IN_CONF = Error{/* contains filtered or unexported fields */} NSERR_AS_DEFAULT_PROFILE_IS_BYPASS = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LEARN_DENYURL = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_XML_FILE_SIZE = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LEARN_BUFFEROVERFLOW = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LEARN_XML_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LEARN_XML_SQLINJECTION = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_MULTIPLE_HEADER = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LEARN_XML_MSGVAL = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LEARN_XML_SOAP_FAULT = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_INTERNAL_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_NETSVC_CONN_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_VALIDATION_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_CKI_TRANSFORM_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_AS_NOXMLXSS = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XMLXSS = Error{/* contains filtered or unexported fields */} NSERR_AS_NOXMLSQL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_XMLSQL = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_ENDTAG = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_RULEID = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_RULE_VERSION = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_PARSE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MULTIPLE_LOCATIONS = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_STATE = Error{/* contains filtered or unexported fields */} NSERR_AS_CKI_ENCRYPT_METHOD_IS_NONE = Error{/* contains filtered or unexported fields */} NSERR_AS_UPDATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_OBJECT_NOT_USED = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MULTIPLE_URLS = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MULTIPLE_FIELD_NAMES = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_NO_FASTMATCH = Error{/* contains filtered or unexported fields */} NSERR_AS_PE_POLICY_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MULTIPLE_CREDIT_CARD_RULES = Error{/* contains filtered or unexported fields */} NSERR_AS_TURNING_TAGGING_OFF_SESSIONLESS_FFC_ON = Error{/* contains filtered or unexported fields */} NSERR_AS_TURNING_SESSIONLESS_FFC_ON_TAGGING_OFF = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_CREDIT_CARD_PATTERN = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_SAFE_OBJECT_PATTERN = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_INVALID_TAR_ARCHIVE = Error{/* contains filtered or unexported fields */} NSERR_AS_SQLINJECTION_KEYWORD_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_SPLSTRING_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_SQLINJECTION_KEYWORD_LITERAL_EXCEED_MAXLEN = Error{/* contains filtered or unexported fields */} NSERR_AS_SPLSTRING_LITERAL_EXCEED_MAXLEN = Error{/* contains filtered or unexported fields */} NSERR_AS_XSLT_TRANFORM_LATEST = Error{/* contains filtered or unexported fields */} NSERR_AS_XSLT_TRANFORM_USER = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_RESP_BODY_EXPR_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_NOTRUSTEDLEARNINGCLIENT = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_TRUSTEDLEARNINGCLIENT = Error{/* contains filtered or unexported fields */} NSERR_AS_POLICY_ALLOWED_BINDPOINT_NONE = Error{/* contains filtered or unexported fields */} NSERR_AS_XSS_DENIED_PATTERN_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_XSS_DENIED_PATTERN_EXCEED_MAXLEN = Error{/* contains filtered or unexported fields */} NSERR_AS_XSS_ALLOWED_PATTERN_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_XSS_ALLOWED_PATTERN_EXCEED_MAXLEN = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MULTIPLE_SUB_LOCATIONS = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INTERNAL_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_URL_TAG_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_HEADER_NAME_TAG_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_COOKIE_NAME_TAG_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_FIELD_NAME_TAG_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_PATTERN_ADD_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_NON_LITERAL_FASTMATCH = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_NEGATED_LITERAL_FASTMATCH = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MEM_ALLOC_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_TOO_MANY_PATTERNS = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_LITERAL_HEX_PARSE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_PCRE_COMPILE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_INVALID_SIGNATURE_NAME = Error{/* contains filtered or unexported fields */} NSERR_AS_SIGNATURE_MERGE = Error{/* contains filtered or unexported fields */} NSERR_AS_RECORDER_MEM_ALLOC_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_FILE_VERSION = Error{/* contains filtered or unexported fields */} NSERR_AS_AUTO_SIGNATURE_UPDATED_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_CONTENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_LOG_EXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_POLICY_SET_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AS_SIGNATURE_URL_NOT_ACCESSIBLE = Error{/* contains filtered or unexported fields */} NSERR_AS_NODEGROUP_UNBIND_VSERVER_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AS_NODEGROUP_BIND_NODE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AS_BUILT_IN_OBJECT_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIGNATURE_VALIDATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_INFER_CONTENT_TYPE_XML_PAYLOAD = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_PARAMETER = Error{/* contains filtered or unexported fields */} NSERR_AS_LEARNING_DB_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_VALIDATION_SIGNATURE_MAPPING_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_CONTENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_MISSING_MAX_MATCH_LEN = Error{/* contains filtered or unexported fields */} NSERR_AS_NOT_ALLOWED_CONTENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_TOTAL_IMPORT_SIZE_LIMIT_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_AS_MAX_TOTAL_IMPORT_LIMIT_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_DEFAULT_SIGNATURE_NAME = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_OFFSET_GTE_DEPTH = Error{/* contains filtered or unexported fields */} NSERR_AS_SQLWILDCHAR_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_WILDCHAR_LITERAL_EXCEED_MAXLEN = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_EXCLAMATION_LITERAL = Error{/* contains filtered or unexported fields */} NSERR_AS_REMOVE_FAILED_RENAME_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_ARCHIVE_PROFILE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_RESTORE_PROFILE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AS_EMPTY_CONTENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_FASTMATCH_BAD_LOCATION = Error{/* contains filtered or unexported fields */} NSERR_AS_SESSIONLESS_FFC_POST_ONLY = Error{/* contains filtered or unexported fields */} NSERR_AS_TURNING_TAGGING_OFF_FFC_ON = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_CREDIT_CARD_NUMBER = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_CREDIT_CARD_NUMBER = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_IMPORTED_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_LEARNING_SQL_ERROR = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_FILE_IS_EMPTY = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_OVERWRITE_OPTION_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_INSPECT_CONTENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_GEO_LOCATION_LOGGING_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_WSDL_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_XMLSCHEMA_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_XMLERRORPAGE_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_SIGNATURE_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_ARCHIVE_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_HTMLERRORPAGE_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_XSS_ALLOWED_TAG_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_XSS_ALLOWED_ATTR_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_SQL_TRANSFORM_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_SRC_NOT_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_AS_SRC_INVALID = Error{/* contains filtered or unexported fields */} NSERR_AS_IMPORT_NOT_DEFAULT_WITH_SHA1 = Error{/* contains filtered or unexported fields */} NSERR_AS_WAR_UPDATE_FOLLOWED_BY_IMPORT = Error{/* contains filtered or unexported fields */} NSERR_AS_CUSTOM_SETTINGS_SQL_MULTIPLE_INJECTION_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_CCARD_FLAGS = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_LOGEXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_AS_RFCPROFILE_BAD_ACTION = Error{/* contains filtered or unexported fields */} NSERR_AS_RFCPROFILE = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_MALFORMED_REQ_ACTION = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_RULE_YEAR = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_CPU_USAGE = Error{/* contains filtered or unexported fields */} NSERR_AS_SIG_INVALID_SEVERITY = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_JSON_XSS = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_JSON_XSS = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_JSON_SQL = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_JSON_SQL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_JSON_DOS = Error{/* contains filtered or unexported fields */} NSERR_AS_EXIST_JSON_DOS_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_JSON_URL_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_JSON_DOS_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_JSON = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_JSON_SQL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_JSON_XSS = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_SUCH_JSONERRORPAGE_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_HTML_JSON = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_HTML_XML = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_XML_JSON = Error{/* contains filtered or unexported fields */} NSERR_AS_PROFILE_CHANGE_HTML_XML_JSON = Error{/* contains filtered or unexported fields */} NSERR_AS_NO_FILEUPLOAD_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_FILEUPLOAD_TYPE = Error{/* contains filtered or unexported fields */} NSERR_AS_DYNAMIC_PROFILING_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_DYNAMIC_PROFILING = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_RESTORE_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_RESTORE_PROFILE_ACTION = Error{/* contains filtered or unexported fields */} NSERR_AS_INVALID_RESTORE_PROFILE_URL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_ACTION_COOKIE_HIJACKING = Error{/* contains filtered or unexported fields */} NSERR_AS_SNORT_CONVERT = Error{/* contains filtered or unexported fields */} NSERR_AS_CMDINJECTION_KEYWORD_INVALID_ATTRIBUTE = Error{/* contains filtered or unexported fields */} NSERR_AS_CMD_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AS_PART_DIR_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_AS_FAKEACCOUNT = Error{/* contains filtered or unexported fields */} NSERR_AS_CFFIELD = Error{/* contains filtered or unexported fields */} NSERR_AS_BLOCKKEYWORD = Error{/* contains filtered or unexported fields */} NSERR_AS_JSON_BLOCKKEYWORD = Error{/* contains filtered or unexported fields */} NSERR_AS_BYPASS_LIST = Error{/* contains filtered or unexported fields */} NSERR_AS_DENY_LIST = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_CONFINVALID = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_CREATEDIR = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_MISSING = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_CREATETAR = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_CONFMISSING = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_FILEMISSING = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_INVALIDFILE = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_EXTRACTTAR = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_REMOVE = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_MAXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_NOTRUNNING = Error{/* contains filtered or unexported fields */} NSERR_PERM = Error{/* contains filtered or unexported fields */} NSERR_NOENT = Error{/* contains filtered or unexported fields */} NSERR_SRCH = Error{/* contains filtered or unexported fields */} NSERR_INTR = Error{/* contains filtered or unexported fields */} NSERR_IO = Error{/* contains filtered or unexported fields */} NSERR_NXIO = Error{/* contains filtered or unexported fields */} NSERR_2BIG = Error{/* contains filtered or unexported fields */} NSERR_NOEXEC = Error{/* contains filtered or unexported fields */} NSERR_BADF = Error{/* contains filtered or unexported fields */} NSERR_CHILD = Error{/* contains filtered or unexported fields */} NSERR_DEADLK = Error{/* contains filtered or unexported fields */} NSERR_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_ACCES = Error{/* contains filtered or unexported fields */} NSERR_FAULT = Error{/* contains filtered or unexported fields */} NSERR_NOTBLK = Error{/* contains filtered or unexported fields */} NSERR_BUSY = Error{/* contains filtered or unexported fields */} NSERR_EXIST = Error{/* contains filtered or unexported fields */} NSERR_XDEV = Error{/* contains filtered or unexported fields */} NSERR_NODEV = Error{/* contains filtered or unexported fields */} NSERR_NOTDIR = Error{/* contains filtered or unexported fields */} NSERR_ISDIR = Error{/* contains filtered or unexported fields */} NSERR_INVAL = Error{/* contains filtered or unexported fields */} NSERR_NFILE = Error{/* contains filtered or unexported fields */} NSERR_MFILE = Error{/* contains filtered or unexported fields */} NSERR_NOTTY = Error{/* contains filtered or unexported fields */} NSERR_TXTBSY = Error{/* contains filtered or unexported fields */} NSERR_FBIG = Error{/* contains filtered or unexported fields */} NSERR_NOSPACE = Error{/* contains filtered or unexported fields */} NSERR_SPIPE = Error{/* contains filtered or unexported fields */} NSERR_ROFS = Error{/* contains filtered or unexported fields */} NSERR_MLINK = Error{/* contains filtered or unexported fields */} NSERR_PIPE = Error{/* contains filtered or unexported fields */} NSERR_DOM = Error{/* contains filtered or unexported fields */} NSERR_RANGE = Error{/* contains filtered or unexported fields */} NSERR_AGAIN = Error{/* contains filtered or unexported fields */} NSERR_INPROGRESS = Error{/* contains filtered or unexported fields */} NSERR_ALREADY = Error{/* contains filtered or unexported fields */} NSERR_NOTSOCK = Error{/* contains filtered or unexported fields */} NSERR_DESTADDRREQ = Error{/* contains filtered or unexported fields */} NSERR_MSGSIZE = Error{/* contains filtered or unexported fields */} NSERR_PROTOTYPE = Error{/* contains filtered or unexported fields */} NSERR_NOPROTOOPT = Error{/* contains filtered or unexported fields */} NSERR_PROTONOSUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SOCKTNOSUPPORT = Error{/* contains filtered or unexported fields */} NSERR_OPNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_PFNOSUPPORT = Error{/* contains filtered or unexported fields */} NSERR_AFNOSUPPORT = Error{/* contains filtered or unexported fields */} NSERR_ADDRINUSE = Error{/* contains filtered or unexported fields */} NSERR_ADDRNOTAVAIL = Error{/* contains filtered or unexported fields */} NSERR_NETDOWN = Error{/* contains filtered or unexported fields */} NSERR_NETUNREACH = Error{/* contains filtered or unexported fields */} NSERR_NETRESET = Error{/* contains filtered or unexported fields */} NSERR_CONNABORTED = Error{/* contains filtered or unexported fields */} NSERR_CONNRESET = Error{/* contains filtered or unexported fields */} NSERR_NOBUFS = Error{/* contains filtered or unexported fields */} NSERR_ISCONN = Error{/* contains filtered or unexported fields */} NSERR_NOTCONN = Error{/* contains filtered or unexported fields */} NSERR_SHUTDOWN = Error{/* contains filtered or unexported fields */} NSERR_TOOMANYREFS = Error{/* contains filtered or unexported fields */} NSERR_TIMEDOUT = Error{/* contains filtered or unexported fields */} NSERR_CONNREFUSED = Error{/* contains filtered or unexported fields */} NSERR_LOOP = Error{/* contains filtered or unexported fields */} NSERR_NAMETOOLONG = Error{/* contains filtered or unexported fields */} NSERR_HOSTDOWN = Error{/* contains filtered or unexported fields */} NSERR_HOSTUNREACH = Error{/* contains filtered or unexported fields */} NSERR_NOTEMPTY = Error{/* contains filtered or unexported fields */} NSERR_PROCLIM = Error{/* contains filtered or unexported fields */} NSERR_USERS = Error{/* contains filtered or unexported fields */} NSERR_DQUOT = Error{/* contains filtered or unexported fields */} NSERR_STALE = Error{/* contains filtered or unexported fields */} NSERR_REMOTE = Error{/* contains filtered or unexported fields */} NSERR_BADRPC = Error{/* contains filtered or unexported fields */} NSERR_RPCMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_PROGUNAVAIL = Error{/* contains filtered or unexported fields */} NSERR_PROGMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_PROCUNAVAIL = Error{/* contains filtered or unexported fields */} NSERR_NOLCK = Error{/* contains filtered or unexported fields */} NSERR_NOSYS = Error{/* contains filtered or unexported fields */} NSERR_FTYPE = Error{/* contains filtered or unexported fields */} NSERR_AUTH = Error{/* contains filtered or unexported fields */} NSERR_NEEDAUTH = Error{/* contains filtered or unexported fields */} NSERR_WOULDBLOCK = Error{/* contains filtered or unexported fields */} NSERR_NOCODE = Error{/* contains filtered or unexported fields */} NSERR_NOTSUSER = Error{/* contains filtered or unexported fields */} NSERR_BIGDATA = Error{/* contains filtered or unexported fields */} NSERR_SMALLDATA = Error{/* contains filtered or unexported fields */} NSERR_NOMORENT = Error{/* contains filtered or unexported fields */} NSERR_NOSERVICE = Error{/* contains filtered or unexported fields */} NSERR_OSERROR = Error{/* contains filtered or unexported fields */} NSERR_NONEXPCMD = Error{/* contains filtered or unexported fields */} NSERR_CMDPROPFAIL = Error{/* contains filtered or unexported fields */} NSERR_TOOMANYNODES = Error{/* contains filtered or unexported fields */} NSERR_SECONDARYFAIL = Error{/* contains filtered or unexported fields */} NSERR_INVALBACKUP = Error{/* contains filtered or unexported fields */} NSERR_NOSERVER = Error{/* contains filtered or unexported fields */} NSERR_LOGINREQD = Error{/* contains filtered or unexported fields */} NSERR_RPCINVAL = Error{/* contains filtered or unexported fields */} NSERR_NOUSER = Error{/* contains filtered or unexported fields */} NSERR_INVALPASSWD = Error{/* contains filtered or unexported fields */} NSERR_LICENSE = Error{/* contains filtered or unexported fields */} NSERR_DEFERRED = Error{/* contains filtered or unexported fields */} NSERR_PROPAUTHFAIL = Error{/* contains filtered or unexported fields */} NSERR_NODELSUSER = Error{/* contains filtered or unexported fields */} NSERR_NOMODSUSER = Error{/* contains filtered or unexported fields */} NSERR_INVALNODEID = Error{/* contains filtered or unexported fields */} NSERR_NOTOPHA = Error{/* contains filtered or unexported fields */} NSERR_NOOPPEERBAD = Error{/* contains filtered or unexported fields */} NSERR_NOOPBAD = Error{/* contains filtered or unexported fields */} NSERR_NOPNOW = Error{/* contains filtered or unexported fields */} NSERR_NOOPPRI = Error{/* contains filtered or unexported fields */} NSERR_NOOPSEC = Error{/* contains filtered or unexported fields */} NSERR_REDIRECT = Error{/* contains filtered or unexported fields */} NSERR_BUFOVERFLOW = Error{/* contains filtered or unexported fields */} NSERR_NOUSERPOLICY = Error{/* contains filtered or unexported fields */} NSERR_NOSYSGROUP = Error{/* contains filtered or unexported fields */} NSERR_NOSYSCMDPOL = Error{/* contains filtered or unexported fields */} NSERR_HAIPV6PT = Error{/* contains filtered or unexported fields */} NSERR_HANSIPV6 = Error{/* contains filtered or unexported fields */} NSERR_NSIPV6ACTIVE = Error{/* contains filtered or unexported fields */} NSERR_RTMON_STANDALONE = Error{/* contains filtered or unexported fields */} NSERR_INTERFACENOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_IPV6FEAT_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_DHCP_PBR_DEPENDENT = Error{/* contains filtered or unexported fields */} NSERR_IPSECPROF_PERM = Error{/* contains filtered or unexported fields */} NSERR_IFPAIR_BOUND = Error{/* contains filtered or unexported fields */} NSERR_IFPAIR_NOTPAIR = Error{/* contains filtered or unexported fields */} NSERR_PBR_SETIPTUNNEL = Error{/* contains filtered or unexported fields */} NSERR_IPRANGENOTALLOWD = Error{/* contains filtered or unexported fields */} NSERR_IVALIDIPRANGE = Error{/* contains filtered or unexported fields */} NSERR_IPRANGEMAXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_IP_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_TOOMANYRULES = Error{/* contains filtered or unexported fields */} NSERR_PASSWD_LEN_MIN_8 = Error{/* contains filtered or unexported fields */} NSERR_SYNC_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_NODE_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_SYNC_PROGRESS = Error{/* contains filtered or unexported fields */} NSERR_ADNS_PERM = Error{/* contains filtered or unexported fields */} NSERR_NOINC_IPSAMESUBNET = Error{/* contains filtered or unexported fields */} NSERR_INVALID_PEERIP = Error{/* contains filtered or unexported fields */} NSERR_REDIRECT307 = Error{/* contains filtered or unexported fields */} NSERR_INVALHOSTNAME = Error{/* contains filtered or unexported fields */} NSERR_REWRITE_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_IPCHG_DENY = Error{/* contains filtered or unexported fields */} NSERR_IPCHG_GSLB = Error{/* contains filtered or unexported fields */} NSERR_GSLB_IPCHG = Error{/* contains filtered or unexported fields */} NSERR_NOAUDITSRVC = Error{/* contains filtered or unexported fields */} NSERR_LACPKEY_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_CHANNEL_INUSEBYLACP = Error{/* contains filtered or unexported fields */} NSERR_LACPENABLED = Error{/* contains filtered or unexported fields */} NSERR_IFACEMANUALLYBOUND = Error{/* contains filtered or unexported fields */} NSERR_INTRECINUSE = Error{/* contains filtered or unexported fields */} NSERR_PUBIPPORT_VIP_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_IPPORT_VIP_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NO_BACKUP_VIP = Error{/* contains filtered or unexported fields */} NSERR_REQ_SET_ARGS = Error{/* contains filtered or unexported fields */} NSERR_SVCGRP_MEMBER_NAMECONFLICT = Error{/* contains filtered or unexported fields */} NSERR_SERVER_NAME_EXIST = Error{/* contains filtered or unexported fields */} NSERR_MAX_SERVICE_BINDING_ON_VSERVER = Error{/* contains filtered or unexported fields */} NSERR_MAX_SVC_ENTITY_BINDING_ON_SVCGROUP = Error{/* contains filtered or unexported fields */} NSERR_FSMALL = Error{/* contains filtered or unexported fields */} NSERR_INTOFLOW = Error{/* contains filtered or unexported fields */} NSERR_ASYNC_BLOCKED = Error{/* contains filtered or unexported fields */} NSERR_SACL_CLEARPENDING = Error{/* contains filtered or unexported fields */} NSERR_SACL_NAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SACL_SUPERSET_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SACL_SUBSET_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NOINC_ROUTEMONITOR = Error{/* contains filtered or unexported fields */} NSERR_SESSION_EXPIRED = Error{/* contains filtered or unexported fields */} NSERR_SESSION_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_CFE_CONN_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_CFE_KILLSELF = Error{/* contains filtered or unexported fields */} NSERR_CFE_INCOMPLETESESSION = Error{/* contains filtered or unexported fields */} NSERR_ACL_ALREADYINSTATE = Error{/* contains filtered or unexported fields */} NSERR_CFE_SESSION_NOEXIST = Error{/* contains filtered or unexported fields */} NSERR_SYSGROUP_USER_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SYSGROUP_POLICY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SLEEP = Error{/* contains filtered or unexported fields */} NSERR_PPEDIE = Error{/* contains filtered or unexported fields */} NSERR_NOCONN_CMDPROPFAIL = Error{/* contains filtered or unexported fields */} NSERR_TIMEOUT_SECONDARY = Error{/* contains filtered or unexported fields */} NSERR_RPC_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NOENT_VSERVER = Error{/* contains filtered or unexported fields */} NSERR_NOENT_SVC = Error{/* contains filtered or unexported fields */} NSERR_NOENT_SVC_SVCGRP = Error{/* contains filtered or unexported fields */} NSERR_HA_NOV4_NETMASK = Error{/* contains filtered or unexported fields */} NSERR_MAX_VSEVRVER_BINDINGS_TO_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_SACL6_CLEARPENDING = Error{/* contains filtered or unexported fields */} NSERR_SACL6_NAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SACL6_SUPERSET_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SACL6_SUBSET_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NO_BACKUP_VIP_BOUND = Error{/* contains filtered or unexported fields */} NSERR_SESSION_EXPIRED_REDIRECT = Error{/* contains filtered or unexported fields */} NSERR_NOENT_VLAN = Error{/* contains filtered or unexported fields */} NSERR_MAX_SVC_ENTITY = Error{/* contains filtered or unexported fields */} NSERR_CL_EXIST = Error{/* contains filtered or unexported fields */} NSERR_OWNERNODE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_OWNERNODE_NOT_SPECIFIED = Error{/* contains filtered or unexported fields */} NSERR_NOT_SUPPINCLUSTER = Error{/* contains filtered or unexported fields */} NSERR_VSERVER_TYPE_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_ITER_END = Error{/* contains filtered or unexported fields */} NSERR_CONNECT_TO_CLUSTER_IP = Error{/* contains filtered or unexported fields */} NSERR_LB_AUDIT_IP_DENY = Error{/* contains filtered or unexported fields */} NSERR_IC_OFF_DISABLING_FEO = Error{/* contains filtered or unexported fields */} NSERR_SYNC_VLAN_EXIST = Error{/* contains filtered or unexported fields */} NSERR_CMDPROP_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_NOTHEME = Error{/* contains filtered or unexported fields */} NSERR_THEMEEXISTS = Error{/* contains filtered or unexported fields */} NSERR_THEME_INUSE = Error{/* contains filtered or unexported fields */} NSERR_NO_CONTENT = Error{/* contains filtered or unexported fields */} NSERR_ARP_IFACE_NODE_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_HA_BOTH_PRIMARY = Error{/* contains filtered or unexported fields */} NSERR_PROP_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_HA_FAILOVER_PERM = Error{/* contains filtered or unexported fields */} NSERR_NOEULA = Error{/* contains filtered or unexported fields */} NSERR_EULAEXISTS = Error{/* contains filtered or unexported fields */} NSERR_EULA_INUSE = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_TCP_CONFIG_ERR = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LOOPBACK_OR_LOCAL_IP_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_MAX_CONC_SAVECONFIG = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LBMETHOD_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_PERSISTENCE_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_HASHLBMETHODS_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LEASTCONN_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SVC_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_NOLBVIP = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LBPROTOCOL_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_TRANSPORT_UNSET_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_TRANSPORT_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LBVSRVR_INUSE_BY_SYSACT = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LBVSRVR_RENAME_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_INVALID_SERVIP = Error{/* contains filtered or unexported fields */} NSERR_AUDITLOG_PORT_SET_UNSET_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_TCPPROFILE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_CANNOT_SET_LBVSNAME = Error{/* contains filtered or unexported fields */} NSERR_MPTCP_CANNOT_SET_MPTCPADVERTISE = Error{/* contains filtered or unexported fields */} NSERR_PORTALBINDING_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_PORTALTHEME_NAME_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AUDIT_VERSION_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_RADIUS_LISTENER_PERM = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_NETPROFILE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AUDITLOG_DMNRESOLVRETRY = Error{/* contains filtered or unexported fields */} NSERR_AUDITLOG_ARGUMENT_MISSING = Error{/* contains filtered or unexported fields */} NSERR_AUDITLOG_DBS_SERVER_EXIST = Error{/* contains filtered or unexported fields */} NSERR_ICAMODE_STATUS_NOT_OK = Error{/* contains filtered or unexported fields */} NSERR_SYSLOG_LBVSERVER_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_INSTALL_FAILED = Error{/* contains filtered or unexported fields */} NSERR_OSPFAREA_UNSET = Error{/* contains filtered or unexported fields */} NSERR_PREQ_HOSTROUTE = Error{/* contains filtered or unexported fields */} NSERR_PREQ_NETWORKROUTE = Error{/* contains filtered or unexported fields */} NSERR_AUDITLOG_SVC_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_AUDITSINFO_EXISTS_WITH_SAME_DOMAINNAME = Error{/* contains filtered or unexported fields */} NSERR_NO_PERM_ON_PLATFORM = Error{/* contains filtered or unexported fields */} NSERR_NOTDBS_SERVER_AUTOSCALE_SGRP = Error{/* contains filtered or unexported fields */} NSERR_AUTO_SCALE_CLOUD_API_TYPE_ONLY = Error{/* contains filtered or unexported fields */} NSERR_AUTO_DISABLE_GRACEFUL_NOT_SET = Error{/* contains filtered or unexported fields */} NSERR_AUTO_DISABLE_GRACEFUL_NOT_SUPPORTED_ON_AZURE = Error{/* contains filtered or unexported fields */} NSERR_MAX_MONITORS_BINDINGS_TO_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_INSUFFICIENT_IAM_PRIVILEGES = Error{/* contains filtered or unexported fields */} NSERR_LOGIN_NEXTFACTOR = Error{/* contains filtered or unexported fields */} NSERR_SVC_GRP = Error{/* contains filtered or unexported fields */} NSERR_MISSING_POLICY = Error{/* contains filtered or unexported fields */} NSERR_AZURE_MANAGED_IDENTITY_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AUTO_SCALE_DNS_TROFS_DELAY = Error{/* contains filtered or unexported fields */} NSERR_BOT_UPDATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_INVALID_JSON = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_IPREP_INVALID_CATEGORY = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_RATELIMIT_NO_URL = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_RATELIMIT_NO_COOKIE = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_KM_LIMIT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_RATELIMIT_INVALID_CATEGORY = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_WHITELIST_LIMT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_BLACKLIST_LIMT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_RATELIMIT_LIMT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_BOT_SIGNATURE_URL_NOT_ACCESSIBLE = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_CAPTCHA_LIMIT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_BOT_SIGNATURE_AUTO_UPDATE_IPV6_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_BOT_SIGNATURE_AUTO_UPDATE_PARSE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_BOT_SIGNATURE_INVALID_URL = Error{/* contains filtered or unexported fields */} NSERR_BOT_BAD_TRAPURL = Error{/* contains filtered or unexported fields */} NSERR_BOT_DEFAULT_SIGNATURE_FILE_PARSE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_BOT_NEG_TRAP_URL_REGEX = Error{/* contains filtered or unexported fields */} NSERR_BOT_INVALID_DFP_MOBILE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_BOT_UPDATE_SIGNATURE_META_UPDATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_BOT_PROFILE_BINDING_ALREADY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_TRAPURL_LIMIT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_BOT_CFG_MAX_LOGEXPRESSION_LIMT_REACHED = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HEUREXP_RELEXP = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HEUREXP_RELEXPMILI = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_RELEXP_RELEXPMILI = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXP_HEUREXP = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXP_RELEXPMILI = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXPGMT_HERUEXP = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXP_ABSEXPGMT = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXPGMT_RELEXPMILI = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HITPARAMS_HITSLCTR = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_INVALPARAMS_HITSLCTR = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HITPARAMS_INVLSLCTR = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_INVALPARAMS_INVLSLCTR = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HITSLCTR_MATCHCOOKY = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HITSLCTR_INVALREST2HOST = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HITSLCTR_IGNRPARAMVALCASE = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_INVALSLCTR_MATCHCOOKY = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_INVALSLCTR_INVALREST2HOST = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_INVALSLCTR_IGNRPARAMVALCASE = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_POSRELEXP_RELEXP = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_POSRELEXP_RELEXPMILI = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXP_POSRELEXP = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_ABSEXPGMT_POSRELEXP = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_IGNRPARAMVALCASE_HITPARAMS = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_HIT_INVALPARAMS_MATCHCUKY = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_INVALREST2HOST_INVALPARAM = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_PREFETCH_PREFETCHSEC = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_PREFETCH_PREFETCHMILI = Error{/* contains filtered or unexported fields */} NSERR_CACONF_CNFL_PREFETCHMILI_PREFETCHSEC = Error{/* contains filtered or unexported fields */} NSERR_CACONF_ARG_LE_MIN_VAL = Error{/* contains filtered or unexported fields */} NSERR_CACONF_ARG_GE_MAX_VAL = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_NEGMINHIT = Error{/* contains filtered or unexported fields */} NSERR_CACHEHA_OBJPERSIST_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_INVALID_OPERATION = Error{/* contains filtered or unexported fields */} NSERR_CENTRALMGMTSERVER_REGFAILED = Error{/* contains filtered or unexported fields */} NSERR_CENTRALMGMTSERVER_REQARGMISSING = Error{/* contains filtered or unexported fields */} NSERR_NOSUCHIOCTL = Error{/* contains filtered or unexported fields */} NSERR_NOTARGETS = Error{/* contains filtered or unexported fields */} NSERR_CANTRECOVER = Error{/* contains filtered or unexported fields */} NSERR_IGNOREDIOCTL = Error{/* contains filtered or unexported fields */} NSERR_REMOTECLOSE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_TARGET = Error{/* contains filtered or unexported fields */} NSERR_FILE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_COMMENT_DROPPED = Error{/* contains filtered or unexported fields */} NSERR_AGGREQ_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_AGGREAD = Error{/* contains filtered or unexported fields */} NSERR_RPC_CMD_DUP = Error{/* contains filtered or unexported fields */} NSERR_RPC_CMD_NONDUP = Error{/* contains filtered or unexported fields */} NSERR_CFE_PE_COMM = Error{/* contains filtered or unexported fields */} NSERR_AGG_CONFAIL = Error{/* contains filtered or unexported fields */} NSERR_CFE_PE_TIMOUT = Error{/* contains filtered or unexported fields */} NSERR_AGG_INVALIDRESPONSE = Error{/* contains filtered or unexported fields */} NSERR_NONTPSVR = Error{/* contains filtered or unexported fields */} NSERR_AGG_SENDFAIL = Error{/* contains filtered or unexported fields */} NSERR_CFE_ASLEARN_COMM = Error{/* contains filtered or unexported fields */} NSERR_READONLY_SESSION = Error{/* contains filtered or unexported fields */} NSERR_WRONG_PE_STATE = Error{/* contains filtered or unexported fields */} NSERR_CFE_VALIDATION_FAILED = Error{/* contains filtered or unexported fields */} NSERR_XPATH_INTERNAL = Error{/* contains filtered or unexported fields */} NSERR_CFE_CALLHOME_COMM = Error{/* contains filtered or unexported fields */} NSERR_BIND_NOENT = Error{/* contains filtered or unexported fields */} NSERR_PPNETMASK = Error{/* contains filtered or unexported fields */} NSERR_CFE_CLFSYNCD_COMM = Error{/* contains filtered or unexported fields */} NSERR_DB_INTERNAL = Error{/* contains filtered or unexported fields */} NSERR_MIPDEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_VAL_INCONSITENT = Error{/* contains filtered or unexported fields */} NSERR_CALLHOME_LOW_HB_CUSTOM_INTERVAL = Error{/* contains filtered or unexported fields */} NSERR_INVALIDTIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_TCPCONNFAIL = Error{/* contains filtered or unexported fields */} NSERR_LOGINFAIL = Error{/* contains filtered or unexported fields */} NSERR_NOLOGIN = Error{/* contains filtered or unexported fields */} NSERR_AUTHTIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_NOT_PRIMARY = Error{/* contains filtered or unexported fields */} NSERR_REMOTEOP = Error{/* contains filtered or unexported fields */} NSERR_CONNLOST = Error{/* contains filtered or unexported fields */} NSERR_RPCDATAMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_RPCBADREPLY = Error{/* contains filtered or unexported fields */} NSERR_UNABLETOPROMPT = Error{/* contains filtered or unexported fields */} NSERR_LOGIN_CHALLENGED = Error{/* contains filtered or unexported fields */} NSERR_LOGOUT_SAVE = Error{/* contains filtered or unexported fields */} NSERR_CLEAR_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_REBOOT = Error{/* contains filtered or unexported fields */} NSERR_SHUTDOWNNS = Error{/* contains filtered or unexported fields */} NSERR_REBOOT_SAVE = Error{/* contains filtered or unexported fields */} NSERR_USERABORT = Error{/* contains filtered or unexported fields */} NSERR_EOF = Error{/* contains filtered or unexported fields */} NSERR_INTERRUPT = Error{/* contains filtered or unexported fields */} NSERR_INTERNAL = Error{/* contains filtered or unexported fields */} NSERR_NOT_CLIP = Error{/* contains filtered or unexported fields */} NSERR_EULA_NOTACCEPTED = Error{/* contains filtered or unexported fields */} NSERR_FORCE_PWDCHANGE = Error{/* contains filtered or unexported fields */} NSERR_PWD_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_STRMAXLEN_255 = Error{/* contains filtered or unexported fields */} NSERR_STRMAXLEN_32 = Error{/* contains filtered or unexported fields */} NSERR_NOPREFIX_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_INVALIDPOLLVAL = Error{/* contains filtered or unexported fields */} NSERR_SHELL_ACCESS = Error{/* contains filtered or unexported fields */} NSERR_NORESPONSE = Error{/* contains filtered or unexported fields */} NSERR_IOERROR = Error{/* contains filtered or unexported fields */} NSERR_ENV = Error{/* contains filtered or unexported fields */} NSERR_CMDSFAILED = Error{/* contains filtered or unexported fields */} NSERR_ALLCMDSFAILED = Error{/* contains filtered or unexported fields */} NSERR_INTMINVAL_CLT_IDLETIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_INTMINVAL_SRV_IDLETIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_TCP_OPTION_TYPE = Error{/* contains filtered or unexported fields */} NSERR_NSINTERNAL_DEFPSWD_WARN = Error{/* contains filtered or unexported fields */} NSERR_OPNOTALLOW_ONCLIP = Error{/* contains filtered or unexported fields */} NSERR_LICEXPIRED = Error{/* contains filtered or unexported fields */} NSERR_FEATDISABLED = Error{/* contains filtered or unexported fields */} NSERR_LESS_PE = Error{/* contains filtered or unexported fields */} NSERR_MAXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_SET_NOSUPPORT = Error{/* contains filtered or unexported fields */} NSERR_INVALIDVALUE = Error{/* contains filtered or unexported fields */} NSERR_INVALIDNAME = Error{/* contains filtered or unexported fields */} NSERR_INVALIDPASSWORD = Error{/* contains filtered or unexported fields */} NSERR_INVALIDMINPASSWORDLENGTH = Error{/* contains filtered or unexported fields */} NSERR_ENABLINGPASSWORDCOMPLEXITY = Error{/* contains filtered or unexported fields */} NSERR_INVALIDPASSWORDLENGTH = Error{/* contains filtered or unexported fields */} NSERR_CANNOTSETMINPASSWORDLENGTH = Error{/* contains filtered or unexported fields */} NSERR_NOSUCHCMD = Error{/* contains filtered or unexported fields */} NSERR_CMDAMBIGUOUS = Error{/* contains filtered or unexported fields */} NSERR_NOSUCHARG = Error{/* contains filtered or unexported fields */} NSERR_ARGVALMISSING = Error{/* contains filtered or unexported fields */} NSERR_ARGSMUTEX = Error{/* contains filtered or unexported fields */} NSERR_ARGPREREQ = Error{/* contains filtered or unexported fields */} NSERR_ARGSTOOFEW = Error{/* contains filtered or unexported fields */} NSERR_ARGMISSING = Error{/* contains filtered or unexported fields */} NSERR_ARGORDER = Error{/* contains filtered or unexported fields */} NSERR_ARGVALBAD = Error{/* contains filtered or unexported fields */} NSERR_ARGVALSEQ = Error{/* contains filtered or unexported fields */} NSERR_ARGAMBIGUOUS = Error{/* contains filtered or unexported fields */} NSERR_SYNCGSLBCONFIG = Error{/* contains filtered or unexported fields */} NSERR_SYNCGSLBCONFIG_WARN = Error{/* contains filtered or unexported fields */} NSERR_FORCESYNCGSLBCONFIG_WARN = Error{/* contains filtered or unexported fields */} NSERR_ARGVALSNEQ = Error{/* contains filtered or unexported fields */} NSERR_ARGVALAMBIGUOUS = Error{/* contains filtered or unexported fields */} NSERR_STRMAXLEN = Error{/* contains filtered or unexported fields */} NSERR_STRMINLEN = Error{/* contains filtered or unexported fields */} NSERR_INTMAXVAL = Error{/* contains filtered or unexported fields */} NSERR_INTMINVAL = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIP = Error{/* contains filtered or unexported fields */} NSERR_INVALIDNETMASK = Error{/* contains filtered or unexported fields */} NSERR_TOOMANYVALS = Error{/* contains filtered or unexported fields */} NSERR_BADRANGE = Error{/* contains filtered or unexported fields */} NSERR_EXPRQUOTES = Error{/* contains filtered or unexported fields */} NSERR_BADQUOTES = Error{/* contains filtered or unexported fields */} NSERR_INVALIDRANGE = Error{/* contains filtered or unexported fields */} NSERR_MISMATCHRANGES = Error{/* contains filtered or unexported fields */} NSERR_MULTIRANGES = Error{/* contains filtered or unexported fields */} NSERR_NOMATCHCHAR = Error{/* contains filtered or unexported fields */} NSERR_NEEDREBOOT = Error{/* contains filtered or unexported fields */} NSQ_SAVECONFIG = Error{/* contains filtered or unexported fields */} NSERR_NOTSAVED = Error{/* contains filtered or unexported fields */} NSERR_CMDEXEC = Error{/* contains filtered or unexported fields */} NSQ_REBOOT = Error{/* contains filtered or unexported fields */} NSERR_NOREBOOT = Error{/* contains filtered or unexported fields */} NSERR_PGMFAILED = Error{/* contains filtered or unexported fields */} NSERR_CTXMODE = Error{/* contains filtered or unexported fields */} NSERR_CMDINCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_CMDOUTOFCTX = Error{/* contains filtered or unexported fields */} NSERR_CONFIGSAVED = Error{/* contains filtered or unexported fields */} NSERR_CONFIGCLEARED = Error{/* contains filtered or unexported fields */} NSERR_REBOOTING = Error{/* contains filtered or unexported fields */} NSERR_NOCONFIGSAVE = Error{/* contains filtered or unexported fields */} NSERR_REGEXNOANCHOR = Error{/* contains filtered or unexported fields */} NSERR_REGEXNOMATCH = Error{/* contains filtered or unexported fields */} NSERR_REGEXINVALID = Error{/* contains filtered or unexported fields */} NSERR_REGEXNOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_REGEXNOCMD = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPV6_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPV6_TWO_DOUBECOLON = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPV6_NOPREFIX_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPV6_PREFIX_VALUE = Error{/* contains filtered or unexported fields */} NSERR_TERMNAMEINVALID = Error{/* contains filtered or unexported fields */} NSERR_TERMINVALID = Error{/* contains filtered or unexported fields */} NSERR_FORCEFAILOVER = Error{/* contains filtered or unexported fields */} NSERR_FORCEFAIL_HEALTH_WARN = Error{/* contains filtered or unexported fields */} NSERR_HELLOTIME_MULTIPLE = Error{/* contains filtered or unexported fields */} NSERR_FORCESYNCSAVE = Error{/* contains filtered or unexported fields */} NSERR_ERROUTFILENAME = Error{/* contains filtered or unexported fields */} NSERR_RNATIPDEL = Error{/* contains filtered or unexported fields */} NSERR_INVALIDALIAS = Error{/* contains filtered or unexported fields */} NSERR_NOSUCHALIAS = Error{/* contains filtered or unexported fields */} NSERR_ALIASEXISTS = Error{/* contains filtered or unexported fields */} NSERR_NOSUCHFILE = Error{/* contains filtered or unexported fields */} NSERR_NOTREGFILE = Error{/* contains filtered or unexported fields */} NSERR_DEPRCMD = Error{/* contains filtered or unexported fields */} NSERR_DEPRARG = Error{/* contains filtered or unexported fields */} NSERR_NOTLOGFILE = Error{/* contains filtered or unexported fields */} NSERR_NOPLENFORIPV6RANGE = Error{/* contains filtered or unexported fields */} NSERR_INVALIDINT = Error{/* contains filtered or unexported fields */} NSERR_CMDAMBIGUOUS_USECOMPLETIONSOPTIONS = Error{/* contains filtered or unexported fields */} NSERR_METADATA_INVAL_ENTITYTYPE = Error{/* contains filtered or unexported fields */} NSERR_SETNOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_SETARGNOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_INVALID_DS = Error{/* contains filtered or unexported fields */} NSERR_NOSUCHCOUNTER = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPMASK = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPPAT = Error{/* contains filtered or unexported fields */} NSERR_BADRC = Error{/* contains filtered or unexported fields */} NSERR_INVALIDRANGETYPE = Error{/* contains filtered or unexported fields */} NSERR_INVALIDRANGEVAL = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIPV6_PREFIX_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_ENTITYDELETE_FAIL = Error{/* contains filtered or unexported fields */} NSERR_DONE = Error{/* contains filtered or unexported fields */} NSERR_RNATIPDEL2 = Error{/* contains filtered or unexported fields */} NSERR_INCOMPATIBLEIP = Error{/* contains filtered or unexported fields */} NSERR_TRANSCR_IP = Error{/* contains filtered or unexported fields */} NSERR_PASSWORD_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_LEADING_TRAILING_SPACES = Error{/* contains filtered or unexported fields */} NSERR_SAVENOTDONE = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIP_VSVRTYPE = Error{/* contains filtered or unexported fields */} NSERR_HELLOTIME_DEADINTERVAL_COMBINATION = Error{/* contains filtered or unexported fields */} NSERR_MAXSESSION = Error{/* contains filtered or unexported fields */} NSERR_NEEDREPLICATE = Error{/* contains filtered or unexported fields */} NSERR_HDOSP_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_PQ_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_IOH_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_NOT_PRIVATE_EXPORT = Error{/* contains filtered or unexported fields */} NSERR_OBJECT_IN_USE = Error{/* contains filtered or unexported fields */} NSERR_CERBUNDLE_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_CERTBUNDLE_CANNOT_OPEN_PID = Error{/* contains filtered or unexported fields */} NSERR_FAILED_TO_APPLY = Error{/* contains filtered or unexported fields */} NSERR_AWS_UNSUP = Error{/* contains filtered or unexported fields */} NSERR_POOLED_VPX = Error{/* contains filtered or unexported fields */} NSERR_GCP_UNSUPPORTED_MTU = Error{/* contains filtered or unexported fields */} NSERR_AWS_UNSUPPORTED_MTU = Error{/* contains filtered or unexported fields */} NSERR_INVALID_QUERYTYPE_FOR_IPV6 = Error{/* contains filtered or unexported fields */} NSERR_INVALID_CLIENTIP_TCPOPTION = Error{/* contains filtered or unexported fields */} NSERR_ESX_UNSUPPORTED_MTU = Error{/* contains filtered or unexported fields */} NSERR_DYNAMIC_MESSAGE = Error{/* contains filtered or unexported fields */} NSERR_UUID_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_CUSTID_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_FQDN_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_CLNOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_TOOMANYCLS = Error{/* contains filtered or unexported fields */} NSERR_RMLOCALNODE = Error{/* contains filtered or unexported fields */} NSERR_BKPLANEENABLED = Error{/* contains filtered or unexported fields */} NSERR_LOCALNODE_NOTCONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_HACL_CANNOT_COEXIST = Error{/* contains filtered or unexported fields */} NSERR_CLACPKEYNOTCRT = Error{/* contains filtered or unexported fields */} NSERR_CLNODE_EXIST = Error{/* contains filtered or unexported fields */} NSERR_BKPLANEDISABLED = Error{/* contains filtered or unexported fields */} NSERR_CLAGTHROUGHPUT = Error{/* contains filtered or unexported fields */} NSERR_LICMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_CLIP_INVALIDNETMASK = Error{/* contains filtered or unexported fields */} NSERR_BKPLANELACPDELETE = Error{/* contains filtered or unexported fields */} NSERR_LINKSETMEMBER = Error{/* contains filtered or unexported fields */} NSERR_CONFIG_PARAM = Error{/* contains filtered or unexported fields */} NSERR_CLIP_INVALIDPREFIXLEN = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_L2NOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_LINKSET_ONEPERNODE = Error{/* contains filtered or unexported fields */} NSERR_LINKSET_NOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_LINKSET_IDINVALID = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_NBNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_VPNNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_AAANOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_IPSECNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_LINKSET_LAMEMBER = Error{/* contains filtered or unexported fields */} NSERR_CLIP_LOCALNODE_NOTCONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_CLVERSIONMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_CMNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_ARP_CLAG_OWNERNODE_MANDATORY = Error{/* contains filtered or unexported fields */} NSERR_ARP_OWNERNODE_MANDATORY = Error{/* contains filtered or unexported fields */} NSERR_NOOPCCO = Error{/* contains filtered or unexported fields */} NSERR_SPOTTED_CONFIG_PRESENT = Error{/* contains filtered or unexported fields */} NSERR_NOT_CLUSTER_IP = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_NNRES = Error{/* contains filtered or unexported fields */} NSERR_LAST_CLUSTER_IP_REMOVAL = Error{/* contains filtered or unexported fields */} NSERR_CONFIG_PARAM_INVALID = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_INVALIDNODE = Error{/* contains filtered or unexported fields */} NSERR_LRONCLACPONLY = Error{/* contains filtered or unexported fields */} NSERR_MULTIBIND_NOT_SUPPINCLUSTER = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_FISNAMES_DUPNOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_CLAG_NOLOCALINTF = Error{/* contains filtered or unexported fields */} NSERR_FIS_MAX_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_BOUND_TO_FIS = Error{/* contains filtered or unexported fields */} NSERR_CHANNEL_OPEN_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NOT_BOUND_TO_FIS = Error{/* contains filtered or unexported fields */} NSERR_CLUSTER_INC_NOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_CONFIG_NG_CHANGED = Error{/* contains filtered or unexported fields */} NSERR_STRIPED_IP_EXIST = Error{/* contains filtered or unexported fields */} NSERR_WRONG_NG = Error{/* contains filtered or unexported fields */} NSERR_NG_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_NG_CHANGE = Error{/* contains filtered or unexported fields */} NSERR_NG_INVALID = Error{/* contains filtered or unexported fields */} NSERR_NOT_LAST_NODE = Error{/* contains filtered or unexported fields */} NSERR_MULTI_NG_BINDING_EXIST = Error{/* contains filtered or unexported fields */} NSERR_INVALID_NC_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_FIPSCL_CANNOT_COEXIST = Error{/* contains filtered or unexported fields */} NSERR_LS_CLAG_INTF_SAME_NG = Error{/* contains filtered or unexported fields */} NSERR_NODE_BINDING_INC = Error{/* contains filtered or unexported fields */} NSERR_IP_OWNERDOWN_PARAM = Error{/* contains filtered or unexported fields */} NSERR_INVALID_LS = Error{/* contains filtered or unexported fields */} NSERR_IP_ALREADY_OWNED = Error{/* contains filtered or unexported fields */} NSERR_LS_UNABLE_GET_VLAN = Error{/* contains filtered or unexported fields */} NSERR_LS_NOT_BOUND_VLAN = Error{/* contains filtered or unexported fields */} NSERR_CL_UNSUPPORTED_PROTO = Error{/* contains filtered or unexported fields */} NSERR_CL_UNSUPPORTED_IN_NCORE = Error{/* contains filtered or unexported fields */} NSERR_NO_SETTING_PROP = Error{/* contains filtered or unexported fields */} NSERR_OWNERNODE_ALLOWED_ON_CLU = Error{/* contains filtered or unexported fields */} NSERR_CL_NOT_DFLT_NG = Error{/* contains filtered or unexported fields */} NSERR_CL_RECOVERY_IN_PROGRESS = Error{/* contains filtered or unexported fields */} NSERR_CQA_LABEL_3_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_CQA_WRONG_COEF = Error{/* contains filtered or unexported fields */} NSERR_CQA_WRONG_CCL = Error{/* contains filtered or unexported fields */} NSERR_CQA_WRONG_CSQ = Error{/* contains filtered or unexported fields */} NSERR_CQA_LR1_DEPENDENCY = Error{/* contains filtered or unexported fields */} NSERR_CQA_LR2_DEPENDENCY = Error{/* contains filtered or unexported fields */} NSERR_CQA_WRONG_LOG_COEF = Error{/* contains filtered or unexported fields */} NSERR_CQA_LABEL_1_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_CQA_LABEL_2_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_PXY_CACHE_HMG = Error{/* contains filtered or unexported fields */} NSERR_PXY_RM_LAST_MEMT = Error{/* contains filtered or unexported fields */} NSERR_CSW_INS_INVAL_PFX = Error{/* contains filtered or unexported fields */} NSERR_PENG_EXPR_IVAL_NAME = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIG_URL = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIG_PFX = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIG_SFX = Error{/* contains filtered or unexported fields */} NSERR_CSW_INVAL_SFX = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOMETHOD = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOURLTOKENS = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOVERSION = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOHDR = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOCACNTL = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOPRAG = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOQUERY = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOQUAL = Error{/* contains filtered or unexported fields */} NSERR_ACTION_INUSE = Error{/* contains filtered or unexported fields */} NSERR_ACTION_HDR_INVAL = Error{/* contains filtered or unexported fields */} NSERR_URLQ_INVAL = Error{/* contains filtered or unexported fields */} NSERR_UNDEF_ACTION = Error{/* contains filtered or unexported fields */} NSERR_CPE_INUSE = Error{/* contains filtered or unexported fields */} NSERR_CPE_REQACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CPE_RSPACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CPE_REQRULE_INVAL = Error{/* contains filtered or unexported fields */} NSERR_ACTION_DEFINVAL = Error{/* contains filtered or unexported fields */} NSERR_ACTION_NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_PXY_INVAL_SERVICETYPE = Error{/* contains filtered or unexported fields */} NSERR_CACHEPOLICY_INUSE = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_INTERNAL = Error{/* contains filtered or unexported fields */} NSERR_CPE_INVAL = Error{/* contains filtered or unexported fields */} NSERR_EXPR_NOLEN = Error{/* contains filtered or unexported fields */} NSERR_DNSWAIT = Error{/* contains filtered or unexported fields */} NSERR_GW_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_CSWDMN_INUSE = Error{/* contains filtered or unexported fields */} NSERR_CSWDMN_PLCY_EXIST = Error{/* contains filtered or unexported fields */} NSERR_ACTION_NOMOD_HDR = Error{/* contains filtered or unexported fields */} NSERR_EXPR_INVAL_OPERATOR = Error{/* contains filtered or unexported fields */} NSERR_EXPR_DEF_REM_INVAL = Error{/* contains filtered or unexported fields */} NSERR_EXPR_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_ACTION_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CSWPOLICY_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CRDPOLICY_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_MAPPOLICY_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_FILTER_NOT_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_CACHEPOLICY_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CACHEPARAM_MEMALLOC_FAILED = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_INUSE = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_EXPCONFLICT = Error{/* contains filtered or unexported fields */} NSERR_CACHEPARAM_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_PARAM_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_QUERY_INVAL = Error{/* contains filtered or unexported fields */} NSERR_ACTION_INVAL = Error{/* contains filtered or unexported fields */} NSERR_EXPR_DEF_SET_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_RESSZ_MIN_GT_MAX = Error{/* contains filtered or unexported fields */} NSERR_SVPN_CERT_CHALLENGE = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_HOST_REQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_HOST_NREQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_DYNGRP_NEXP = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_ONE_GRP_REQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_ONE_ALL_REQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_MATCH_PARAM_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_DYN_RES_CACHE = Error{/* contains filtered or unexported fields */} NSERR_EXPR_INVAL_VALUE = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_PREFETCH_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_PREFETCH_ENABLE = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_CCH_UNKNOWN = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_RELEXP_X10MS = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_PREFETCH_X10MS = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_STATIC_TO_DYNAMIC = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_POLICY_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_PLCY_DEF_REM_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_PREFETCH_REL_NREQ = Error{/* contains filtered or unexported fields */} NSERR_EXPR_SET_INVAL_FLOWTYPE = Error{/* contains filtered or unexported fields */} NSERR_EXPR_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_CPE_INVALID_IDRANGE = Error{/* contains filtered or unexported fields */} NSERR_EXPR_TOO_BIG_EXT = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_MATCHCOOKIE_DYN_REQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_MATCHCOOKIE_NREQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEFWPXY_PRESENT = Error{/* contains filtered or unexported fields */} NSERR_CACHE_PREFETCH_REEVAL_NREQ = Error{/* contains filtered or unexported fields */} NSERR_CACHEFWPXY_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CACHE_PET_FC_NREQ = Error{/* contains filtered or unexported fields */} NSERR_SAVECONFIG_IN_PROGRESS = Error{/* contains filtered or unexported fields */} NSERR_GWSUBNET_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_GW_REQ_SUBNET = Error{/* contains filtered or unexported fields */} NSERR_BAD_CR_ATTRIBS = Error{/* contains filtered or unexported fields */} NSERR_MAC_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_POLICY_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_CACHEABILITY_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_HOST_RT_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_ROUTING_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_CONFIG_NOTSAVED = Error{/* contains filtered or unexported fields */} NSERR_DIS_ROUTING_NSIP = Error{/* contains filtered or unexported fields */} NSERR_NETWORK_RT_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_NR_ENABLE = Error{/* contains filtered or unexported fields */} NSERR_EXPRMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_NO_HOST = Error{/* contains filtered or unexported fields */} NSERR_NO_DFLT = Error{/* contains filtered or unexported fields */} NSERR_DFLTDMN_FIRST = Error{/* contains filtered or unexported fields */} NSERR_PXY_CONF_LOOP = Error{/* contains filtered or unexported fields */} NSERR_PXY_ME_DUP = Error{/* contains filtered or unexported fields */} NSERR_PXY_IVAL_TGT = Error{/* contains filtered or unexported fields */} NSERR_CONNECTED = Error{/* contains filtered or unexported fields */} NSERR_AUTHENTICATE = Error{/* contains filtered or unexported fields */} NSERR_LARGE_DOMAIN = Error{/* contains filtered or unexported fields */} NSERR_PXY_IVAL_URL = Error{/* contains filtered or unexported fields */} NSERR_PXY_ME_USE = Error{/* contains filtered or unexported fields */} NSERR_PXY_MT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_PXY_MT_USE = Error{/* contains filtered or unexported fields */} NSERR_PXY_MB_INVAL = Error{/* contains filtered or unexported fields */} NSERR_PXY_MB_USE = Error{/* contains filtered or unexported fields */} NSERR_PXY_SETDCDN = Error{/* contains filtered or unexported fields */} NSERR_PXY_SETDFLT = Error{/* contains filtered or unexported fields */} NSERR_PXY_DFLT_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_PXY_FWD_IVAL = Error{/* contains filtered or unexported fields */} NSERR_PXY_MTX_PROT = Error{/* contains filtered or unexported fields */} NSERR_PXY_MTX_TRA = Error{/* contains filtered or unexported fields */} NSERR_PXY_MTX_FWD = Error{/* contains filtered or unexported fields */} NSERR_PXY_MTX_REV = Error{/* contains filtered or unexported fields */} NSERR_PXY_ADD_TRA_NONHTTP = Error{/* contains filtered or unexported fields */} NSERR_PXY_ADD_TRA_OTHER = Error{/* contains filtered or unexported fields */} NSERR_PXY_OPT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_PXY_ADD_SVR_OTHER = Error{/* contains filtered or unexported fields */} NSERR_PXY_MB_DUP = Error{/* contains filtered or unexported fields */} NSERR_PXY_DFLT_DUP = Error{/* contains filtered or unexported fields */} NSERR_SEL_INUSE = Error{/* contains filtered or unexported fields */} NSERR_SEL_PARSE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NOSELECTOR = Error{/* contains filtered or unexported fields */} NSERR_SEL_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_NOSELPARAM = Error{/* contains filtered or unexported fields */} NSERR_NOCACHEGROUP = Error{/* contains filtered or unexported fields */} NSERR_NONREQ_SEL = Error{/* contains filtered or unexported fields */} NSERR_INVALARG = Error{/* contains filtered or unexported fields */} NSERR_NOWILD_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_DATE_INCOMPAT = Error{/* contains filtered or unexported fields */} NSERR_TIMEDATE_INVALID = Error{/* contains filtered or unexported fields */} NSERR_CONTENTGROUP_COOKIE_REQ_PARAM = Error{/* contains filtered or unexported fields */} NSERR_CONTENTGROUP_IGNORECASE_REQ_HITPARAM = Error{/* contains filtered or unexported fields */} NSERR_CONTENTGROUP_INVALPARAM_REQ = Error{/* contains filtered or unexported fields */} NSERR_CLISEC_EXP_TOO_LONG = Error{/* contains filtered or unexported fields */} NSERR_NONHTTP_CSW_BIND_HTTP_SSL_POLICY = Error{/* contains filtered or unexported fields */} NSERR_POLBOUNDTO_TOO_MANY_VSVRS = Error{/* contains filtered or unexported fields */} NSERR_PRIORITY_COMP_PI_CSW = Error{/* contains filtered or unexported fields */} NSERR_PE_GOTO = Error{/* contains filtered or unexported fields */} NSERR_CACHEOBJECT_EVICT = Error{/* contains filtered or unexported fields */} NSERR_DNSFAIL = Error{/* contains filtered or unexported fields */} NSERR_HC_RET_TYPE_CHANGE = Error{/* contains filtered or unexported fields */} NSERR_HC_NOT_HTTP_VS = Error{/* contains filtered or unexported fields */} NSERR_HC_REQ_CONFIG_XOR = Error{/* contains filtered or unexported fields */} NSERR_HC_SERVICE_CONFIG_XOR = Error{/* contains filtered or unexported fields */} NSERR_HC_RET_TYPE_REQD = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIND_INCOMPAT_TGT = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIND_INCOMPAT_CSPL = Error{/* contains filtered or unexported fields */} NSERR_AS_BAD_XMLNAMESPACE_PREFIX = Error{/* contains filtered or unexported fields */} NSERR_INVALID_SIP_EXPR = Error{/* contains filtered or unexported fields */} NSERR_NO_BACKENDVSERVER = Error{/* contains filtered or unexported fields */} NSERR_CONTENT_GROUP_TOOMANY = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_SIZE_CHANGED = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_SIZE_ZERO = Error{/* contains filtered or unexported fields */} NSERR_L2CONN_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SQL_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_IPSEC_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_HTMLPAGE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_CSW_NO_POLICY_NAME = Error{/* contains filtered or unexported fields */} NSERR_SQL_MSG_EXCEED = Error{/* contains filtered or unexported fields */} NSERR_ROUTING_STRIPED_SNIP = Error{/* contains filtered or unexported fields */} NSERR_USERNAME_MISSING = Error{/* contains filtered or unexported fields */} NSERR_ACTION_EXIST = Error{/* contains filtered or unexported fields */} NSERR_WRONG_SERVICENAME = Error{/* contains filtered or unexported fields */} NSERR_PE_NOT_ALLOWED_RULE = Error{/* contains filtered or unexported fields */} NSERR_NODE_NOT_IN_CLUSTER = Error{/* contains filtered or unexported fields */} NSERR_MCMX_CNRES = Error{/* contains filtered or unexported fields */} NSERR_HC_POST_REQ_CONFIG_XOR = Error{/* contains filtered or unexported fields */} NSERR_HC_CACGRP = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIND_INCOMPAT_BKUP = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_RESIZE_IN_PROGRESS = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_RESIZE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_CSW_BIND_INCOMPAT_TARGET = Error{/* contains filtered or unexported fields */} NSERR_ATTRIB_MEM_FREED = Error{/* contains filtered or unexported fields */} NSERR_RULE_MISSING = Error{/* contains filtered or unexported fields */} NSERR_CACHEGROUP_CCH_MAXAGE_MAX = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_REDUCTION_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_CSW_POL_INCOMPAT_LB = Error{/* contains filtered or unexported fields */} NSERR_CS_INVALBACKUP = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_LIMIT_EXCEEDING = Error{/* contains filtered or unexported fields */} NSERR_INVAL_ARG_CRPL_LBVS = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_LIMIT_NOT_CONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_BIND_PIPOL_CS = Error{/* contains filtered or unexported fields */} NSERR_INVALID_BIND_PIPOL_CR = Error{/* contains filtered or unexported fields */} NSERR_MEDIAC_MEMORY_ALLOC_FAILED = Error{/* contains filtered or unexported fields */} NSERR_CSPOL_VPN_BIND = Error{/* contains filtered or unexported fields */} NSERR_CSACT_VPN = Error{/* contains filtered or unexported fields */} NSERR_CSPOL_ACT_VPN = Error{/* contains filtered or unexported fields */} NSERR_VPNSERVER_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_VPNREFERRED_IN_CSBINDING = Error{/* contains filtered or unexported fields */} NSERR_DEFAULTVPN_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_HDXINVAL = Error{/* contains filtered or unexported fields */} NSERR_CSW_ACTION_INCOMPTIBLE = Error{/* contains filtered or unexported fields */} NSERR_FWPXY_LICENSE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SVC_GRP_VSRVR_ERR = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SVC_GRP_IP_ERR = Error{/* contains filtered or unexported fields */} NSERR_GSLB_PUB_IP_PORT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SVCGRP_PUBIP_PUBPORT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NO_GSLBSVCGRP = Error{/* contains filtered or unexported fields */} NSERR_RENAME_GSLB_SVCGRP_WARN = Error{/* contains filtered or unexported fields */} NSERR_CS_PERSIST_NT_ALLWD = Error{/* contains filtered or unexported fields */} NSERR_GSLB_WC_PER_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_CR_SVC_ERROR = Error{/* contains filtered or unexported fields */} NSERR_CACHE_MEM_MINIMUM_CRITERIA_NOT_MET = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_PROFILE_IN_USE = Error{/* contains filtered or unexported fields */} NSERR_NO_SAMLPROFILE = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_PUSH_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_IC_CACHE_NOT_ENB = Error{/* contains filtered or unexported fields */} NSERR_DISK_ENGG_NOT_RUNNING = Error{/* contains filtered or unexported fields */} NSERR_DISK_ENGG_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_IC_DISK_CACHE_PARAM_NOT_SET = Error{/* contains filtered or unexported fields */} NSERR_NO_DIR = Error{/* contains filtered or unexported fields */} NSERR_NO_FILE = Error{/* contains filtered or unexported fields */} NSERR_FILEEXT_NOTSUP = Error{/* contains filtered or unexported fields */} NSERR_FILECONT_NOTSUP = Error{/* contains filtered or unexported fields */} NSERR_FILEENC_NOTSUP = Error{/* contains filtered or unexported fields */} NSERR_NO_DEST = Error{/* contains filtered or unexported fields */} NSERR_INVALID_DEST = Error{/* contains filtered or unexported fields */} NSERR_FWDSESSION_NAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_FWDSESSION_NW_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_FWDSESSION_ACL_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_FWDSESSION_ACL_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_FWDSESSION_CONN_FAILOVER = Error{/* contains filtered or unexported fields */} NSERR_SSL_CONFFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCONFFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_SIGFAIL = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALFORMAT = Error{/* contains filtered or unexported fields */} NSERR_SSL_OUTFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_VERIFY_FAIL = Error{/* contains filtered or unexported fields */} NSERR_SSL_FILECREATE = Error{/* contains filtered or unexported fields */} NSERR_SSL_MINKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALID_REQ = Error{/* contains filtered or unexported fields */} NSERR_SSL_GENTOOL = Error{/* contains filtered or unexported fields */} NSERR_SSL_PEM_ONLY = Error{/* contains filtered or unexported fields */} NSERR_SSL_PASSMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_PASSREQ = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALPASS = Error{/* contains filtered or unexported fields */} NSERR_SSL_MAXKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_GNTOOLARG_MISSING = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVAL_PUBEXP = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALID_VALUE = Error{/* contains filtered or unexported fields */} NSERR_SSL_MISSING_KVAL = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVAL_DHGEN = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFILE_CERTREQ = Error{/* contains filtered or unexported fields */} NSERR_SSL_REQ_NOMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_PKCS12 = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFILE_CAPVTKEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFILE_CACERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFILE_SERIAL = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFILE_PKCS12 = Error{/* contains filtered or unexported fields */} NSERR_SSL_READ_CACERT = Error{/* contains filtered or unexported fields */} NSERR_READ_CERT = Error{/* contains filtered or unexported fields */} NSERR_IMP_EXP_NOT_TOGETHER = Error{/* contains filtered or unexported fields */} NSERR_NOFILE_CERT = Error{/* contains filtered or unexported fields */} NSERR_NOFILE_KEY = Error{/* contains filtered or unexported fields */} NSERR_CACERTPKEY_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_WRONG_REV_ENTRY = Error{/* contains filtered or unexported fields */} NSERR_WRONG_REV_DATE = Error{/* contains filtered or unexported fields */} NSERR_WRONG_SERIAL_NO = Error{/* contains filtered or unexported fields */} NSERR_CREATE_DATABASE_ENTRY = Error{/* contains filtered or unexported fields */} NSERR_ALREADY_REVKD = Error{/* contains filtered or unexported fields */} NSERR_LOAD_PKEY = Error{/* contains filtered or unexported fields */} NSERR_CERTPKEY_NEEDED = Error{/* contains filtered or unexported fields */} NSERR_PKCS12_NEEDED = Error{/* contains filtered or unexported fields */} NSERR_ERR_FILEEXISTS = Error{/* contains filtered or unexported fields */} NSERR_FIPSKEY_KEYFILE_OPTION = Error{/* contains filtered or unexported fields */} NSERR_OUTFILELENBIG = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFPATH = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRL_DEFPATH = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFLOCATION = Error{/* contains filtered or unexported fields */} NSERR_SSL_DNS_DEFPATH = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERTKEY_INCOMPATIBLE = Error{/* contains filtered or unexported fields */} NSERR_DHREQD = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRL_DEFLOCATION = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFIPS_KEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_IMPROPER_SERIALFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_SERIAL_NUM_REVOKED = Error{/* contains filtered or unexported fields */} NSERR_SSL_MAXRSAKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_MUSTBEPEM = Error{/* contains filtered or unexported fields */} NSERR_SSL_CANTBEPEM = Error{/* contains filtered or unexported fields */} NSERR_SSL_BAD_LABEL = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSMKEY_LOAD = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSMKEY_PPE = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_NOKEY = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_DELETE = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_NOMATCH = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_REFEXT = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_NOTEXISTS = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_NOSTORE = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_GW_NOTUP = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_HSMKEY_FIPS = Error{/* contains filtered or unexported fields */} NSERR_ERR_SSL_SANCERT_DUP = Error{/* contains filtered or unexported fields */} NSERR_SSL_ECDSA_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_ECDSA_CURVE_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_LINK_LOOP = Error{/* contains filtered or unexported fields */} NSERR_SSL_N3FIPSREBOOT = Error{/* contains filtered or unexported fields */} NSERR_SSL_N3FIPS_FILECREATE = Error{/* contains filtered or unexported fields */} NSERR_SSL_SIGHASH_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_SAN_CERT_ENTRY = Error{/* contains filtered or unexported fields */} NSERR_CIPHER_BACKEND = Error{/* contains filtered or unexported fields */} NSERR_SSL_CIPHER_NOT_SUPPORTED_ON_PLATFORM = Error{/* contains filtered or unexported fields */} NSERR_SSL_I2D_X509_NAME_FAILURE = Error{/* contains filtered or unexported fields */} NSERR_DTLS_CIPHER_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_DTLS_CIPHER_BACKEND = Error{/* contains filtered or unexported fields */} NSERR_SSL_DIGEST_FIPS = Error{/* contains filtered or unexported fields */} NSERR_SSL_QUIC_TLS13_ONLY = Error{/* contains filtered or unexported fields */} NSERR_GRPC_PB_UNKNOWN_WIRE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_GRPC_PB_KEY_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_GRPC_PB_REP_FIELD_RANGE = Error{/* contains filtered or unexported fields */} NSERR_GRPC_PB_VALIDATION_FAILED = Error{/* contains filtered or unexported fields */} NSERR_BAD_DNS_OPTION = Error{/* contains filtered or unexported fields */} NSERR_DNS_BAD_CACHETYPE = Error{/* contains filtered or unexported fields */} NSERR_DNS_NOTAVAIL = Error{/* contains filtered or unexported fields */} NSERR_DNS_BAD_VSTYPE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITELKUP_FAILED = Error{/* contains filtered or unexported fields */} NSERR_GSLBBOUNDTO_CSACT = Error{/* contains filtered or unexported fields */} NSERR_GSLBREFFERED_IN_CSBINDING = Error{/* contains filtered or unexported fields */} NSERR_NOAREC = Error{/* contains filtered or unexported fields */} NSERR_INVALTTL = Error{/* contains filtered or unexported fields */} NSERR_CNAMEEXISTS = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SVCOPTION = Error{/* contains filtered or unexported fields */} NSERR_GSLBBIND_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NOT_LOCALREMOTE = Error{/* contains filtered or unexported fields */} NSERR_COUNT_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_IP_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SVCIP_REPEAT = Error{/* contains filtered or unexported fields */} NSERR_NOT_REMOTE = Error{/* contains filtered or unexported fields */} NSERR_NOT_LOCAL = Error{/* contains filtered or unexported fields */} NSERR_PROXY_REC = Error{/* contains filtered or unexported fields */} NSERR_NOPROXY_AREC = Error{/* contains filtered or unexported fields */} NSERR_SVC_GSLBBIND_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SVCTYPEMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_INVALID_PUBIP_OPTION = Error{/* contains filtered or unexported fields */} NSERR_INVAL_NAME_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_BACKUP = Error{/* contains filtered or unexported fields */} NSERR_IS_BACKUP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_HAS_BACKUP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_REQUIRES_INDEPENDENT_BACKUP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NOQUALIFIER = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NONAME = Error{/* contains filtered or unexported fields */} NSERR_GSLB_CUSTOM_NOSPACE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_STATIC_NOSPACE = Error{/* contains filtered or unexported fields */} NSERR_GSLBSITENAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLBSITEIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NO_GSLBSITE = Error{/* contains filtered or unexported fields */} NSERR_LOCAL_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NO_GSLBSVC = Error{/* contains filtered or unexported fields */} NSERR_NO_GSLBVIP = Error{/* contains filtered or unexported fields */} NSERR_NO_DMN = Error{/* contains filtered or unexported fields */} NSERR_DMN_NOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_SVCGRP_NOT_SUPPORTED_ON_HEIRARCHICHAL = Error{/* contains filtered or unexported fields */} NSERR_GSLBDOMAIN_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NOT_GSLBENT = Error{/* contains filtered or unexported fields */} NSERR_GSLBDOMAIN_PERM = Error{/* contains filtered or unexported fields */} NSERR_GSLB_MAXQUAL = Error{/* contains filtered or unexported fields */} NSERR_GSLB_MAXLOCLENGTH = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_PERM = Error{/* contains filtered or unexported fields */} NSERR_GSLBSVC_PERM = Error{/* contains filtered or unexported fields */} NSERR_GSLB_MAXSITES = Error{/* contains filtered or unexported fields */} NSERR_GSLB_QUALTOOLONG = Error{/* contains filtered or unexported fields */} NSERR_GSLB_PERSISTIDEXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_INVLD_LDNSTO_INTVL = Error{/* contains filtered or unexported fields */} NSERR_VIP_BACKUP_ISGSLB = Error{/* contains filtered or unexported fields */} NSERR_GSLB_PUBIP_PUBPORT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLBLOCALSVC_ENADIS_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_GSLBLOCALSVR_ENADIS_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_PERSISTID = Error{/* contains filtered or unexported fields */} NSERR_PERM_PERSISTID = Error{/* contains filtered or unexported fields */} NSERR_INVALID_LOCALSITEIP = Error{/* contains filtered or unexported fields */} NSERR_INVALID_REMOTESITEIP = Error{/* contains filtered or unexported fields */} NSERR_INVALID_SITETYPE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_BACKUPIP = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_MAXSVC = Error{/* contains filtered or unexported fields */} NSERR_INVALID_JITTER = Error{/* contains filtered or unexported fields */} NSERR_GSLBLOCSVC_DIS_NOTALLOWD = Error{/* contains filtered or unexported fields */} NSERR_DUMMYBKUP_NOTALLOWD = Error{/* contains filtered or unexported fields */} NSERR_GSLBSVC_BIND_NOTALLOWD = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_VERSION = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_EOF = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_PARSE = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_READ = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_WRITE = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_IOCTL = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_OUTPUTFILE = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_INPUTFILE = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_REQUIRED_FIELD = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_DBFILE = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_DBINSERT = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_DBSEARCH = Error{/* contains filtered or unexported fields */} NSERR_GSLBPROXM_LICENCE_ABSENT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITEPERSISTENCE_HTTPONLY = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NOSITEPFX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITEPREFIX_SIZE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITEDOMAIN_SIZE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITEDOMAIN_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITEDOMAIN_REFERS = Error{/* contains filtered or unexported fields */} NSERR_GSLBDOMAIN_REFERS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_ARECORD_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITECOOKIE_TIMEOUT_RANGE = Error{/* contains filtered or unexported fields */} NSERR_GSLBDOMAIN_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SO_PERM = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DEPRCOOKIETOUT = Error{/* contains filtered or unexported fields */} NSERR_DNS_NAMESVR_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_DNS_ORIGSVR_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_DNS_CONTACT_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_DNS_MX_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_DNS_CNAME_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_DNS_ALIAS_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NOLOCALVIP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_LOCALSVCEXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLBLOCALSVC_PERM = Error{/* contains filtered or unexported fields */} NSERR_DNS_INVAL_REVDOMNAME_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_DNS_ALIASREC = Error{/* contains filtered or unexported fields */} NSERR_GSLBLOCSVC_DELAYEDCLEAN_NOTALLOWD = Error{/* contains filtered or unexported fields */} NSERR_NO_BKP_VIP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NOSUCH_LDNSENTRY = Error{/* contains filtered or unexported fields */} NSERR_MAX_DNS_VIEW = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITE_IP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_LAST_MIP = Error{/* contains filtered or unexported fields */} NSERR_RM_GSLB_SITE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_IPRM_LAST_MIP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SVC_PUB_PORT_ERR = Error{/* contains filtered or unexported fields */} NSERR_REC_HAS_REF = Error{/* contains filtered or unexported fields */} NSERR_DNS_VIEW_REF = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITE_PERSISTENCE_MATCH = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITE_PERSISTENCE_CONFLICTS = Error{/* contains filtered or unexported fields */} NSERR_DNS_POLICY_INVAL = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_CNAME_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_CNAME_UNSUPPORTED_LBMETHODS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SERVICE_MON_NOIPPORT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SERVICE_MON_SET_NOIPPORT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_CNAME_SERVICE_SET = Error{/* contains filtered or unexported fields */} NSERR_GSLB_CNAME_VSERVER_SET = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_CNAME_UNSUPPORTED_BKUP_LBMETHODS = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_CNAME_UNSUPPORTED_EDR = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_CNAME_UNSUPPORTED_MIR = Error{/* contains filtered or unexported fields */} NSERR_GSLBSVC_VIEW_NEXIST = Error{/* contains filtered or unexported fields */} NSERR_DNS_TTL_MORE_THAN_MAX_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_LB_MAXSITES = Error{/* contains filtered or unexported fields */} NSERR_GSLB_HASCHILDREN = Error{/* contains filtered or unexported fields */} NSERR_GSLB_PARENTISCHILD = Error{/* contains filtered or unexported fields */} NSERR_MAX_STREAM_SELECTORS = Error{/* contains filtered or unexported fields */} NSERR_MAX_STREAM_IDENTIFERS = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_SELECTOR = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_IDENTIFIER = Error{/* contains filtered or unexported fields */} NSERR_RLT_TIMESLICE_INVALID_VAL = Error{/* contains filtered or unexported fields */} NSERR_ILLEGAL_SUBNET_MASK = Error{/* contains filtered or unexported fields */} NSERR_STREAM_SELECTOR_INUSE = Error{/* contains filtered or unexported fields */} NSERR_IDENTIFIER_INUSE = Error{/* contains filtered or unexported fields */} NSERR_SELECTOR_CANNOT_CHANGE_ATTRIB_TYPE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_IGN_TRIGMON = Error{/* contains filtered or unexported fields */} NSERR_SELECTOR_NOT_MORE_THAN_2_IPV6_EXP = Error{/* contains filtered or unexported fields */} NSERR_REPEATED_MONITORS = Error{/* contains filtered or unexported fields */} NSERR_ALL_MONITORS_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_AAAARECORD_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_HETEROGENEOUS_SERVICE_IPVERSION = Error{/* contains filtered or unexported fields */} NSERR_VIEWIP_IPV6 = Error{/* contains filtered or unexported fields */} NSERR_BACKUPIP_IPV6 = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_VIP_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DOMAIN_CONVERSION = Error{/* contains filtered or unexported fields */} NSERR_GSLB_IPV4_BACKUPIP = Error{/* contains filtered or unexported fields */} NSERR_CANNOT_ADD_SELECTOR = Error{/* contains filtered or unexported fields */} NSERR_SEL_CONFLICTING_ATTRIBUTES = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_CNAME_BACKUPIP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_HETEROGENEOUS_SITEIP = Error{/* contains filtered or unexported fields */} NSERR_DNS_MAX_AAAA_REC = Error{/* contains filtered or unexported fields */} NSERR_DNS_MAX_A_REC = Error{/* contains filtered or unexported fields */} NSERR_GSLB_RECTYPE_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_RECTYPE_DOMAIN = Error{/* contains filtered or unexported fields */} NSERR_GSLB_RECTYPE_BACKUP_VIP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_BKPVIP_RECTYPE = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_NAPTR_UNSUPPORTED_SVCTYPE = Error{/* contains filtered or unexported fields */} NSERR_BACKUPIP_IPV4 = Error{/* contains filtered or unexported fields */} NSERR_GSLB_IPV6_BACKUPIP = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DB_REQ_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DB_QUEUE_MAXED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DB_SERVER = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DB_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DB_CLOSED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_COORDINATES = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IPV6_PREFIXLEN = Error{/* contains filtered or unexported fields */} NSERR_GSLBDOMAIN_CANME_RECORD_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLBDOMAIN_AAAA_CNAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NON_PARENT_REMOTESITE = Error{/* contains filtered or unexported fields */} NSERR_ZONE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_INVAL_KEYFLAGS = Error{/* contains filtered or unexported fields */} NSERR_DNSKEY_NONEXISTS = Error{/* contains filtered or unexported fields */} NSERR_NORECS_IN_ZONE = Error{/* contains filtered or unexported fields */} NSERR_SIGNFAILED = Error{/* contains filtered or unexported fields */} NSERR_DIGESTINIT_FAILED = Error{/* contains filtered or unexported fields */} NSERR_DIGESTUPDATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_KEYEXISTS = Error{/* contains filtered or unexported fields */} NSERR_NOPASVKEYS = Error{/* contains filtered or unexported fields */} NSERR_DNS_MAXKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_NODATA_TO_SIGN = Error{/* contains filtered or unexported fields */} NSERR_CNAME_SITE_NOTEXISTS = Error{/* contains filtered or unexported fields */} NSERR_DNS_NOSOA_NONS = Error{/* contains filtered or unexported fields */} NSERR_DNS_PROXY_ZONE = Error{/* contains filtered or unexported fields */} NSERR_NOACTVKEYS = Error{/* contains filtered or unexported fields */} NSERR_NOTIFYPERIOD = Error{/* contains filtered or unexported fields */} NSERR_LOAD_PUBKEY = Error{/* contains filtered or unexported fields */} NSERR_DNSKEYGEN_UNSUPPORTED_ALGO = Error{/* contains filtered or unexported fields */} NSERR_DNSKEYGEN_ERR_PUBFILE_OPEN = Error{/* contains filtered or unexported fields */} NSERR_DNSKEYGEN_ERR_PRIVFILE_OPEN = Error{/* contains filtered or unexported fields */} NSERR_DNSKEYGEN_ERR_DSFILE_OPEN = Error{/* contains filtered or unexported fields */} NSERR_GSLB_OPT_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_GFS_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NSMAP_IMPORTFILE = Error{/* contains filtered or unexported fields */} NSERR_DNS_CNAMELOOP = Error{/* contains filtered or unexported fields */} NSERR_NEWSVC_NOT_4GSLB = Error{/* contains filtered or unexported fields */} NSERR_NON_CLUSTER_SYSTEM = Error{/* contains filtered or unexported fields */} NSERR_PM_MON_NOT_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_BACKUP_PERS_DEPRICATED = Error{/* contains filtered or unexported fields */} NSERR_DNS_SIGNFAIL = Error{/* contains filtered or unexported fields */} NSERR_DNS_NEED_PROXY = Error{/* contains filtered or unexported fields */} NSERR_DNSSEC_OFFLOAD_NOSUPPORT = Error{/* contains filtered or unexported fields */} NSERR_DNS64_ACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_DNS64_NOT_SUPPORTED_VS = Error{/* contains filtered or unexported fields */} NSERR_DNS64_INVAL_PREFIX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_DB_REPEAT_REQUEST = Error{/* contains filtered or unexported fields */} NSERR_GSLBSITE_CONN_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_DNS64_TIMEOUT_ROUNDOFF = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITE_PREFIX_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_DNSKEY_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_INVALID_REMOTE_CLIP = Error{/* contains filtered or unexported fields */} NSERR_IPV6_CLIP_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NON_DEFAULT_DBFILE_LOC = Error{/* contains filtered or unexported fields */} NSERR_LOC64_FROM_TO_TYPE = Error{/* contains filtered or unexported fields */} NSERR_DNS_NOSOA_NONS_ZONE_NO_PROXY_MODE = Error{/* contains filtered or unexported fields */} NSERR_DNS_ACTION_DROP_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_DNS_ACTION_REWRITE_RESPONSE_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_IDENTIFIER_INVAL_THRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_IDENTIFIER_INVAL_SORT = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_DNSPROF = Error{/* contains filtered or unexported fields */} NSERR_DNS_PROFILE_SVC_TYPE = Error{/* contains filtered or unexported fields */} NSERR_CSGSLB_POLICY_SET_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_CS_POLICY_SET_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_ECS_DISABLED_VALIDATION_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_ECS_INVALID_ADDR_LEN = Error{/* contains filtered or unexported fields */} NSERR_GSLB_ECS_MIR_BOTH_SET = Error{/* contains filtered or unexported fields */} NSERR_GSLB_ECS_IPV6_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_GSLB_ECS_LBMETHOD_NOT_SP = Error{/* contains filtered or unexported fields */} NSERR_REM_FAIL_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_GSLB_MEP_KEEP_ALIVE_LOW_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_MEP_KEEP_ALIVE_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SYNC_INT_PART_WARN = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SYNC_INT_NONPART_WARN = Error{/* contains filtered or unexported fields */} NSERR_INVAL_CAA_TAG = Error{/* contains filtered or unexported fields */} NSERR_DNS_VIEW_NOENT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_LOC_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_DNS_PRIO_INVAL_VALUE = Error{/* contains filtered or unexported fields */} NSERR_DNSPROF_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_DNSPROF_DEF = Error{/* contains filtered or unexported fields */} NSERR_GSLB_LOC_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_LOC_NOENT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_DNS_INT_POL = Error{/* contains filtered or unexported fields */} NSERR_GSLB_MEP = Error{/* contains filtered or unexported fields */} NSERR_IP_ROUTE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_DNS_VIEW_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NAME_VSVR_PERM = Error{/* contains filtered or unexported fields */} NSERR_DNS_POL_INTERNAL = Error{/* contains filtered or unexported fields */} NSERR_DNS_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NAPTR_SERVICE_SET = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NAPTR_REPLACEMENT_UNSET = Error{/* contains filtered or unexported fields */} NSERR_GSLBVIP_NAPTR_UNSUPPORTED_LBMETHODS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NAPTR_VSERVER_SET = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NAPTR_DOMAIN_SIZE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NAPTR_DOMAIN_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NAPTR_REPLACEMENT_SUFFIX_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NON_NAPTR_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_GSLB_USE_FORCESYNC = Error{/* contains filtered or unexported fields */} NSERR_INVALID_WILDCARD_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SYNC_SAVECMD_WARN = Error{/* contains filtered or unexported fields */} NSERR_ICA_CLIENT_VERSION_UNKNOWN_CLIENT_TYPE = Error{/* contains filtered or unexported fields */} NSERR_ICA_CLIENT_VERSION_DEFAULT_WHITELISTING = Error{/* contains filtered or unexported fields */} NSERR_ICA_CLIENT_VERSION_NOT_FOUND_IN_EXCEPTION_LIST = Error{/* contains filtered or unexported fields */} NSERR_ICA_CLIENT_VERSION_INCORRECT_BASE_VERSION_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_ICA_CLIENT_VERSION_INCORRECT_EXCEPTION_LIST_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_ICA_CLIENT_VERSION_DUPLICATES_RECEIVED_TO_REMOVE = Error{/* contains filtered or unexported fields */} NSERR_ICA_LATENCY_PROFILE_ACTIVE_CONNECTIONS = Error{/* contains filtered or unexported fields */} NSERR_PUBLICIP = Error{/* contains filtered or unexported fields */} NSERR_PRIVATEIP = Error{/* contains filtered or unexported fields */} NSERR_PROXYIP = Error{/* contains filtered or unexported fields */} NSERR_WILDCARDTCPVIP = Error{/* contains filtered or unexported fields */} NSERR_WILDCARDANYVIP = Error{/* contains filtered or unexported fields */} NSERR_FTPVIPPRESENT = Error{/* contains filtered or unexported fields */} NSERR_V46_USIP = Error{/* contains filtered or unexported fields */} NSERR_INCOMPATIBLE_IP = Error{/* contains filtered or unexported fields */} NSERR_ONLY_NAT46_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NAT46_PROXY_IP = Error{/* contains filtered or unexported fields */} NSERR_NAT46_INVALID_PREFIXLEN = Error{/* contains filtered or unexported fields */} NSERR_NAT46_INVALID_SETTING = Error{/* contains filtered or unexported fields */} NSERR_NAT46_PRIVATEIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_TFTPVIPPRESENT = Error{/* contains filtered or unexported fields */} NSERR_SETUNSETINAT_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_IDNS_NEMPTY = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_IVALPOLICY = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_IVALPROTO = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_ADD_NEXIST_VIP = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_NEXIST = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_IDNS_PERM = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_IP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_TYPE_NEXIST_VIP = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_INVAL_PROTOTYPE = Error{/* contains filtered or unexported fields */} NSERR_NAME_SVR_DYN_VSRVR_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_1GSFPSPEEDLIMIT = Error{/* contains filtered or unexported fields */} NSERR_1GSFPDUPLEXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_1GSPEEDLIMIT = Error{/* contains filtered or unexported fields */} NSERR_1GDUPLEXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_10GSPEEDLIMIT = Error{/* contains filtered or unexported fields */} NSERR_10GDUPLEXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_10GAUTONEGLIMIT = Error{/* contains filtered or unexported fields */} NSERR_10GSPEEDONLY = Error{/* contains filtered or unexported fields */} NSERR_FULLDUPLEXONLY = Error{/* contains filtered or unexported fields */} NSERR_AUTOINVALSPEED = Error{/* contains filtered or unexported fields */} NSERR_CLAGSPEEDREQ = Error{/* contains filtered or unexported fields */} NSERR_THROUGHPUTLIMIT = Error{/* contains filtered or unexported fields */} NSERR_BANDWIDTHLIMIT = Error{/* contains filtered or unexported fields */} NSERR_10GDAC_SPEEDLIMIT = Error{/* contains filtered or unexported fields */} NSERR_VIF_LACP_CAUTION = Error{/* contains filtered or unexported fields */} NSERR_LA_SLAVE_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_SLAVE_MTU_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_BKPLANE_MTU_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_MTU_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_BACKPLANE_MTU_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_INTERFACE_SLAVE_MTU_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_CHANNEL_RESTRICT = Error{/* contains filtered or unexported fields */} NSERR_PTP_CLUS_L3 = Error{/* contains filtered or unexported fields */} NSERR_40GDUPLEXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_40GSPEEDONLY = Error{/* contains filtered or unexported fields */} NSERR_LRSET_FC_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_LACP_SET_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_LLDPSET_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_SPEED_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_PRIORITY_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_THROUGHPUT_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_BW_SET_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_LAG_TYPE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_DUPLEX_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LRSET_AUTO_NEG_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_JF_ESX_VERSION_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_TP_SETTINGS_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LACP_SETTINGS_ON_TP_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_IP6_ADDRESS_SETTING_FAILED = Error{/* contains filtered or unexported fields */} NSERR_50GSPEEDLIMIT = Error{/* contains filtered or unexported fields */} NSERR_100GSPEEDLIMIT = Error{/* contains filtered or unexported fields */} NSERR_RX_RINGSIZE_CHANGE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RX_RINGSIZE_INVALID = Error{/* contains filtered or unexported fields */} NSERR_RX_RINGTYPE_CHANGE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_INTERFACE_LOOPBACK = Error{/* contains filtered or unexported fields */} NSERR_INTERFACE_INTERNAL = Error{/* contains filtered or unexported fields */} NSERR_BO_LAC_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_JBOC_FAILED = Error{/* contains filtered or unexported fields */} NSERR_BO_SESSION_EXPIRED = Error{/* contains filtered or unexported fields */} NSERR_BO_LAC_FULLY_ALLOCATED = Error{/* contains filtered or unexported fields */} NSERR_BO_WEBKEY_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_JBOC_CITRIX_RESPONSE = Error{/* contains filtered or unexported fields */} NSERR_JBOC_CITRIX_CONNECTION_FAILED = Error{/* contains filtered or unexported fields */} NSERR_BO_GENERIC = Error{/* contains filtered or unexported fields */} NSERR_BO_SN_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_SLESSLB_LBMETHOD_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SLESSLB_PERSIST_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SLESSLB_TYPE_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SLESSLB_MODE_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SLESSLB_SVC_USIPNOTSET = Error{/* contains filtered or unexported fields */} NSERR_WILDCARDVIP_LBMETHOD_INVAL = Error{/* contains filtered or unexported fields */} NSERR_WILDCARDVIP_PERSIST_INVAL = Error{/* contains filtered or unexported fields */} NSERR_LB_SO_THRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_USIP = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_LB_SO_DYNAMICCON_THRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_LB_SO_ADDRVIP = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_NOTFOR_SLESS = Error{/* contains filtered or unexported fields */} NSERR_NEWSVC_PERCENT_CAPPED = Error{/* contains filtered or unexported fields */} NSERR_SIP_NOCALLID = Error{/* contains filtered or unexported fields */} NSERR_SIP_NOVIA = Error{/* contains filtered or unexported fields */} NSERR_SIP_NOCSEQ = Error{/* contains filtered or unexported fields */} NSERR_SIP_NOTO = Error{/* contains filtered or unexported fields */} NSERR_SIP_NOFROM = Error{/* contains filtered or unexported fields */} NSERR_SIP_NOMAX_FORWARDS = Error{/* contains filtered or unexported fields */} NSERR_SIP_SERVICE_UNAVAILABLE = Error{/* contains filtered or unexported fields */} NSERR_SVC_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_SVCTYPE_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_CH_CON_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LBPROFILE_DBS = Error{/* contains filtered or unexported fields */} NSERR_LBPROFILE_EXIST = Error{/* contains filtered or unexported fields */} NSERR_LBPROFILE_NOENT = Error{/* contains filtered or unexported fields */} NSERR_LBPROFILE_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_LBPROFILE_VSERVERSET = Error{/* contains filtered or unexported fields */} NSERR_CH_INCOMPLETE_HDR = Error{/* contains filtered or unexported fields */} NSERR_SPILLOVERDISABLED = Error{/* contains filtered or unexported fields */} NSERR_MAXTIMEEXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_SCINVALPROTO = Error{/* contains filtered or unexported fields */} NSERR_ROOTREC = Error{/* contains filtered or unexported fields */} NSERR_ROOT_GLUEREC = Error{/* contains filtered or unexported fields */} NSERR_VIPINSERT_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_VSVR_ALRDY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_INVALID_WLM_BINDING = Error{/* contains filtered or unexported fields */} NSERR_VSVR_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_WLM_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_INVALID_TIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_TCPB = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_TCPB_SVC_BIND = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_TCPB_SVC_PARAM = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_SERVICE_STATEFULL = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_SSL_SVC_BIND = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_SSL_SVC = Error{/* contains filtered or unexported fields */} NSERR_INVALID_PERSISTENCE = Error{/* contains filtered or unexported fields */} NSERR_RTSPSESSION_INVALID = Error{/* contains filtered or unexported fields */} NSERR_LB_METHOD_SAMEAS_BACKUP_METHOD = Error{/* contains filtered or unexported fields */} NSERR_SERVER_EXIST = Error{/* contains filtered or unexported fields */} NSERR_LB_SO_HEALTH = Error{/* contains filtered or unexported fields */} NSERR_REQ_RULE_MISSING = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_BINDLO = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_SETWITHLO = Error{/* contains filtered or unexported fields */} NSERR_REDIRECT_URL_NOT_APPLICABLE = Error{/* contains filtered or unexported fields */} NSERR_CONNFAILOVER_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NOBIND_ONPUSH = Error{/* contains filtered or unexported fields */} NSERR_PUSH_VSVR = Error{/* contains filtered or unexported fields */} NSERR_ONLY_HTTPSSL = Error{/* contains filtered or unexported fields */} NSERR_PUSH_BIND_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SET_PUSHVS_ONLY = Error{/* contains filtered or unexported fields */} NSERR_SLESS_NO_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_LISTEN_POLICY_BIND = Error{/* contains filtered or unexported fields */} NSERR_NO_LISTEN_POLICY_FOR_DUMMYVS = Error{/* contains filtered or unexported fields */} NSERR_LISTEN_POLICY_BIND_PRESENT = Error{/* contains filtered or unexported fields */} NSERR_NO_LISTEN_PRI = Error{/* contains filtered or unexported fields */} NSERR_NORMAL_VS_NONE_LISTENPOL = Error{/* contains filtered or unexported fields */} NSERR_NO_LISPRI_FOR_NONE_LISPOL = Error{/* contains filtered or unexported fields */} NSERR_INVALID_POLICY_STRING = Error{/* contains filtered or unexported fields */} NSERR_NODATALENOFFFORVS = Error{/* contains filtered or unexported fields */} NSERR_LBGRPPERSISWITHRDP = Error{/* contains filtered or unexported fields */} NSERR_CS_SOTHRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_INVALID_INSERTVSERVERIPPORT = Error{/* contains filtered or unexported fields */} NSERR_LB_SERVER_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_BOUNDTO_CSACT = Error{/* contains filtered or unexported fields */} NSERR_BOUNDTO_CSPOLICY = Error{/* contains filtered or unexported fields */} NSERR_INVALID_MULTIPLEBIND = Error{/* contains filtered or unexported fields */} NSERR_CSPOLICY_HASACTION = Error{/* contains filtered or unexported fields */} NSERR_CS_NOTSUPPORT_LB = Error{/* contains filtered or unexported fields */} NSERR_ACTION_NOTNOOP_CS = Error{/* contains filtered or unexported fields */} NSERR_CSPOLICY_NOACTION = Error{/* contains filtered or unexported fields */} NSERR_POLICY_USED_FOR_INVOKE = Error{/* contains filtered or unexported fields */} NSERR_SPECIFY_BACKUP_NODE = Error{/* contains filtered or unexported fields */} NSERR_SAME_NODES = Error{/* contains filtered or unexported fields */} NSERR_TCPKA_IDLETIME_TOO_LOW = Error{/* contains filtered or unexported fields */} NSERR_OWNER_NODE_NOT_IN_CLUSTER = Error{/* contains filtered or unexported fields */} NSERR_BACKUP_NODE_NOT_IN_CLUSTER = Error{/* contains filtered or unexported fields */} NSERR_SPOTTED_VSERVER_NOT_SUPPORTED_IN_STANDALONE = Error{/* contains filtered or unexported fields */} NSERR_SPOTTED_CONFIG_NO_MATCH = Error{/* contains filtered or unexported fields */} NSERR_OPTION_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_OPTION_NOT_SUPPORTED_IP = Error{/* contains filtered or unexported fields */} NSERR_OWNER_NODE_NOT_SET = Error{/* contains filtered or unexported fields */} NSERR_INVALID_RENAME = Error{/* contains filtered or unexported fields */} NSERR_INVAL_LOCAL_NAMSVR_TYPE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_TFTPORT = Error{/* contains filtered or unexported fields */} NSERR_NO_RENAME = Error{/* contains filtered or unexported fields */} NSERR_USE_BINDCR_CMD = Error{/* contains filtered or unexported fields */} NSERR_NOENT_AS_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_LBREFFERED_IN_CSBINDING = Error{/* contains filtered or unexported fields */} NSERR_DEFAULTLB_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NG_BIND_ENTITY = Error{/* contains filtered or unexported fields */} NSERR_ENTITY_BOUND_TO_ANOTHER_NG = Error{/* contains filtered or unexported fields */} NSERR_ENTITY_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ENTITY_NOT_BOUND_TO_NG = Error{/* contains filtered or unexported fields */} NSERR_NG_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_NG_HAS_BINDINGS = Error{/* contains filtered or unexported fields */} NSERR_VSERVER_CANNOT_BIND = Error{/* contains filtered or unexported fields */} NSERR_VSERVER_CANNOT_UNBIND = Error{/* contains filtered or unexported fields */} NSERR_NG_CANNOT_BE_STRICT = Error{/* contains filtered or unexported fields */} NSERR_NG_STRICT_AND_ZERODEPTH = Error{/* contains filtered or unexported fields */} NSERR_UNBINDING_LAST_NODE_FROM_STRICT_NG = Error{/* contains filtered or unexported fields */} NSERR_NG_ALREADY_ADDED = Error{/* contains filtered or unexported fields */} NSERR_NG_ENTITY_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_NG_MAX_CONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_INVAL_CS_ACTION = Error{/* contains filtered or unexported fields */} NSERR_SET_CSACTION_DISALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RETAIN_VLAN = Error{/* contains filtered or unexported fields */} NSERR_BIND_BDGGROUP_SYNCVLAN = Error{/* contains filtered or unexported fields */} NSERR_DEL_SYNCVLAN = Error{/* contains filtered or unexported fields */} NSERR_LESSTHAN_PPE = Error{/* contains filtered or unexported fields */} NSERR_MCLIMITS = Error{/* contains filtered or unexported fields */} NSERR_SIP_BAD_REQUEST = Error{/* contains filtered or unexported fields */} NSERR_SIP_NO_CONTENT_LEN = Error{/* contains filtered or unexported fields */} NSERR_SIP_RET_MAX_INCOM_LEN = Error{/* contains filtered or unexported fields */} NSERR_SIP_RET_RETRY = Error{/* contains filtered or unexported fields */} NSERR_SIP_RET_NO_MEM = Error{/* contains filtered or unexported fields */} NSERR_SIP_RET_HEADER_NOT_COMPLETE = Error{/* contains filtered or unexported fields */} NSERR_SIP_RET_FAILURE = Error{/* contains filtered or unexported fields */} NSERR_CS_GSLB_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_CS_GSLB_DNSRT_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_CS_GSLB_INVALID_TARGET = Error{/* contains filtered or unexported fields */} NSERR_CS_GSLB_POLICY_NO_ACTION = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SVC_ALREADY_BOUND_TO_CS = Error{/* contains filtered or unexported fields */} NSERR_CS_POLICY_NO_RULE = Error{/* contains filtered or unexported fields */} NSERR_VIP_BACKUP_ISCSGSLB = Error{/* contains filtered or unexported fields */} NSERR_VSR_BOUND = Error{/* contains filtered or unexported fields */} NSERR_SG_AUTOSCALE_REQ_SRV = Error{/* contains filtered or unexported fields */} NSERR_SG_PORT_REQ = Error{/* contains filtered or unexported fields */} NSERR_SRV_PORT_NREQ = Error{/* contains filtered or unexported fields */} NSERR_DBS_SPECIFIC_PARAMS = Error{/* contains filtered or unexported fields */} NSERR_LW_CPX = Error{/* contains filtered or unexported fields */} NSERR_DESIREDSTATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_UNBIND_TROFS_ITEM = Error{/* contains filtered or unexported fields */} NSERR_SGRP_MEMBER = Error{/* contains filtered or unexported fields */} NSERR_NS_VARIABLE_INVALID_INPUT = Error{/* contains filtered or unexported fields */} NSERR_NS_VARIABLE_MISCONFIGURATION = Error{/* contains filtered or unexported fields */} NSERR_COOKIE_ATTR_INVALID_CHAR = Error{/* contains filtered or unexported fields */} NSERR_LITERAL_COMPUTED_MUTEX = Error{/* contains filtered or unexported fields */} NSERR_ADDRPRESENT = Error{/* contains filtered or unexported fields */} NSERR_PERSISTENCE_PERSISTAVP_NOTDEFINED = Error{/* contains filtered or unexported fields */} NSERR_MAX_DIAMETER_AVP_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_AUTOSCALE_MIN_GT_MAX = Error{/* contains filtered or unexported fields */} NSERR_MEMBERPORT_REQD = Error{/* contains filtered or unexported fields */} NSERR_COOKIEINSERT_NOTSET = Error{/* contains filtered or unexported fields */} NSERR_LB_POLICY_NSB_FREED = Error{/* contains filtered or unexported fields */} NSERR_LB_ACT_MUSTBE_NOLBACTION = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOPOOL = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOTRANSPRFL = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOAPPSPRFL = Error{/* contains filtered or unexported fields */} NSERR_LSN_POOLNOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_LSN_PRFLNOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOTREADY = Error{/* contains filtered or unexported fields */} NSERR_LSN_MAXBINDINGS = Error{/* contains filtered or unexported fields */} NSERR_LSN_ACL_DETERMINISTICNAT = Error{/* contains filtered or unexported fields */} NSERR_LSN_ACLTYPE = Error{/* contains filtered or unexported fields */} NSERR_LSN_ACLINUSE = Error{/* contains filtered or unexported fields */} NSERR_64LIB_MEM_NOTSUFFICIENT = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOBINDING = Error{/* contains filtered or unexported fields */} NSERR_LSN_NONETWORK = Error{/* contains filtered or unexported fields */} NSERR_LSN_CLIENTGROUP = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOCLIENT = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOGLBLLOG = Error{/* contains filtered or unexported fields */} NSERR_LSN_CLIENTINUSE = Error{/* contains filtered or unexported fields */} NSERR_LSN_PORTBLOCKSIZE = Error{/* contains filtered or unexported fields */} NSERR_LSN_WRONG_PORTBLOCKSIZE = Error{/* contains filtered or unexported fields */} NSERR_LSN_BINDINGEXIST = Error{/* contains filtered or unexported fields */} NSERR_LSN_POOLGROUPTYPE = Error{/* contains filtered or unexported fields */} NSERR_LSN_POOLREUSE_DETERMINISTICNAT = Error{/* contains filtered or unexported fields */} NSERR_LSN_PORT_APPSPROFEXIST = Error{/* contains filtered or unexported fields */} NSERR_LSN_TCPONLY = Error{/* contains filtered or unexported fields */} NSERR_LSN_MAPPINGFILTERINGTYPE = Error{/* contains filtered or unexported fields */} NSERR_LSN_ICMPAPPSPROF_MAPPINGFILTERINGPORT = Error{/* contains filtered or unexported fields */} NSERR_LSN_ICMPAPPSPROF_PORT = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATIC_NOGROUP = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATIC_INVPOOL = Error{/* contains filtered or unexported fields */} NSERR_LSN_FINTIMGTSESSTIM = Error{/* contains filtered or unexported fields */} NSERR_LSN_SETPORTBLOCK_DETERMINISTICNAT = Error{/* contains filtered or unexported fields */} NSERR_LSN_DETERMINISTICNAT_SUBSCR_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_64LIB_MEM_INCOMPLETE = Error{/* contains filtered or unexported fields */} NSERR_64LIB_MEM_EXCEEDSMAX = Error{/* contains filtered or unexported fields */} NSERR_64LIB_MEM_SIZE2M = Error{/* contains filtered or unexported fields */} NSERR_LSN_IPINSERT = Error{/* contains filtered or unexported fields */} NSERR_LSN_ICMP_TIMEOUT_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_LSN_TCP_UDP_TIMEOUT_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_LSN_APPSPROF_PORTZERO = Error{/* contains filtered or unexported fields */} NSERR_LSN_MEM_DECR = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOSIPALGPRFL = Error{/* contains filtered or unexported fields */} NSERR_LSN_REM_APPPROFILE_ALGPROFILE_BOUND = Error{/* contains filtered or unexported fields */} NSERR_LSN_UNBIND_APPPROFILE_ALGPROFILE_BOUND = Error{/* contains filtered or unexported fields */} NSERR_LSN_NORTSPALGPRFL = Error{/* contains filtered or unexported fields */} NSERR_LSN_SIPALGPROF_PORTZERO = Error{/* contains filtered or unexported fields */} NSERR_LSN_RTSPALGPROF_PORTZERO = Error{/* contains filtered or unexported fields */} NSERR_LSN_IP6PROF_DSLITE = Error{/* contains filtered or unexported fields */} NSERR_LSN_IP6PROF_NAT64 = Error{/* contains filtered or unexported fields */} NSERR_LSN_NETWORK6_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_LSN_CLIENTNETWORK_INCORRECT_BINDING = Error{/* contains filtered or unexported fields */} NSERR_LSN_CLIENTGROUPTYPE = Error{/* contains filtered or unexported fields */} NSERR_LSN_DSLITEPREFIXLEN = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOIP6PROFILE = Error{/* contains filtered or unexported fields */} NSERR_LSN_IP6GROUP = Error{/* contains filtered or unexported fields */} NSERR_LSN_DSLITE_INVALIDIP6 = Error{/* contains filtered or unexported fields */} NSERR_LSN_DSLITE_SNIP6_REQD = Error{/* contains filtered or unexported fields */} NSERR_LSN_DUP_IP6PROFILE = Error{/* contains filtered or unexported fields */} NSERR_LSN_SIPALG_CANNOT_BIND = Error{/* contains filtered or unexported fields */} NSERR_LSN_RTSPALG_CANNOT_BIND = Error{/* contains filtered or unexported fields */} NSERR_LSN_SIPALG_TRANSPORT_PROTOCOL_BINDINGEXIST = Error{/* contains filtered or unexported fields */} NSERR_LSN_RTSPALG_TRANSPORT_PROTOCOL_BINDINGEXIST = Error{/* contains filtered or unexported fields */} NSERR_LSN_CANNOT_UNBIND_APPPROFILE = Error{/* contains filtered or unexported fields */} NSERR_LSN_RTSPALGPROF_TRANSPORT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_LSN_IPSECALG_CANNOT_BIND = Error{/* contains filtered or unexported fields */} NSERR_LSN_SIPALGPROF_PORT_NOT_ADDED = Error{/* contains filtered or unexported fields */} NSERR_LSN_GRP_SESS_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_LSN_DETER_POOL = Error{/* contains filtered or unexported fields */} NSERR_LSN_SIP_RTSP_ALG_MAPPING_FILTERING_IPPOOLING = Error{/* contains filtered or unexported fields */} NSERR_LSN_PORTBLOCKSIZE_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_LSN_POOLGROUP_PORTBLOCK_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_LSN_GRPID_PERM = Error{/* contains filtered or unexported fields */} NSERR_LSN_INVALID_DSLITE_PREFIX_LEN = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOLOGPRFL = Error{/* contains filtered or unexported fields */} NSERR_LSN_NOHTTPHDRLOGPRFL = Error{/* contains filtered or unexported fields */} NSERR_LSN_DOHASYNC = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATICWILD_INV_PORT = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATICWILD_INV_NATIP = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATICWILD_INV_DSTIP = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATICWILD_INV_WILDPORT = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATICWILD_NATIP_INUSE = Error{/* contains filtered or unexported fields */} NSERR_LSN_STATICWILD_NATIP_NO_FREE_PORTS = Error{/* contains filtered or unexported fields */} NSERR_LSN_NAT64_MAP_INS_FAIL = Error{/* contains filtered or unexported fields */} NSERR_LSN_DSLITE_NO_FTP_CM = Error{/* contains filtered or unexported fields */} NSERR_MAP_IPV6_PREFIX_INVALID = Error{/* contains filtered or unexported fields */} NSERR_MAP_IPV6_PREFIX_REQ = Error{/* contains filtered or unexported fields */} NSERR_MAP_PSID_INVALID = Error{/* contains filtered or unexported fields */} NSERR_MAP_PSID_OFFSET_INVALID = Error{/* contains filtered or unexported fields */} NSERR_MAP_IPV4_NW_REQ = Error{/* contains filtered or unexported fields */} NSERR_MAP_BMR_NW_MISSMATCH = Error{/* contains filtered or unexported fields */} NSERR_MAP_BMR_PSID_LEN_INVALID = Error{/* contains filtered or unexported fields */} NSERR_MAP_BMR_EABIT_LEN_INVALID = Error{/* contains filtered or unexported fields */} NSERR_MAP_NSB_CONSUMED = Error{/* contains filtered or unexported fields */} NSERR_MAP_NO_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_NAT64_ACL_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ACL_TIMED_OUT = Error{/* contains filtered or unexported fields */} NSERR_MSR_ADVT_NULL_RT = Error{/* contains filtered or unexported fields */} NSERR_DEF_RT_UNSET = Error{/* contains filtered or unexported fields */} NSERR_ACTIVE_PERM_DIR_NULL_RT = Error{/* contains filtered or unexported fields */} NSERR_DHCP_RT = Error{/* contains filtered or unexported fields */} NSERR_LB_RT = Error{/* contains filtered or unexported fields */} NSERR_MSR_STATIC_RT = Error{/* contains filtered or unexported fields */} NSERR_ADV_DEF_RT = Error{/* contains filtered or unexported fields */} NSERR_VLAN_RT = Error{/* contains filtered or unexported fields */} NSERR_PERM_RT = Error{/* contains filtered or unexported fields */} NSERR_NOENTRY_RT = Error{/* contains filtered or unexported fields */} NSERR_DIR_RT = Error{/* contains filtered or unexported fields */} NSERR_LOOP_RT = Error{/* contains filtered or unexported fields */} NSERR_GW_NWID_BROADADDR = Error{/* contains filtered or unexported fields */} NSERR_MON_ADV_NULL_RT = Error{/* contains filtered or unexported fields */} NSERR_HA_PEER_IP = Error{/* contains filtered or unexported fields */} NSERR_NON_LOCAL_IP = Error{/* contains filtered or unexported fields */} NSERR_ADD_NSIP = Error{/* contains filtered or unexported fields */} NSERR_VRID_VIP_ONLY = Error{/* contains filtered or unexported fields */} NSERR_ARP_ICMP_SNIP_NSIP = Error{/* contains filtered or unexported fields */} NSERR_IPADDR_DISABLE = Error{/* contains filtered or unexported fields */} NSERR_NODE_NOEXIST = Error{/* contains filtered or unexported fields */} NSERR_CLIP_SPOTTED_IP = Error{/* contains filtered or unexported fields */} NSERR_IP_MGMTACCESS = Error{/* contains filtered or unexported fields */} NSERR_IPTUN_MULTICAST = Error{/* contains filtered or unexported fields */} NSERR_IPTUNNEL_INVALIDNETMASK = Error{/* contains filtered or unexported fields */} NSERR_IPTUNNEL_VLAN = Error{/* contains filtered or unexported fields */} NSERR_IPTUN_INV_LIP = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_LIP_NOT_SNIP = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IPTUNNEL_NAME = Error{/* contains filtered or unexported fields */} NSERR_IPTUNNEL_PREFXLEN_GT_128 = Error{/* contains filtered or unexported fields */} NSERR_TUN_PBR_DEP = Error{/* contains filtered or unexported fields */} NSERR_TUN_NOEXIST = Error{/* contains filtered or unexported fields */} NSERR_INV_DROPFRAGCPUTHRESH = Error{/* contains filtered or unexported fields */} NSERR_SRCIP_NOEXIST = Error{/* contains filtered or unexported fields */} NSERR_TUN_ON_DEF_ROUTE = Error{/* contains filtered or unexported fields */} NSERR_VLAN_NOT_SNIP_MIP_VIP = Error{/* contains filtered or unexported fields */} NSERR_ACL_PROTO_TCP = Error{/* contains filtered or unexported fields */} NSERR_HA_VERSION_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_HA_SYNC_VLAN = Error{/* contains filtered or unexported fields */} NSERR_LOOP_FIS = Error{/* contains filtered or unexported fields */} NSERR_VLAN_LOOP = Error{/* contains filtered or unexported fields */} NSERR_VLAN_TAGG_INTF_NOSUPP = Error{/* contains filtered or unexported fields */} NSERR_VLAN_BDG_NOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_PERMANENT_ARP_ND6_ENTRY = Error{/* contains filtered or unexported fields */} NSERR_HA_VER_MISMATCH_PROP_SYNC = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_TUNN_BOUND = Error{/* contains filtered or unexported fields */} NSERR_HOSTRT_UNSET = Error{/* contains filtered or unexported fields */} NSERR_BDGGRP_L3VLAN = Error{/* contains filtered or unexported fields */} NSERR_BDGGRP_ROUTING = Error{/* contains filtered or unexported fields */} NSERR_RM_RT_DIR_PERM_DHCP = Error{/* contains filtered or unexported fields */} NSERR_ADD_IP_STRIPED_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_DIS_IP_NOT_USR_DEF = Error{/* contains filtered or unexported fields */} NSERR_DIS_IP_NOT_VIP = Error{/* contains filtered or unexported fields */} NSERR_DEL_NSIP = Error{/* contains filtered or unexported fields */} NSERR_DEL_DHCP_AQRD = Error{/* contains filtered or unexported fields */} NSERR_USR_DEF_NO = Error{/* contains filtered or unexported fields */} NSERR_TUNL_DEPENDENCY = Error{/* contains filtered or unexported fields */} NSERR_MGMT_NSIP_CLIP = Error{/* contains filtered or unexported fields */} NSERR_INV_ICMP_RESP = Error{/* contains filtered or unexported fields */} NSERR_INV_ARP_RESP = Error{/* contains filtered or unexported fields */} NSERR_INTERNAL_ERR_REGN = Error{/* contains filtered or unexported fields */} NSERR_CANT_SET_IP_DEL_IN_PROG = Error{/* contains filtered or unexported fields */} NSERR_INAT_USE_PROXY = Error{/* contains filtered or unexported fields */} NSERR_GSLB_ADNS_CONFGRD = Error{/* contains filtered or unexported fields */} NSERR_NW_ADDR_ZERO = Error{/* contains filtered or unexported fields */} NSERR_NW_ADDR_LOOP = Error{/* contains filtered or unexported fields */} NSERR_UNABLE_DEFVLAN_INFO = Error{/* contains filtered or unexported fields */} NSERR_HA_INC_SYNC = Error{/* contains filtered or unexported fields */} NSERR_IP_NWADDR = Error{/* contains filtered or unexported fields */} NSERR_IP_BCASTADDR = Error{/* contains filtered or unexported fields */} NSERR_ACL_BOUND_LSN = Error{/* contains filtered or unexported fields */} NSERR_SUBNET_BOUND_ANTHR_VLAN = Error{/* contains filtered or unexported fields */} NSERR_DEL_ADNS_IP = Error{/* contains filtered or unexported fields */} NSERR_DEL_REF_IP = Error{/* contains filtered or unexported fields */} NSERR_SNMP_CANNOT_EN_ON_IP = Error{/* contains filtered or unexported fields */} NSERR_CANNOT_EN_ON_IPADDR = Error{/* contains filtered or unexported fields */} NSERR_ACL_ESTABLISHED_SET = Error{/* contains filtered or unexported fields */} NSERR_DEL_RADIUS_IP = Error{/* contains filtered or unexported fields */} NSERR_CANNOT_EN_ON_IP = Error{/* contains filtered or unexported fields */} NSERR_BFD_SESSION_CLEAR_INPROGRESS = Error{/* contains filtered or unexported fields */} NSERR_BFD_SESSION_EXISTS_DIFF_FLAGS = Error{/* contains filtered or unexported fields */} NSERR_CLASS_E = Error{/* contains filtered or unexported fields */} NSERR_TUN_CIPROF_DEP = Error{/* contains filtered or unexported fields */} NSERR_FEA_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_HTTP_SSL_SAME_VALUE = Error{/* contains filtered or unexported fields */} NSERR_TNL_NETBRIDGED = Error{/* contains filtered or unexported fields */} NSERR_TNL_GRE = Error{/* contains filtered or unexported fields */} NSERR_TNL_RIPMASK = Error{/* contains filtered or unexported fields */} NSERR_VLAN_NETBRIDGED = Error{/* contains filtered or unexported fields */} NSERR_MAX_NETBRIDGE_TUNNEL = Error{/* contains filtered or unexported fields */} NSERR_TUN_BOUND = Error{/* contains filtered or unexported fields */} NSERR_SUBNET_BOUND = Error{/* contains filtered or unexported fields */} NSERR_TUN_CONF_NETBRIDGE = Error{/* contains filtered or unexported fields */} NSERR_VLAN_CONF_NETBRIDGE = Error{/* contains filtered or unexported fields */} NSERR_IP_INVAL_NETBRIDGE = Error{/* contains filtered or unexported fields */} NSERR_IPV6_INVAL_NETBRIDGE = Error{/* contains filtered or unexported fields */} NSERR_INV_NETBRIDGE_NAME = Error{/* contains filtered or unexported fields */} NSERR_GRE_IPSEC_LIP_NOT_GIVEN = Error{/* contains filtered or unexported fields */} NSERR_NETBRIDGE_TUNNELBOUNDTOPBR = Error{/* contains filtered or unexported fields */} NSERR_NETBRIDGE_UNSUPPORTEDTUNNELPAYLOAD = Error{/* contains filtered or unexported fields */} NSERR_NETBRIDGE_ONEVLAN_ETHERNET = Error{/* contains filtered or unexported fields */} NSERR_NETBRIDGE_TUNNELPAYLOAD_DIFFERENT = Error{/* contains filtered or unexported fields */} NSERR_IPSET_REF = Error{/* contains filtered or unexported fields */} NSERR_NETPROFILE_REF = Error{/* contains filtered or unexported fields */} NSERR_IPSET_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_IPSET = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_NETPROF = Error{/* contains filtered or unexported fields */} NSERR_OVERLAPPING_PORTRANGE = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_PORTRANGE = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_NATRULE = Error{/* contains filtered or unexported fields */} NSERR_NATRULE_EXIST = Error{/* contains filtered or unexported fields */} NSERR_IP_VSERVER_IPSET_FREE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_OBJECTNAME = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_JSON_INPUT = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_JSON_DATATYPE = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_XML_INPUT = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_DATATYPE = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_METHOD = Error{/* contains filtered or unexported fields */} NSERR_NITRO_PARSE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_NITRO_CMDEXEC_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALID_ACTION = Error{/* contains filtered or unexported fields */} NSERR_NITRO_ROLLBACK_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_ROLLBACK_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_BULK_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_BASIC_AUTH_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_TECHSUPPORT_ARCHIVE_CREATION_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_TECHSUPPORT_ARCHIVE_UPLOAD_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_TEMPLATE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_INVALID_TEMPLATE = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_DIR_ERROR = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_FILE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_INVALID_APP_INPUT = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_EXCEEDED_FILELENGTH = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_ENDPOINT_INUSE = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_PROTOCOL_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_INVALID_VARNAME = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_ZIP_FILE = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_MAXEP_REACHED = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_INVALID_SERVICETYPE = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_TEMPLATE_FORMAT_ERROR = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_APP_WITHOUT_APPUNITS = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_SERVICRGROUP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NSAPP_VARIABLE_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NITRO_CMD_NOTATTEMPTED = Error{/* contains filtered or unexported fields */} NSERR_NITRO_INVALIDREQ = Error{/* contains filtered or unexported fields */} NSERR_NNM_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NNM_CONN_CLEANED = Error{/* contains filtered or unexported fields */} NSERR_NNM_CONN_FAILED = Error{/* contains filtered or unexported fields */} NSERR_NNM_NO_CONN = Error{/* contains filtered or unexported fields */} NSERR_NNM_CONN_DROPPED = Error{/* contains filtered or unexported fields */} NSERR_NNM_EINJECT = Error{/* contains filtered or unexported fields */} NSERR_NNM_VERSION_UNSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_NNM_TIMEOUT_MSG = Error{/* contains filtered or unexported fields */} NSERR_NNM_TIMEOUT_ACK = Error{/* contains filtered or unexported fields */} NSERR_NNM_MCAST = Error{/* contains filtered or unexported fields */} NSERR_NNM_PENDING = Error{/* contains filtered or unexported fields */} NSERR_ALREADY_RUNNING = Error{/* contains filtered or unexported fields */} NSERR_PKTSIZE_SMALL = Error{/* contains filtered or unexported fields */} NSERR_CANNOT_CLOSE = Error{/* contains filtered or unexported fields */} NSERR_NSTRACE_PERNIC_WARN = Error{/* contains filtered or unexported fields */} NSERR_NSTRACE_INVALID_FILTER = Error{/* contains filtered or unexported fields */} NSERR_NSTRACE_SENSITIVE_WARN = Error{/* contains filtered or unexported fields */} NSERR_LOW_DISK = Error{/* contains filtered or unexported fields */} NSERR_MAX_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_PARTITION_NAME_EXIST = Error{/* contains filtered or unexported fields */} NSERR_NO_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_DEL_PARTITION_BUSY = Error{/* contains filtered or unexported fields */} NSERR_DEL_PARTITION_INUSE = Error{/* contains filtered or unexported fields */} NSERR_NO_DEL_DFLT_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_RM_PARTITION_CONFIRM = Error{/* contains filtered or unexported fields */} NSERR_NOT_SUPPORTFORPARTITION = Error{/* contains filtered or unexported fields */} NSERR_AP_CONFIG_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_VLAN_BDGGRP_PARTITION_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AP_DEFVLAN = Error{/* contains filtered or unexported fields */} NSERR_VLAN_BDGGRP_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_PQ_ARG_UNSUPPORTED_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_SC_ARG_UNSUPPORTED_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_MAX_PARTITIONS_ZEBOS = Error{/* contains filtered or unexported fields */} NSERR_AP_SYNCVLAN = Error{/* contains filtered or unexported fields */} NSERR_AP_VLAN_BDG_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AP_SDXMGMTVLAN = Error{/* contains filtered or unexported fields */} NSERR_AP_DEFAULT_PARTITION_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_AP_MEM_DECR = Error{/* contains filtered or unexported fields */} NSERR_AP_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_AP_PVID_IF_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AP_VLAN_BINDING_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AP_NOT_SUPPORTFORSHAREDVLAN = Error{/* contains filtered or unexported fields */} NSERR_AP_SHAREDVLAN_CONFIG_NOT_ALLOWED_INCLUSTER = Error{/* contains filtered or unexported fields */} NSERR_AP_SHAREDVLAN_BDG = Error{/* contains filtered or unexported fields */} NSERR_AP_SHAREDVLAN_TD = Error{/* contains filtered or unexported fields */} NSERR_AP_MCAST_PMAC = Error{/* contains filtered or unexported fields */} NSERR_AP_VMAC_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AP_VMAC_BUSY = Error{/* contains filtered or unexported fields */} NSERR_AP_XS_CONN_FAILED = Error{/* contains filtered or unexported fields */} NSERR_AP_XS_NO_VMAC = Error{/* contains filtered or unexported fields */} NSERR_AP_XS_VMAC_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_AP_XS_VMAC_EXHAUSTED = Error{/* contains filtered or unexported fields */} NSERR_AP_ARP_VLAN_NOT_SPECIFIED = Error{/* contains filtered or unexported fields */} NSERR_AP_SHAREDVLAN_PART_EXIST = Error{/* contains filtered or unexported fields */} NSERR_PARTITION_ID_EXIST = Error{/* contains filtered or unexported fields */} NSERR_SYNCNSVLAN_AP = Error{/* contains filtered or unexported fields */} NSERR_AP_NSVLAN = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_VLAN_DIFF_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_AP_VXLAN_TUNNEL_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_CONFIG_INPART = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_OTHER_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_VLAN_BIND = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_IP_BINDING_CURPART = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_BOUNDTO_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_DYNROUTING_PARTITION = Error{/* contains filtered or unexported fields */} NSERR_AP_SHAREDVLAN_VXLAN = Error{/* contains filtered or unexported fields */} NSERR_AP_VLAN_VXLAN_EXIST = Error{/* contains filtered or unexported fields */} NSERR_AP_STATIC_ARP_ND6_VXLAN_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AP_MEM_MIN_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_AP_BDGGRP_BINDING_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AP_NOT_LOCAL_ADMIN_PMAC = Error{/* contains filtered or unexported fields */} NSERR_AP_NOMEM = Error{/* contains filtered or unexported fields */} NSERR_AP_SHAREDVLAN_ROUTING_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_PBR_NEXTHOP_NOTDIRECT = Error{/* contains filtered or unexported fields */} NSERR_PBR_NOLOOPBACK = Error{/* contains filtered or unexported fields */} NSERR_PBRDELERROR = Error{/* contains filtered or unexported fields */} NSERR_PBR_IPPIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_PBR_PRIORITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_PBRMODCFGINFO = Error{/* contains filtered or unexported fields */} NSERR_PBR_NEXTHOP_REQD = Error{/* contains filtered or unexported fields */} NSERR_PBR_L2_CONFIG_INFO = Error{/* contains filtered or unexported fields */} NSERR_PBRMODCFG_L2_INFO = Error{/* contains filtered or unexported fields */} NSERR_PBR_NO_MONITOR_GATEWAY = Error{/* contains filtered or unexported fields */} NSERR_PBR_INVALID_IPORGATEWAY = Error{/* contains filtered or unexported fields */} NSERR_PBR_MAX_RULE_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_PBR_NEXTHOP_TUNNEL_REQD = Error{/* contains filtered or unexported fields */} NSERR_PBR_DENY_MSR = Error{/* contains filtered or unexported fields */} NSERR_ACL_MAC_MASK_INVALID = Error{/* contains filtered or unexported fields */} NSERR_PBR_IPSEC_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_PBR_REMOVED = Error{/* contains filtered or unexported fields */} NSERR_PBR_L2PARAM_GRE = Error{/* contains filtered or unexported fields */} NSERR_PBR_VXLAN = Error{/* contains filtered or unexported fields */} NSERR_PBR_TUNNELBOUNDTONETBRIDGE = Error{/* contains filtered or unexported fields */} NSERR_PBR_SETNEXTHOP_TUNNEL = Error{/* contains filtered or unexported fields */} NSERR_PBR6_IPPIP_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_PBR6_DELERROR = Error{/* contains filtered or unexported fields */} NSERR_PBR6_ADDERROR = Error{/* contains filtered or unexported fields */} NSERR_PBR6_PRIORITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_PBR6_ICMP_REQD = Error{/* contains filtered or unexported fields */} NSERR_PBR6_UNSPECADDR = Error{/* contains filtered or unexported fields */} NSERR_PBR6_MODCFGINFO = Error{/* contains filtered or unexported fields */} NSERR_PBR6_PREFIXLEN = Error{/* contains filtered or unexported fields */} NSERR_PBR6_SPECIFY_NEXTHOPVLAN = Error{/* contains filtered or unexported fields */} NSERR_PBR6_INVALID_GATEWAY = Error{/* contains filtered or unexported fields */} NSERR_PBR6_INVALID_NEXTHOP_VLAN = Error{/* contains filtered or unexported fields */} NSERR_PBR6_MAX_RULE_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_PCP_PROFILE_BOUND = Error{/* contains filtered or unexported fields */} NSERR_PCPPROFILE_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_LSNPCP_BINDING_EXIST = Error{/* contains filtered or unexported fields */} NSERR_PCPSERVER_NOT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_PCPSERVER_BIND_EXIST = Error{/* contains filtered or unexported fields */} NSERR_PCPSERVER_INVALID_IP = Error{/* contains filtered or unexported fields */} NSERR_PCP_LIFE_TIME = Error{/* contains filtered or unexported fields */} NSERR_PCPSERVER_LSNGROUP_TYPE_DIFF = Error{/* contains filtered or unexported fields */} NSERR_PI_LONGVSVRNAME = Error{/* contains filtered or unexported fields */} NSERR_PI_PRIORITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_PICON_GOTO_NOT_END = Error{/* contains filtered or unexported fields */} NSERR_INVAL_THRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_DEF_INVALID_UNBIND = Error{/* contains filtered or unexported fields */} NSERR_BAD_INIT_VALUE = Error{/* contains filtered or unexported fields */} NSERR_INIT_VALUE_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_INIT_VALUE_TRUNCATED = Error{/* contains filtered or unexported fields */} NSERR_BAD_ASSIGN_LHS = Error{/* contains filtered or unexported fields */} NSERR_BAD_OP_FOR_TYPE = Error{/* contains filtered or unexported fields */} NSERR_BAD_VAR_TYPE = Error{/* contains filtered or unexported fields */} NSERR_ASSIGNMENT_LOG_UNSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_UNDEF_EXCEPTION = Error{/* contains filtered or unexported fields */} NSERR_NO_VARIABLE_VALUE = Error{/* contains filtered or unexported fields */} NSERR_UNSUPPORTED_VARIABLE_USE = Error{/* contains filtered or unexported fields */} NSERR_BAD_KEY_TYPE = Error{/* contains filtered or unexported fields */} NSERR_BAD_SINGLETON_VAR = Error{/* contains filtered or unexported fields */} NSERR_BAD_MAP_VAR = Error{/* contains filtered or unexported fields */} NSERR_UNKNOWN_VARIABLE = Error{/* contains filtered or unexported fields */} NSERR_MAP_WITHOUT_KEY = Error{/* contains filtered or unexported fields */} NSERR_SINGLETON_WITH_KEY = Error{/* contains filtered or unexported fields */} NSERR_BAD_TEXT_MAX_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_BAD_MAP_TYPE_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_BAD_MAP_KEY_TYPE = Error{/* contains filtered or unexported fields */} NSERR_BAD_MAP_VALUE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_BAD_KEY_VALUE_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_BAD_MAP_SET_TYPE = Error{/* contains filtered or unexported fields */} NSERR_TRANSACTION_MAPS_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_TRANSACTION_EXPIRE_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_INVOKE_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_INVALPIEXPR = Error{/* contains filtered or unexported fields */} NSERR_INVALINTOP = Error{/* contains filtered or unexported fields */} NSERR_INVALCOMPARE = Error{/* contains filtered or unexported fields */} NSERR_INVALBOOLOP = Error{/* contains filtered or unexported fields */} NSERR_ARGNEG = Error{/* contains filtered or unexported fields */} NSERR_ARGEXCEED = Error{/* contains filtered or unexported fields */} NSERR_ARGZERO = Error{/* contains filtered or unexported fields */} NSERR_MAXHEADER = Error{/* contains filtered or unexported fields */} NSERR_INVALPICEXPR = Error{/* contains filtered or unexported fields */} NSERR_CEXPRLIMIT = Error{/* contains filtered or unexported fields */} NSERR_EXPRLIMIT = Error{/* contains filtered or unexported fields */} NSERR_SEXPRLIMIT = Error{/* contains filtered or unexported fields */} NSERR_INVALPISEXPR = Error{/* contains filtered or unexported fields */} NSERR_NOBIDI = Error{/* contains filtered or unexported fields */} NSERR_NOLAB = Error{/* contains filtered or unexported fields */} NSERR_INTERNAL_LABEL_RM = Error{/* contains filtered or unexported fields */} NSERR_POLICY_FLOWTYPE_NONE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_PRIORITY = Error{/* contains filtered or unexported fields */} NSERR_NUMERICEXPR = Error{/* contains filtered or unexported fields */} NSERR_BOOLEXPR = Error{/* contains filtered or unexported fields */} NSERR_NOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_POLICY_INUSE = Error{/* contains filtered or unexported fields */} NSERR_POLICY_SET_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_BIND = Error{/* contains filtered or unexported fields */} NSERR_USE_INVOKE_RESULT = Error{/* contains filtered or unexported fields */} NSERR_INVAL_EXPR_DATA_TYPE = Error{/* contains filtered or unexported fields */} NSERR_EXPR_CONST_ONLY = Error{/* contains filtered or unexported fields */} NSERR_ALT_EXPR_STRING_ONLY = Error{/* contains filtered or unexported fields */} NSERR_ACTION_DEF_SET_INVAL = Error{/* contains filtered or unexported fields */} NSERR_POLICY_DEF_SET_INVAL = Error{/* contains filtered or unexported fields */} NSERR_POLICY_LABEL_DEF_SET_INVAL = Error{/* contains filtered or unexported fields */} NSERR_INVAL_UNBIND = Error{/* contains filtered or unexported fields */} NSERR_REGEX_INVALID = Error{/* contains filtered or unexported fields */} NSERR_REGEX_BACKREF = Error{/* contains filtered or unexported fields */} NSERR_REGEX_RECURSIVE = Error{/* contains filtered or unexported fields */} NSERR_PIXL_EXPR_UNSAFE = Error{/* contains filtered or unexported fields */} NSERR_PI_ACTION_MAX_REF_REACHED = Error{/* contains filtered or unexported fields */} NSERR_PI_INVALID_UNSET = Error{/* contains filtered or unexported fields */} NSERR_EMPTY_STRING = Error{/* contains filtered or unexported fields */} NSERR_INVAL_BTW_ARGS = Error{/* contains filtered or unexported fields */} NSERR_INVAL_ARG_SPECIFIED = Error{/* contains filtered or unexported fields */} NSERR_INVAL_ARG_CSPL = Error{/* contains filtered or unexported fields */} NSERR_FLOWTYPE_NOT_APPLICABLE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_ARG_SPECIFIED_CS = Error{/* contains filtered or unexported fields */} NSERR_INVAL_GOTOEXPR_CS = Error{/* contains filtered or unexported fields */} NSERR_REBIND_FAILED = Error{/* contains filtered or unexported fields */} NSERR_SECOND_BIND = Error{/* contains filtered or unexported fields */} NSERR_NONHTTP_VS = Error{/* contains filtered or unexported fields */} NSERR_PI_LEX_FAILURE = Error{/* contains filtered or unexported fields */} NSERR_PI_INVALIDNAME = Error{/* contains filtered or unexported fields */} NSERR_PI_RST_CONN = Error{/* contains filtered or unexported fields */} NSERR_PI_EXPR_CSMSG = Error{/* contains filtered or unexported fields */} NSERR_INVAL_XPATH_EXPR = Error{/* contains filtered or unexported fields */} NSERR_XPATH_EXPR_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_TARGET_INVAL = Error{/* contains filtered or unexported fields */} NSERR_NON_RESP_HTTP_VS_LIST = Error{/* contains filtered or unexported fields */} NSERR_INVAL_VSERVER_BIND = Error{/* contains filtered or unexported fields */} NSERR_APP_FREED_NSB = Error{/* contains filtered or unexported fields */} NSERR_MULT_BIND_INVAL = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_POLICY_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_POLICY_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_MULT_UNBIND = Error{/* contains filtered or unexported fields */} NSERR_UNKNOWN_CERTKEY = Error{/* contains filtered or unexported fields */} NSERR_NO_RSA_PUBLIC_KEY = Error{/* contains filtered or unexported fields */} NSERR_NO_RSA_PRIVATE_KEY = Error{/* contains filtered or unexported fields */} NSERR_CERTKEY_NAME_TOO_LONG = Error{/* contains filtered or unexported fields */} NSERR_INVALID_UTF_8 = Error{/* contains filtered or unexported fields */} NSERR_UNRECOG_CHARSET = Error{/* contains filtered or unexported fields */} NSERR_INCOMPATIBLE_NAME_EXPR_CHANGE = Error{/* contains filtered or unexported fields */} NSERR_HEADER_EXPR_ONLY = Error{/* contains filtered or unexported fields */} NSERR_RW_NOT_SUPPORTED_VS = Error{/* contains filtered or unexported fields */} NSERR_INVALID_KEYVALUE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_RESOURCE_NAME = Error{/* contains filtered or unexported fields */} NSERR_INVALID_ACTION = Error{/* contains filtered or unexported fields */} NSERR_INVALID_ENUM_VALUE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_BINDPOINT = Error{/* contains filtered or unexported fields */} NSERR_NO_FIPS_FOR_POLICY_CRYPTO = Error{/* contains filtered or unexported fields */} NSERR_NO_CONFIGDB_DATA_SELECTED = Error{/* contains filtered or unexported fields */} NSERR_HEADER_NAME_LENGTH_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_UNSUPPORTED_CVPN_SEARCH = Error{/* contains filtered or unexported fields */} NSERR_INVALID_HEADER_NAME = Error{/* contains filtered or unexported fields */} NSERR_HEADER_NAME_TOO_LONG = Error{/* contains filtered or unexported fields */} NSERR_CSACTION_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_PI_EXPR_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_PI_INVALID_FUNCTION_NAME = Error{/* contains filtered or unexported fields */} NSERR_PI_FUNCTION_NAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_INVALID_UPDATE_NAME = Error{/* contains filtered or unexported fields */} NSERR_PI_INVALID_EXTENSION_NAME = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_FUNCTION_PROTOTYPE_CHANGED = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_FUNCTION_UPDATE_PROBLEM = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_COMPILE_FAILURE = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_LOAD_FAILURE = Error{/* contains filtered or unexported fields */} NSERR_PI_USED_FUNCTION_REMOVED = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_FUNCTION_MULTIPLE_DEFINITIONS = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_INVALID_FUNCTION_PROTOTYPE = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_MAX_FUNCTION_ARGUMENT = Error{/* contains filtered or unexported fields */} NSERR_BAD_EXTENSION_TRACE_NAME = Error{/* contains filtered or unexported fields */} NSERR_BAD_EXTENSION_TRACE_ARRAYS = Error{/* contains filtered or unexported fields */} NSERR_PI_INVALID_GLOBAL_BINDTYPE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_POLICY_GLOBAL_BINDING = Error{/* contains filtered or unexported fields */} NSERR_INVALID_PI_ANNOTATE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_PI_ANNOTATE_LOGINSCHEMA = Error{/* contains filtered or unexported fields */} NSERR_ANGLE_BRACKETS_IN_TAGNAME = Error{/* contains filtered or unexported fields */} NSERR_INVALID_ENCRYPTION_KEY_ARGUMENT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_HMAC_KEY_ARGUMENT = Error{/* contains filtered or unexported fields */} NSERR_ENCRYPTION_KEY_NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_HMAC_KEY_NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_WARN_SHORT_HMAC_KEY = Error{/* contains filtered or unexported fields */} NSERR_MULT_TYPE_UNBIND = Error{/* contains filtered or unexported fields */} NSERR_EMPTY_CERTKEY = Error{/* contains filtered or unexported fields */} NSERR_NON_SSL_HTTP_VS = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_HAS_GENERIC_MBLB_API_NOT_FUNCTION_API = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_HAS_FUNCTION_API_NOT_GENERIC_MBLB_API = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_INCORRECT_USER_PARAM_VALUE = Error{/* contains filtered or unexported fields */} NSERR_EXTENSION_USER_PROTOCOL_IN_USE = Error{/* contains filtered or unexported fields */} NSERR_USER_VSERVER_EXCEED_PARAM_NAME_VALUE_LENGTH = Error{/* contains filtered or unexported fields */} NSERR_USER_VSERVER_INVALID_DEFAULT_LB_PROTOCOL_TYPE = Error{/* contains filtered or unexported fields */} NSERR_USER_VSERVER_DIFFERENT_TRANSPORT_DEFAULT_LB_PROTOCOL_TYPE = Error{/* contains filtered or unexported fields */} NSERR_INTERIM_UPDATE_SUPPORT_IN_RADIUS_ONLY = Error{/* contains filtered or unexported fields */} NSERR_WARN_VAR_SET_INIT = Error{/* contains filtered or unexported fields */} NSERR_CI_UNSUPPORTED_VS = Error{/* contains filtered or unexported fields */} NSERR_CI_ICAP_FLOWTYPE_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_INVALID_POLICY_BINDING = Error{/* contains filtered or unexported fields */} NSERR_HTTP_REQ_USER_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_ASSIGN_CONTEXT_PCB_NOT_PRESENT = Error{/* contains filtered or unexported fields */} NSERR_SELFAUTH_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_RHS_TARGET_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_AAA_GRP_AS_XML_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_REDIRECT_URL_SAML = Error{/* contains filtered or unexported fields */} NSERR_CI_IPS_FLOWTYPE_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SAML_ACT_CONF_ISSUE = Error{/* contains filtered or unexported fields */} NSERR_PATFILE_REF_EXIST = Error{/* contains filtered or unexported fields */} NSERR_PATSET_PATSETFILE_REFERENCE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_LB_VSERVER_BIND = Error{/* contains filtered or unexported fields */} NSERR_INVALID_UNBINDPOINT = Error{/* contains filtered or unexported fields */} NSERR_INVALIDPOL = Error{/* contains filtered or unexported fields */} NSERR_NOPOL = Error{/* contains filtered or unexported fields */} NSERR_RULEURL = Error{/* contains filtered or unexported fields */} NSERR_DELMC = Error{/* contains filtered or unexported fields */} NSERR_ACP = Error{/* contains filtered or unexported fields */} NSERR_ACS = Error{/* contains filtered or unexported fields */} NSERR_NOSET_CEXP = Error{/* contains filtered or unexported fields */} NSERR_CEXP_DEPTH = Error{/* contains filtered or unexported fields */} NSERR_NOVPNAPP = Error{/* contains filtered or unexported fields */} NSERR_NOSET_CSE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_POLNAME = Error{/* contains filtered or unexported fields */} NSERR_UNBIND_INVALIDPOL = Error{/* contains filtered or unexported fields */} NSERR_EXCEED_MAX_POL_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_INTERNAL_PI_ERROR = Error{/* contains filtered or unexported fields */} NSERR_NEG_POL_VIOL1 = Error{/* contains filtered or unexported fields */} NSERR_NEG_POL_VIOL2 = Error{/* contains filtered or unexported fields */} NSERR_NEG_POL_VIOL3 = Error{/* contains filtered or unexported fields */} NSERR_SAML_POL_VIOL1 = Error{/* contains filtered or unexported fields */} NSERR_SAML_POL_VIOL2 = Error{/* contains filtered or unexported fields */} NSERR_SAML_POL_VIOL3 = Error{/* contains filtered or unexported fields */} NSERR_SAML_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_LDAP_POL_VIOL1 = Error{/* contains filtered or unexported fields */} NSERR_LDAP_POL_VIOL2 = Error{/* contains filtered or unexported fields */} NSERR_NON_SELECTOR_POLICY = Error{/* contains filtered or unexported fields */} NSERR_BAD_SELECTOR = Error{/* contains filtered or unexported fields */} NSERR_BAD_CONTENTGROUP = Error{/* contains filtered or unexported fields */} NSERR_SQL_POL_GLOBAL_BINDPOINT = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_INVALID_ACP = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_CLTRATE = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_DOSTHRESH_NREQ = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_DOSTHRESH_REQ = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_ACS_REQ = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_ACP_REQ = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_VSVR_CONFIG_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_SVC_CONFIG_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_UNSUPPORTED_PROTO = Error{/* contains filtered or unexported fields */} NSERR_APPQOE_UNSUPPORTED_VSVR = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_POLICY_INVALID_ARG = Error{/* contains filtered or unexported fields */} NSERR_AUTHN_ADVANCE_INVALID_ARG = Error{/* contains filtered or unexported fields */} NSERR_RENAME_NOT_PERMITTED = Error{/* contains filtered or unexported fields */} NSERR_PI_AUTHZPLCY_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SAML_2FACTOR_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_AUDIT_SYSADVPLCY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_AUDIT_SYSCLASSICPLCY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_TMSESSPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_TMSESSPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_AUDIT_NSADVPLCY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_AUDIT_NSCLASSICPLCY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_AUTHNPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_AUTHNPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NEXTFACTOR_ATTRIBMAP_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_VPNTRAFFICPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_VPNTRAFFICPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_AUTHPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_AUTHPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_VPNSESSPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_VPNSESSPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_INVALID_AUTHN_SET_ACTION_SUBTYPE = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_AUTH_POLICY_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_PREAUTH_POLICY_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_POLICY_CONTAIN_CSEC = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_AUDITLOGPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_AUDITLOGPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_MAX_AUDITLOGPOL_REACHED = Error{/* contains filtered or unexported fields */} NSERR_PI_ADVANCED_POLICY_ALREADY_ADDED = Error{/* contains filtered or unexported fields */} NSERR_PI_CLASSIC_POLICY_ALREADY_ADDED = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_CLIENT_SECURITY_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_CLASSIC_VPNURLPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVANCED_VPNURLPOL_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_PORTALTHEME_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_METADATA_REFRESH_MAX_INTERVAL = Error{/* contains filtered or unexported fields */} NSERR_EPA_V2_CONFIG_FAILED = Error{/* contains filtered or unexported fields */} NSERR_POOLED_LIC_SET_CAP = Error{/* contains filtered or unexported fields */} NSERR_POOLED_LIC_LPED_COMM = Error{/* contains filtered or unexported fields */} NSERR_POOLED_LIC_SERVER_CONN = Error{/* contains filtered or unexported fields */} NSERR_POOLED_LIC_BAD_STATE = Error{/* contains filtered or unexported fields */} NSERR_PQ_BINDVIP = Error{/* contains filtered or unexported fields */} NSERR_PQ_INVALPRIO = Error{/* contains filtered or unexported fields */} NSERR_PQ_2BIGRULE = Error{/* contains filtered or unexported fields */} NSERR_PQ_INVALWT = Error{/* contains filtered or unexported fields */} NSERR_PQ_POLEXIST = Error{/* contains filtered or unexported fields */} NSERR_PQ_NOPOL = Error{/* contains filtered or unexported fields */} NSERR_PQ_2MANYREF = Error{/* contains filtered or unexported fields */} NSERR_PQ_NOLBVIP = Error{/* contains filtered or unexported fields */} NSERR_PQ_PHSCONFIG = Error{/* contains filtered or unexported fields */} NSERR_PQ_NOBIND = Error{/* contains filtered or unexported fields */} NSERR_QOS_64BIT_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_QOS_FEATURE_LOCKED = Error{/* contains filtered or unexported fields */} NSERR_QUIC_INVALID_SERVER_ID = Error{/* contains filtered or unexported fields */} NSERR_QUIC_INVALID_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_TECHSPRT_BUNDLE_MISSING = Error{/* contains filtered or unexported fields */} NSERR_TECHSPRT_REMOVE = Error{/* contains filtered or unexported fields */} NSERR_RESPOINT_MISSING = Error{/* contains filtered or unexported fields */} NSERR_RESPOINT_NAMEMISSING = Error{/* contains filtered or unexported fields */} NSERR_RESPOINT_MAXLIMIT = Error{/* contains filtered or unexported fields */} NSERR_CREATE_RESPOINT = Error{/* contains filtered or unexported fields */} NSERR_UPDATE_MAPFILE = Error{/* contains filtered or unexported fields */} NSERR_RW_ACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_RW_UNDEFACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_ACTFLOWMISMATCH = Error{/* contains filtered or unexported fields */} NSERR_RONLY_TAR_EXPR = Error{/* contains filtered or unexported fields */} NSERR_DATASET_BINDFAIL = Error{/* contains filtered or unexported fields */} NSERR_DATASET_UNBINDFAIL = Error{/* contains filtered or unexported fields */} NSERR_DATASET_NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_RSP_POLICY_FLOWTYPE_REQ = Error{/* contains filtered or unexported fields */} NSERR_TAR_FLOWTYPE_NRES = Error{/* contains filtered or unexported fields */} NSERR_RSP_CONFIG_LOCK = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_MUST_BE_NOOP = Error{/* contains filtered or unexported fields */} NSERR_PATSET_INVALID_REGEX = Error{/* contains filtered or unexported fields */} NSERR_DATASET_BINDFAIL_DUP_INDEX = Error{/* contains filtered or unexported fields */} NSERR_PATSET_BINDFAIL_PATLEN_LT_WU_MINLEN = Error{/* contains filtered or unexported fields */} NSERR_TARGET_NOT_ALLOWED_IN_RULE = Error{/* contains filtered or unexported fields */} NSERR_RW_TARGET_NOT_ALLOWED_IN_STRBUILDER = Error{/* contains filtered or unexported fields */} NSERR_PIT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_INVAL_INVOKEPOINT = Error{/* contains filtered or unexported fields */} NSERR_PIT_MAX_PACKET = Error{/* contains filtered or unexported fields */} NSERR_REFINE_SEARCH_INVALID = Error{/* contains filtered or unexported fields */} NSERR_EXTEND_INVALID = Error{/* contains filtered or unexported fields */} NSERR_NON_EXTEND_EXPR = Error{/* contains filtered or unexported fields */} NSERR_EXTEND_INVAL_PIRL = Error{/* contains filtered or unexported fields */} NSERR_INVAL_TAR_EXPR = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SEARCH_ARGS = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_MUST_BE_RESET_DROP = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SEARCH_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SEARCH_XPATH_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SEARCH_PATSET_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SEARCH_REGEX_SYNTAX = Error{/* contains filtered or unexported fields */} NSERR_RW_REQ_BODY_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RENAME_NOTSUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_ENTITY_REMOVAL_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_PI_ENTITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_INCOMPATIBLE_CALLOUT_CHANGE = Error{/* contains filtered or unexported fields */} NSERR_STRINGMAP_NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_HTTP_PROFILE_ACTION_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESPONDWITH = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_MUST_BE_DROP_NOOP = Error{/* contains filtered or unexported fields */} NSERR_RSP_UNDEF_ACT_MUST_BE_DROP_NOOP = Error{/* contains filtered or unexported fields */} NSERR_INCOMPATIBLE_UNDEF = Error{/* contains filtered or unexported fields */} NSERR_PIT_ACTION_EVAL_INVAL = Error{/* contains filtered or unexported fields */} NSERR_STRLIT_MAXLEN = Error{/* contains filtered or unexported fields */} NSERR_DATASET_INVALID = Error{/* contains filtered or unexported fields */} NSERR_DATASET_BINDFAIL_DUP_PATTERN = Error{/* contains filtered or unexported fields */} NSERR_TIMER_ACT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_TIMER_ENTITY_INUSE = Error{/* contains filtered or unexported fields */} NSERR_TIMER_ENTITY_GLOBAL_BINDPOINT_INVAL = Error{/* contains filtered or unexported fields */} NSERR_PATSET_BUILTIN = Error{/* contains filtered or unexported fields */} NSERR_CROSS_MAX_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IPV4_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IPV4_MAX_FIELD_VALUE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_IPV6_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_NUMERIC_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_VALID_PREFIX_NUMERIC_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_DATASET_PATTERN_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_PI_CIRCULAR_REFERENCE_DETECTED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_ULONG_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_MAC_ADDRESS_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_INVALID_DOUBLE_FORMAT = Error{/* contains filtered or unexported fields */} NSERR_CROSS_ULONG_MAX_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_INVAL_AVP_INSERT_EXPR = Error{/* contains filtered or unexported fields */} NSERR_INVAL_AVP_LOOKUP_EXPR = Error{/* contains filtered or unexported fields */} NSERR_INVAL_DELETE_AVP_EXPR = Error{/* contains filtered or unexported fields */} NSERR_INVAL_NEW_MESSAGE_EXPR = Error{/* contains filtered or unexported fields */} NSERR_INVAL_DIAMETER_REDIRECT_ACTION = Error{/* contains filtered or unexported fields */} NSERR_INVAL_DIAMETER_ACTION = Error{/* contains filtered or unexported fields */} NSERR_PIT_CONNECTION_ERROR = Error{/* contains filtered or unexported fields */} NSERR_INVAL_SEARCH_AVP = Error{/* contains filtered or unexported fields */} NSERR_DATASET_PATTERN_LIMIT_OVERFLOW = Error{/* contains filtered or unexported fields */} NSERR_INVAL_RADIUS_AVPCODE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_RADIUS_RESPONSE = Error{/* contains filtered or unexported fields */} NSERR_RESP_ACT_REASON_PHRASE_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_RESP_ACT_RESPONSE_CODE_REASON_PHRASE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RESP_ACT_INVALID_REDIRECT_CODE = Error{/* contains filtered or unexported fields */} NSERR_RESP_ACT_INVALID_HTTP_STATUS_CODE = Error{/* contains filtered or unexported fields */} NSERR_RESP_ACT_EMPTY_REASON_PHRASE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESPONDWITH_RESET = Error{/* contains filtered or unexported fields */} NSERR_MAX_STREAMING_PATTERN_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_RESP_UPDATE_HTMLPAGE_NOT_REFERENCED = Error{/* contains filtered or unexported fields */} NSERR_PATSET_STREAMING_BINDFAIL_PATLEN_LT_WU_MINLEN = Error{/* contains filtered or unexported fields */} NSERR_DATASET_RANGE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_DATASET_WARN_SUBNET_ADDR = Error{/* contains filtered or unexported fields */} NSERR_PATSET_CONFIG_CHANGED = Error{/* contains filtered or unexported fields */} NSERR_RSP_NOOP_ACTION_TYPE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_RSP_ACT_MUST_BE_DROP_NOOP_RESET = Error{/* contains filtered or unexported fields */} NSERR_RNAT_NAME_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_VLAN_IPV6_LL_N_ALLOW = Error{/* contains filtered or unexported fields */} NSERR_VLAN_INTF_BOUND_NSVLAN = Error{/* contains filtered or unexported fields */} NSERR_VLAN_INVALID = Error{/* contains filtered or unexported fields */} NSERR_SYNC_VLAN_IPBOUND = Error{/* contains filtered or unexported fields */} NSERR_VLAN_SUBNET_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_UNABLE_GET_VLAN_IP = Error{/* contains filtered or unexported fields */} NSERR_IP_VLAN_BOUND = Error{/* contains filtered or unexported fields */} NSERR_VLAN_UNABLE_ADD = Error{/* contains filtered or unexported fields */} NSERR_DEFVLAN = Error{/* contains filtered or unexported fields */} NSERR_IPV6_ROUTING_BRIDGEGRP = Error{/* contains filtered or unexported fields */} NSERR_VLAN_SDXMGMTVLAN_CLUSTER = Error{/* contains filtered or unexported fields */} NSERR_ACL_INUSE_RNAT = Error{/* contains filtered or unexported fields */} NSERR_RNAT_CM_TCPPROXY = Error{/* contains filtered or unexported fields */} NSERR_RNAT_DYN_PERM_RT = Error{/* contains filtered or unexported fields */} NSERR_RNAT_SRCIPPERSISTENCY_NOTSUPCLU = Error{/* contains filtered or unexported fields */} NSERR_INVALTHRESHOLD = Error{/* contains filtered or unexported fields */} NSERR_WRONGTHRESHOLDS = Error{/* contains filtered or unexported fields */} NSERR_INVALID_SRCIP = Error{/* contains filtered or unexported fields */} NSERR_THRESHOLD_UNSETTABLE = Error{/* contains filtered or unexported fields */} NSERR_TIME_UNSETTABLE = Error{/* contains filtered or unexported fields */} NSERR_WRONG_LOW_THRESHOLDS = Error{/* contains filtered or unexported fields */} NSERR_NOSNMPUSER = Error{/* contains filtered or unexported fields */} NSERR_WRONG_SNMPVERSION = Error{/* contains filtered or unexported fields */} NSERR_V3TRAP_COMMUNITY = Error{/* contains filtered or unexported fields */} NSERR_IPINUSE = Error{/* contains filtered or unexported fields */} NSERR_DEFAULTONLY = Error{/* contains filtered or unexported fields */} NSERR_OWNERNODE = Error{/* contains filtered or unexported fields */} NSERR_FIPS_SNMP = Error{/* contains filtered or unexported fields */} NSERR_NODECNT_EXCEED = Error{/* contains filtered or unexported fields */} NSERR_INVAL_VAL_IN_DB = Error{/* contains filtered or unexported fields */} NSERR_NODE_IDX_EXCEED = Error{/* contains filtered or unexported fields */} NSERR_INVALID_NODE = Error{/* contains filtered or unexported fields */} NSERR_INVALID_VSVR = Error{/* contains filtered or unexported fields */} NSERR_VSVR_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_VSVR_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NOT_IN_SAME_NG = Error{/* contains filtered or unexported fields */} NSERR_NG_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_NO_NODES_OR_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NO_NODES_OR_UNBOUND = Error{/* contains filtered or unexported fields */} NSERR_DEPENDENCIES_EXCEED = Error{/* contains filtered or unexported fields */} NSERR_VSVR_NOT_BOUND_OR_BOUND_TO_DIFFERENT = Error{/* contains filtered or unexported fields */} NSERR_HAVE_DEPENDENCIES = Error{/* contains filtered or unexported fields */} NSERR_NG_CMDS_NOT_SUPPORTED_IN_STANDALONE = Error{/* contains filtered or unexported fields */} NSERR_BIND_VS_FAILS_IF_NO_NODES_AND_STRICT_OR_STICKY = Error{/* contains filtered or unexported fields */} NSERR_UNBIND_LASTNODE_FAILS_IF_BOUND_ENTITIES_AND_STRICT = Error{/* contains filtered or unexported fields */} NSERR_SET_STRICT_FAILS_IF_NO_NODES_AND_BOUND_ENTITIES = Error{/* contains filtered or unexported fields */} NSERR_RM_FAILS_IF_BOUND_ENTITIES = Error{/* contains filtered or unexported fields */} NSERR_RM_NODE_FAILS_IF_BOUND_ENTITIES = Error{/* contains filtered or unexported fields */} NSERR_RM_CLUSTER_FAILS_IF_BOUND_ENTITIES = Error{/* contains filtered or unexported fields */} NSERR_BIND_WILDCARDVIP_FAILS = Error{/* contains filtered or unexported fields */} NSERR_SQL_QUERY_TRUNCATED = Error{/* contains filtered or unexported fields */} NSERR_IDENT_ALREADY_BOUND = Error{/* contains filtered or unexported fields */} NSERR_IDENT_NOT_BOUND_OR_BOUND_TO_DIFFERENT = Error{/* contains filtered or unexported fields */} NSERR_IDENT_BOUND_TO_NG = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NG_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_GSLB_SITE_TYPE_NOT_LOCAL = Error{/* contains filtered or unexported fields */} NSERR_NG_NOGSLB = Error{/* contains filtered or unexported fields */} NSERR_SERVICE_BOUND_TO_NG = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NG_NODE_COUNT = Error{/* contains filtered or unexported fields */} NSERR_GSLB_NG = Error{/* contains filtered or unexported fields */} NSERR_VPN_BOUND_TO_NG = Error{/* contains filtered or unexported fields */} NSERR_VPN_BOUND_TO_OTHER_NG = Error{/* contains filtered or unexported fields */} NSERR_VPN_BOUND_TO_NG1 = Error{/* contains filtered or unexported fields */} NSERR_UNBIND_LASTNODE_FAILS_IF_VPNVSERVER_BOUND = Error{/* contains filtered or unexported fields */} NSERR_BIND_NODE_FAILS_IF_STICKY = Error{/* contains filtered or unexported fields */} NSERR_UNBIND_LASTNODE_FAILS_IF_BOUND_ENTITIES_AND_STICKY = Error{/* contains filtered or unexported fields */} NSERR_SET_STRICT_FAILS_IF_STICKY = Error{/* contains filtered or unexported fields */} NSERR_25GSPEEDRESTRICT = Error{/* contains filtered or unexported fields */} NSERR_NG_BIND_ENTITY_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_NG_SET_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NODE_ALREADY_BOUND_TO_STATENG = Error{/* contains filtered or unexported fields */} NSERR_NODE_BOUND_TO_STATENG = Error{/* contains filtered or unexported fields */} NSERR_NG_STRICT_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_NO_TRUE_POLICY = Error{/* contains filtered or unexported fields */} NSERR_BRIDGEAGE_DEPR = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_PKEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERTTYPE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_REFEXT = Error{/* contains filtered or unexported fields */} NSERR_SSL_BIND = Error{/* contains filtered or unexported fields */} NSERR_SSL_LINK = Error{/* contains filtered or unexported fields */} NSERR_SSL_NEED_SSLPROTO = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOLINK = Error{/* contains filtered or unexported fields */} NSERR_SSL_BINDOR = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOSVRCERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_ISSUBMIS = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRL = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCRL = Error{/* contains filtered or unexported fields */} NSERR_SSL_DHCOUNT = Error{/* contains filtered or unexported fields */} NSERR_SSL_SESSTO = Error{/* contains filtered or unexported fields */} NSERR_SSL_ERSACOUNT = Error{/* contains filtered or unexported fields */} NSERR_SSL_DH_SIZE = Error{/* contains filtered or unexported fields */} NSERR_DHPATH = Error{/* contains filtered or unexported fields */} NSERR_CERTHEADER = Error{/* contains filtered or unexported fields */} NSERR_SESSHEADER = Error{/* contains filtered or unexported fields */} NSERR_CIPHER_PERM = Error{/* contains filtered or unexported fields */} NSERR_SSL_ERSADISABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_DHDISABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_SESSDISABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PKEY_SIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOT_APPLICABLE = Error{/* contains filtered or unexported fields */} NSERR_CERTDNHEADER = Error{/* contains filtered or unexported fields */} NSERR_CERTISSUERHEADER = Error{/* contains filtered or unexported fields */} NSERR_CIPHERHEADER = Error{/* contains filtered or unexported fields */} NSERR_SSL_INTERNALERR = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCACERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_REFRESHDIS = Error{/* contains filtered or unexported fields */} NSERR_SSL_SVRPORTNEEDED = Error{/* contains filtered or unexported fields */} NSERR_SSL_BASEOBJNEEDED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CIPHER_REDIRECT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NODSA = Error{/* contains filtered or unexported fields */} NSERR_SSL_FIPSREFEXT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOFIPSKEY = Error{/* contains filtered or unexported fields */} NSERR_NOFIPSCARD = Error{/* contains filtered or unexported fields */} NSERR_SDXNOFIPSCARD = Error{/* contains filtered or unexported fields */} NSERR_FIPSCARDNOTCONF = Error{/* contains filtered or unexported fields */} NSERR_SSL_SSLV2_REDIRECT = Error{/* contains filtered or unexported fields */} NSERR_SSL_MODSIZE64 = Error{/* contains filtered or unexported fields */} NSERR_SSL_NONFIPSKEY = Error{/* contains filtered or unexported fields */} NSERR_NFIPS_FIPS_UPD = Error{/* contains filtered or unexported fields */} NSERR_FIPS_NFIPS_UPD = Error{/* contains filtered or unexported fields */} NSERR_SSL_ISSUER_NOTIN_GLBCERTLIST = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRLSIGCHECK_FAIL = Error{/* contains filtered or unexported fields */} NSERR_SSL_PORTREWRITE = Error{/* contains filtered or unexported fields */} NSERR_SSL_SSLV2_RENEG_CLIENT_CERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_BRKLINK = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_NOT_YET_VALID = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_EXPIRED = Error{/* contains filtered or unexported fields */} NSERR_SSL_EXPIRED_BRKLINK = Error{/* contains filtered or unexported fields */} NSERR_SSL_NYVALID_BRKLINK = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_RESPCERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_SIGNCERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_SESS_TKT = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_INVALID_AIA = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_AIA_LEN_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SSL_SSL3_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_BOUNDTO_SSLACTION = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALID_SESS_TKT_DATA = Error{/* contains filtered or unexported fields */} NSERR_SSL_SAME_VS_IN_FORWARD = Error{/* contains filtered or unexported fields */} NSERR_NAME_ALPHANUM_DASH_DOT = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_SSLI_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CTX_SSLI_PROFILE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_SSLI_CLUSTER_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFAULT_PROFILE_SSLI_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_BOUND_TO_AAA_FEATURE = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_BOUND_TO_ADFSPROXY_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_LINK_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SSL_DTLS12_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_ERR_HTTPS_ONLY = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_SSLI_ADMIN_PARTITION_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SSL_FIPSCARDLOCKED = Error{/* contains filtered or unexported fields */} NSERR_SSL_DOMINCOMPAT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOMTHDCHANGE = Error{/* contains filtered or unexported fields */} NSERR_SSL_URLSRVRNEEDED = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALID_URL = Error{/* contains filtered or unexported fields */} NSERR_SSL_MIXPARAMS = Error{/* contains filtered or unexported fields */} NSERR_SSL_PKEY_MINSIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_SYNCINPROGRESS = Error{/* contains filtered or unexported fields */} NSERR_SSL_SYNCFAILED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CIPHGRP_REFCNT = Error{/* contains filtered or unexported fields */} NSERR_SSL_CVM_NODSA = Error{/* contains filtered or unexported fields */} NSERR_CERTHASHHEADER = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRLINREFRESH = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRLMEM_EXCEEDS = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRLINDELETION = Error{/* contains filtered or unexported fields */} NSERR_SSL_INDELETE_NOREFRESH = Error{/* contains filtered or unexported fields */} NSERR_SSL_INREFRESH_NODELETE = Error{/* contains filtered or unexported fields */} NSERR_NOMIX = Error{/* contains filtered or unexported fields */} NSERR_NOPOLICY_NONTRSVC = Error{/* contains filtered or unexported fields */} NSERR_SSL_SSLPOL_BIND_CONST = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_USABLE_CIPHERS = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_NOT_CA = Error{/* contains filtered or unexported fields */} NSERR_SSL_CACERT_NO_CRLSIGN = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRL_EXPIRED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRL_NOTYET_VALID = Error{/* contains filtered or unexported fields */} NSERR_SSL_PARSING_DELTA_CRL_EXTN = Error{/* contains filtered or unexported fields */} NSERR_SSL_DELTA_CRL_MISSING_BASE_CRL = Error{/* contains filtered or unexported fields */} NSERR_NOFIPSCIPHER = Error{/* contains filtered or unexported fields */} NSERR_NOFIPSCIPHERGRP = Error{/* contains filtered or unexported fields */} NSERR_NONFIPSCIPHERTOGRP = Error{/* contains filtered or unexported fields */} NSERR_NONFIPSALIASTOGRP = Error{/* contains filtered or unexported fields */} NSERR_NONFIPSGROUPTOGRP = Error{/* contains filtered or unexported fields */} NSERR_SSL_IMPORT_FIPSKEY_NAME_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_PKEY_SIZE_CA = Error{/* contains filtered or unexported fields */} NSERR_SSL_CRL_PORT_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_PKEY_SIZE_VPX = Error{/* contains filtered or unexported fields */} NSERR_SSL_DH_SIZE_VPX = Error{/* contains filtered or unexported fields */} NSERR_NOENT_CIPHER = Error{/* contains filtered or unexported fields */} NSERR_FIPSFWWRONGMAJOR = Error{/* contains filtered or unexported fields */} NSERR_FIPSFWWRONGMINOR = Error{/* contains filtered or unexported fields */} NSERR_FIPSFWUPDATED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PENDING_CMDS = Error{/* contains filtered or unexported fields */} NSERR_FIPSFWUPDATEDOREBOOT = Error{/* contains filtered or unexported fields */} NSERR_SSL_SNI_NOTENABLE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_CN = Error{/* contains filtered or unexported fields */} NSERR_SSL_DUP_SNICERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_SNI_NOTVALID_SERV = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOT_SUPPORTED_ON_PLATFORM = Error{/* contains filtered or unexported fields */} NSERR_OCSP_REFERENCES = Error{/* contains filtered or unexported fields */} NSERR_OCSP_SIGNER_NOKEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_OCSP_TOO_MANY_RESPONDERS = Error{/* contains filtered or unexported fields */} NSERR_OCSP_NO_DNS_SERVER_CONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_SSL_DUP_SNICERT_BRKLINK = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_CN_BRLLINK = Error{/* contains filtered or unexported fields */} NSERR_NGFIPSRESETREBOOT = Error{/* contains filtered or unexported fields */} NSERR_NGFIPSINITREBOOT = Error{/* contains filtered or unexported fields */} NSERR_FIPSCMDTIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_SSL_SIMTIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NGFIPS_QFULL = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOMEM_VSVRSRVLISTNODE = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERTKEY_SIZE64 = Error{/* contains filtered or unexported fields */} NSERR_SNI_ATK = Error{/* contains filtered or unexported fields */} NSERR_SNI_NOHOSTHDR = Error{/* contains filtered or unexported fields */} NSERR_CRL_SHMEM_ALLOC_FAIL = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOT_CTL_POL = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOT_DATA_POL = Error{/* contains filtered or unexported fields */} NSERR_SSL_TYPE_REQD = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERT_MISSING_PARAM = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOMEM_CERTKEY_OCSPRESP_LISTNODE = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_DUPLICATE = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_IC_FILE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_SCERT_MISSING = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_CERT_MISSING = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_PARSE_ERR = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_MAX_CERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_MAX_KEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_BUNDLE_IC_FILE_CREATE_FAILED = Error{/* contains filtered or unexported fields */} NSERR_SSL_SKIPCA_OPNOTPER = Error{/* contains filtered or unexported fields */} NSERR_SSL_ISSUER_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_SET_POLICY_ACTION_TYPE = Error{/* contains filtered or unexported fields */} NSERR_SSL_DTLS_NOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_SSL_INVALID_CN_NAME = Error{/* contains filtered or unexported fields */} NSERR_SSL_ECC_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_PROTOCOL_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_SSL2_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_DTLS_PROFILE_REFEXT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_ECC_CURVES = Error{/* contains filtered or unexported fields */} NSERR_CRYPTODEV_MAX_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_ATTACHED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_USED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_NOT_VAILD_PARAM = Error{/* contains filtered or unexported fields */} NSERR_IMPORT_SSL_INVALID_DHFILE_ERROR_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_IMPORT_SSL_INVALID_CRLFILE_ERROR_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_IMPORT_SSL_INVALID_CERTFILE_ERROR_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_IMPORT_SSL_INVALID_KEYFILE_ERROR_OBJECT = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_FILEPATH = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_FILEOPEN = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_FILEIO = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_FSTAT = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_AUTH_FILEPATH = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_AUTH_FILEOPEN = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_AUTH_FILEIO = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_AUTH_FSTAT = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_BEGIN_ERROR = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_UPDATE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_END_ERROR = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_STATE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW_INVALID_CHUNK_TYPE = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_WITH_CK_HSMKEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSMKEY_DEFLOCATION = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSMKEY_IDENT_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSMKEY_DTLS = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSMKEY_BUNDLE = Error{/* contains filtered or unexported fields */} NSERR_CPE_EXPRESSION_PARTITION_INVALID = Error{/* contains filtered or unexported fields */} NSERR_AP_INVALID_EXPRESSION = Error{/* contains filtered or unexported fields */} NSERR_SSL_DH_BUSY = Error{/* contains filtered or unexported fields */} NSERR_FIPSFW22_MINKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_MAXSAN = Error{/* contains filtered or unexported fields */} NSERR_SSL_BADSNICERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_AESGCM_SHA2_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCIPHERGRP = Error{/* contains filtered or unexported fields */} NSERR_SSL_SVCVSR_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEF_DTLS_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOSSLV2REDIRECTOPT_ON_FIPS = Error{/* contains filtered or unexported fields */} NSERR_SSL_OP_ON_NONFIPS_NOT_PERM = Error{/* contains filtered or unexported fields */} NSERR_SSL_LOAD_KEYS = Error{/* contains filtered or unexported fields */} NSERR_SSL_PASSWORD_DECODE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCERT_FILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFAULT_CERT_DEL = Error{/* contains filtered or unexported fields */} NSERR_SSL_FIPS_CERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_CERTKEY_HSM = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFAULT_CERT_BIND = Error{/* contains filtered or unexported fields */} NSERR_SSL_CMD_DEPRECATED = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_LIC = Error{/* contains filtered or unexported fields */} NSERR_SSL_DTLS_NA = Error{/* contains filtered or unexported fields */} NSERR_SSL_ECC_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_FE = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_BE = Error{/* contains filtered or unexported fields */} NSERR_SSL_OP_ON_FIPS_WOFW22_NOT_PERM = Error{/* contains filtered or unexported fields */} NSERR_SSL_NONSSL_VSERVER = Error{/* contains filtered or unexported fields */} NSERR_SSL_UDP_DTLS = Error{/* contains filtered or unexported fields */} NSERR_SSL_TLS11_12_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_HSM_KEY_SVC_SVCGRP = Error{/* contains filtered or unexported fields */} NSERR_DTLS_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_NO_USABLE_CIPHERS = Error{/* contains filtered or unexported fields */} NSERR_SSL_CIPHGRP_NO_USABLE_CIPHERS = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_UNSET_DEFAULT = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFAULT_PROFILE_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_DEFAULT_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_DEFAULT_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CIPHER_EXIST_HIGHER_PRI = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFAULT_PROFILE_PERM = Error{/* contains filtered or unexported fields */} NSERR_SSL_DH_SIZE_16B = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCIPHERREDIRECTOPT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCLIENTAUTHOPT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOSSLV2REDIRECTOPT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NONONFIPSCIPHERSOPT = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOCIPHERREDIRECTOPT_ON_FIPS = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOSSL2PROTOOPT_ON_FIPS = Error{/* contains filtered or unexported fields */} NSERR_SSL_CANNOT_BIND_VSERVER = Error{/* contains filtered or unexported fields */} NSERR_SSL_SERVERAUTHNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_SSL_SERVERAUTH_SNI_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CN_REQUIRED = Error{/* contains filtered or unexported fields */} NSERR_SSL_DTLSPROFNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_SSL_PUSHENCNOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_N3FIPS_MINKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_N3FIPS_MAXKEYSIZE = Error{/* contains filtered or unexported fields */} NSERR_N3FIPS_MINEXPSIZE = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSPNAMENOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_NOT_VALID_PARAM = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOOCSPSTAP = Error{/* contains filtered or unexported fields */} NSERR_SSL_CREATE_AIA_OCSP_RESP_FAILED = Error{/* contains filtered or unexported fields */} NSERR_N3FIPDEXUPGRADE = Error{/* contains filtered or unexported fields */} NSERR_N3FIP_MAXKEYNUM = Error{/* contains filtered or unexported fields */} NSERR_FIPSCARDCONFIGED = Error{/* contains filtered or unexported fields */} NSERR_N3FIPSCHANGELIC = Error{/* contains filtered or unexported fields */} NSERR_SSL_OCSP_SET_NOT_ALLOWED_ON_AIA = Error{/* contains filtered or unexported fields */} NSERR_SSL_TLS13_SUPPORT = Error{/* contains filtered or unexported fields */} NSERR_SSL_CLEARTEXTPORT_WARNING = Error{/* contains filtered or unexported fields */} NSERR_SSL_DH_SIZE_2048 = Error{/* contains filtered or unexported fields */} NSERR_SSL_DEFAULT_CERT_NAME = Error{/* contains filtered or unexported fields */} NSERR_SSL_VS_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SSL_CACERTGROUP_EXIST = Error{/* contains filtered or unexported fields */} NSERR_SSL_CACERTGROUP_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_SSL_CACERTGROUP_REF = Error{/* contains filtered or unexported fields */} NSERR_SSL_NOT_CACERT = Error{/* contains filtered or unexported fields */} NSERR_SSL_GROUP_HAS_CACERTKEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_GROUP_HAS_NO_CACERTKEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_SNICERT_INVALID = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_CERTKEY_FILE = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_PRIVATE_KEY = Error{/* contains filtered or unexported fields */} NSERR_SSL_NO_DTLS_PROTOCOL_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_SSL_PROFILE_QUIC_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_SSL_DH_SIZE_INTEL_CRYPTO = Error{/* contains filtered or unexported fields */} NSERR_ERR_AAA_LICENSE = Error{/* contains filtered or unexported fields */} NSERR_USR_NOINTRAIP = Error{/* contains filtered or unexported fields */} NSERR_USR_NOTCONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_INVAL_AAA_GRP = Error{/* contains filtered or unexported fields */} NSERR_INVAL_COMBNATION = Error{/* contains filtered or unexported fields */} NSERR_INVAL_MIP_IIP = Error{/* contains filtered or unexported fields */} NSERR_INVAL_MIPOFF_IIPOFF = Error{/* contains filtered or unexported fields */} NSERR_USEREXIST = Error{/* contains filtered or unexported fields */} NSERR_GROUPEXIST = Error{/* contains filtered or unexported fields */} NSERR_USERALREADYBOUND = Error{/* contains filtered or unexported fields */} NSERR_NO_RADIUS_IP = Error{/* contains filtered or unexported fields */} NSERR_NO_TACACS_IP = Error{/* contains filtered or unexported fields */} NSERR_USERNOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_ENTITYNOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_GROUPNOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_INVALIDLOGLEVEL = Error{/* contains filtered or unexported fields */} NSERR_DH_MISCONFIG = Error{/* contains filtered or unexported fields */} NSERR_DH_IPPORT = Error{/* contains filtered or unexported fields */} NSERR_DHINUSE = Error{/* contains filtered or unexported fields */} NSERR_INVAL_AAAGLOBAL_POLTYPE = Error{/* contains filtered or unexported fields */} NSERR_NO_LDAP_IP = Error{/* contains filtered or unexported fields */} NSERR_AAATM_LIC = Error{/* contains filtered or unexported fields */} NSERR_AAATM_DISABLED = Error{/* contains filtered or unexported fields */} NSERR_NO_AUTH_HOST = Error{/* contains filtered or unexported fields */} NSERR_AUTH_ON = Error{/* contains filtered or unexported fields */} NSERR_KILLPENDING = Error{/* contains filtered or unexported fields */} NSERR_AAATM_NO_AUTH_VS = Error{/* contains filtered or unexported fields */} NSERR_AAATM_401AUTH_ON = Error{/* contains filtered or unexported fields */} NSERR_UNAUTHRZED = Error{/* contains filtered or unexported fields */} NSERR_KILL_INPROGRESS = Error{/* contains filtered or unexported fields */} NSERR_WI_FRM_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_WI_FRM_LAST = Error{/* contains filtered or unexported fields */} NSERR_WI_NOTINST = Error{/* contains filtered or unexported fields */} NSERR_WI_GENFAILED = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_EXIST = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_INVAL_AGURL = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_INVAL_STAURL = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_ONLY_MPX = Error{/* contains filtered or unexported fields */} NSERR_WI_INSTFAILED = Error{/* contains filtered or unexported fields */} NSERR_WI_MAXSITE_EXCD = Error{/* contains filtered or unexported fields */} NSERR_WI_STAWITHOUTAGURL = Error{/* contains filtered or unexported fields */} NSERR_WI_AGURLWITHOUTSTA = Error{/* contains filtered or unexported fields */} NSERR_WI_RELWITHOUTAGURL = Error{/* contains filtered or unexported fields */} NSERR_WI_AUTHWITHOUTAGURL = Error{/* contains filtered or unexported fields */} NSERR_WI_TWOTKTWITHOUTREL = Error{/* contains filtered or unexported fields */} NSERR_WI_TWOTKTWITHOUTSECSTA = Error{/* contains filtered or unexported fields */} NSERR_WI_SECSTASAME = Error{/* contains filtered or unexported fields */} NSERR_WI_LICENSE = Error{/* contains filtered or unexported fields */} NSERR_WI_SECSTAWITHOUTSTA = Error{/* contains filtered or unexported fields */} NSERR_AUTH_NEGOTIATE = Error{/* contains filtered or unexported fields */} NSERR_WI_INSTSITESREDUCED = Error{/* contains filtered or unexported fields */} NSERR_WI_INCOMPATIBLEAUTHPOINT = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_WITHIN_SITE = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_TRANSLATION_NOEXIST = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_TRANSLATION_LAST = Error{/* contains filtered or unexported fields */} NSERR_WI_SITE_NOAGURL = Error{/* contains filtered or unexported fields */} NSERR_AGSVC_AUTHFAIL = Error{/* contains filtered or unexported fields */} NSERR_TM_INVALID_PERS_CONFIG = Error{/* contains filtered or unexported fields */} NSERR_WI_SMARTCARD_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_WI_SEARCH_NOT_SITEWEB = Error{/* contains filtered or unexported fields */} NSERR_KCD_ACCOUNT_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_KCD_KEYTAB_NOT_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_KCD_VS_PRINCIPLE_NOT_FOUND = Error{/* contains filtered or unexported fields */} NSERR_KCD_REM_INUSE = Error{/* contains filtered or unexported fields */} NSERR_KCD_TOO_MANY_VS_PRINCIPLE = Error{/* contains filtered or unexported fields */} NSERR_WI_REFRESH_NOT_SITEWEB = Error{/* contains filtered or unexported fields */} NSERR_WI_UIMODE_NOT_SITEWEB = Error{/* contains filtered or unexported fields */} NSERR_WI_UILAYOUT_NOT_SITEWEB = Error{/* contains filtered or unexported fields */} NSERR_WI_MESSAGESTRS_NOT_SITEWEB = Error{/* contains filtered or unexported fields */} NSERR_AAATM_AUTHN_PROFILE_CONF = Error{/* contains filtered or unexported fields */} NSERR_NEGACTION_UNAME_DOM = Error{/* contains filtered or unexported fields */} NSERR_NO_PRODUCTION_FARM = Error{/* contains filtered or unexported fields */} NSERR_SAML_FORM_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_MAXLOGIN_FAILLOGIN_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_KCD_ACCOUNT_EXIST = Error{/* contains filtered or unexported fields */} NSERR_KCD_ACCOUNT_NOTCONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_NEGACTION_KEYTAB_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_KEYTAB_INVALID_ENC = Error{/* contains filtered or unexported fields */} NSERR_HTTP_SSL_PROXY_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_INVALIDIP_PORT = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_NOTSUPP = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_NOPROFILE = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_INUSE = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_BOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_NOTBOUND = Error{/* contains filtered or unexported fields */} NSERR_ADVEPA_ON = Error{/* contains filtered or unexported fields */} NSERR_DEVICEPROFILE_ADDRM_FAIL = Error{/* contains filtered or unexported fields */} NSERR_DEVICEPROFILE_INTERNAL_ERR = Error{/* contains filtered or unexported fields */} NSERR_AAA_SESS_INVALID_INDEX = Error{/* contains filtered or unexported fields */} NSERR_AAATM_FORCETIMEOUT = Error{/* contains filtered or unexported fields */} NSERR_KCDACCOUNT_KEYTAB = Error{/* contains filtered or unexported fields */} NSERR_KCDACCOUNT_REALM = Error{/* contains filtered or unexported fields */} NSERR_KCDACCOUNT_KEYTAB_INVALID = Error{/* contains filtered or unexported fields */} NSERR_WEBAUTH_FULLEXP = Error{/* contains filtered or unexported fields */} NSERR_WI_INVALID_SETTING_FOR_AUTHPOINT = Error{/* contains filtered or unexported fields */} NSERR_WI_SETTING_VALIDONLYFOR_XENAPPWEB = Error{/* contains filtered or unexported fields */} NSERR_WI_PARAMETER_UPGARDE_ERROR = Error{/* contains filtered or unexported fields */} NSERR_SAMLIDP_ENC_CERT = Error{/* contains filtered or unexported fields */} NSERR_WF_NOT_INST = Error{/* contains filtered or unexported fields */} NSERR_WF_INSTFAILED = Error{/* contains filtered or unexported fields */} NSERR_AAA_TOOMANY_EXP = Error{/* contains filtered or unexported fields */} NSERR_SAML_REDIR_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_SET_MAXAAAUSER_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_AAATM_INCOMP_NO_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_RENAME_AUTHN_LABEL_NOT_PERMITTED = Error{/* contains filtered or unexported fields */} NSERR_ERR_AAA_LICENSE_LOW = Error{/* contains filtered or unexported fields */} NSERR_ERR_ENABLE_DTLS = Error{/* contains filtered or unexported fields */} NSERR_OPENID_ENC_METADATA = Error{/* contains filtered or unexported fields */} NSERR_OPENID_MAX_ATTRIBUTES = Error{/* contains filtered or unexported fields */} NSERR_AAA_MAX_LIMIT = Error{/* contains filtered or unexported fields */} NSERR_SST_SUBSCR_ALLOC_FAILED = Error{/* contains filtered or unexported fields */} NSERR_SST_SUBSCR_LOOKUP_FAILED = Error{/* contains filtered or unexported fields */} NSERR_SST_SUBSCR_REQUEST_ERROR = Error{/* contains filtered or unexported fields */} NSERR_GX_SERVICE_CONFIG_XOR = Error{/* contains filtered or unexported fields */} NSERR_GX_NOT_DIAMETER_VS = Error{/* contains filtered or unexported fields */} NSERR_GX_NOT_DIAMETER_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_SST_SUBSCRIBER_ENTRY_EXCEEDED = Error{/* contains filtered or unexported fields */} NSERR_GX_PCRF_NOT_CONFIGURED_VSERVER_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_SST_STATIC_SUBSCRIBER_SESSION_DELETION = Error{/* contains filtered or unexported fields */} NSERR_SST_SUBSCRIBER_SESSION_EXIST = Error{/* contains filtered or unexported fields */} NSERR_SST_NOT_RADIUS_SERVICE = Error{/* contains filtered or unexported fields */} NSERR_MAX_SERVICE_FUNCTIONS = Error{/* contains filtered or unexported fields */} NSERR_NOSUCH_SVCFUNC = Error{/* contains filtered or unexported fields */} NSERR_NOSUCH_SVCPATH = Error{/* contains filtered or unexported fields */} NSERR_INVALID_SVCINDEX = Error{/* contains filtered or unexported fields */} NSERR_SVCPATH_SVCINX_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_SST_IPANDVLAN_GXONLY = Error{/* contains filtered or unexported fields */} NSERR_VLAN_NOT_ALLOWED_DEFAULT_SUBSCRIBER_PROFILE = Error{/* contains filtered or unexported fields */} NSCFG_INFO = Error{/* contains filtered or unexported fields */} NSCS_INFO = Error{/* contains filtered or unexported fields */} NSCSPROBE_INFO = Error{/* contains filtered or unexported fields */} NSAPPPROBE_INFO = Error{/* contains filtered or unexported fields */} NSCFG_MP_INFO = Error{/* contains filtered or unexported fields */} NSERR_NOINTRANETIP = Error{/* contains filtered or unexported fields */} NSERR_ALREADYLOGEDIN = Error{/* contains filtered or unexported fields */} NSERR_URLINUSE = Error{/* contains filtered or unexported fields */} NSERR_VPNAPPINUSE = Error{/* contains filtered or unexported fields */} NSERR_NOTSUPP_TRANS_INTERCPT = Error{/* contains filtered or unexported fields */} NSERR_CLNT_CERT_RENEG = Error{/* contains filtered or unexported fields */} NSERR_DEFAULTCMDPLCY = Error{/* contains filtered or unexported fields */} NSERR_CLNT_CERT_REQD = Error{/* contains filtered or unexported fields */} NSERR_INVAL_CERTFIELD = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_PROXY_IPRANGE = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_PROXY_NETMASK = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_PROXY_DSTPORT_RANGE = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_PROXY_PROTOCOL = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_PROXY_HOSTNAME = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_TRANS_SRCIP = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_TRANS_SRCPORT = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_NO_INTERCEPTION_TYPE = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_CLIAPP_PORT = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_CLIAPP_PROTO = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_PROXY_CLIAPP = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_MISSING_PROTO = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_MISSING_ARG = Error{/* contains filtered or unexported fields */} NSERR_VPNAPP_TOO_MANY_ARG = Error{/* contains filtered or unexported fields */} NSERR_FS_AUTHFAIL = Error{/* contains filtered or unexported fields */} NSERR_NSIPV6NOTPRESENT = Error{/* contains filtered or unexported fields */} NSERR_REMOVE_SESSION = Error{/* contains filtered or unexported fields */} NSERR_STAWI_EXIST = Error{/* contains filtered or unexported fields */} NSERR_INVALID_SSO_ACTION = Error{/* contains filtered or unexported fields */} NSERR_INVALID_TMTRAFFIC_ACTION = Error{/* contains filtered or unexported fields */} NSERR_INVALFSSO = Error{/* contains filtered or unexported fields */} NSERR_INVALIDURL = Error{/* contains filtered or unexported fields */} NSERR_INVALID_FLOWTYPE_FORAPPFLOW = Error{/* contains filtered or unexported fields */} NSERR_TOO_MANY_SERVERS = Error{/* contains filtered or unexported fields */} NSERR_BLOCKING_ATTR_WARNING_FOR_VPN_APPFLOW = Error{/* contains filtered or unexported fields */} NSERR_SAMLIDP_ACTION = Error{/* contains filtered or unexported fields */} NSERR_SAML_ACTION_AUTHNCTX = Error{/* contains filtered or unexported fields */} NSERR_ABSOLUTE_URL = Error{/* contains filtered or unexported fields */} NSERR_INVALID_AG_BIND = Error{/* contains filtered or unexported fields */} NSERR_NO_VSERVER = Error{/* contains filtered or unexported fields */} NSERR_SSSO_NOT_LICENSED = Error{/* contains filtered or unexported fields */} NSERR_MULT_AGBIND = Error{/* contains filtered or unexported fields */} NSERR_VPN_VSERV_PROTOCOL_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_SET_NOT_ALLOWED_ON_ICAONLY_BIT = Error{/* contains filtered or unexported fields */} NSERR_IIP_INVALID_RANGE = Error{/* contains filtered or unexported fields */} NSERR_SSLVPN_LICENSE = Error{/* contains filtered or unexported fields */} NSERR_SAMLIDP_REDIR_INVALID_SIGN = Error{/* contains filtered or unexported fields */} NSERR_VPN_AUTH_BIND = Error{/* contains filtered or unexported fields */} NSERR_AUTH_VPN_BIND = Error{/* contains filtered or unexported fields */} NSERR_SVPN_INVALID_URL = Error{/* contains filtered or unexported fields */} NSERR_MULT_AUTHBIND = Error{/* contains filtered or unexported fields */} NSERR_SVPN_INVALID_ICONURL = Error{/* contains filtered or unexported fields */} NSERR_XM_PKG_CONTENT = Error{/* contains filtered or unexported fields */} NSERR_XM_MISSING_TOKEN_VALUE = Error{/* contains filtered or unexported fields */} NSERR_SAML_ARTIFACT_NO_URL = Error{/* contains filtered or unexported fields */} NSERR_OAUTHIDP_ACTION = Error{/* contains filtered or unexported fields */} NSERR_NOLICENCE_PUSH = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLSSO = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR1 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR2 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR3 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR4 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR5 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR6 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR7 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR8 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR9 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR10 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR11 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR12 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR13 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR14 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR15 = Error{/* contains filtered or unexported fields */} NSERR_INVALSAMLIDPATTR16 = Error{/* contains filtered or unexported fields */} NSERR_PUSH_SERVICE_AZURE_ARGS = Error{/* contains filtered or unexported fields */} NSERR_PUSH_SERVICE_NS_ARGS = Error{/* contains filtered or unexported fields */} NSERR_INVALID_DFA_BINDPOINT = Error{/* contains filtered or unexported fields */} NSERR_SMARTACCESS_ACTION = Error{/* contains filtered or unexported fields */} NSERR_TD_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_TD_VLAN = Error{/* contains filtered or unexported fields */} NSERR_TD_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_TD_MISMATCH_WITH_L3VLAN = Error{/* contains filtered or unexported fields */} NSERR_TD_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_TD_NOSUPP = Error{/* contains filtered or unexported fields */} NSERR_TD_CONFIG_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_TD_IP_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_TD_VLAN_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_TD_DEFVLAN = Error{/* contains filtered or unexported fields */} NSERR_TD_BDG_NOTEXIST = Error{/* contains filtered or unexported fields */} NSERR_TD_VLAN_BDG_EXIST = Error{/* contains filtered or unexported fields */} NSERR_TD_SERVER_MISMATCH = Error{/* contains filtered or unexported fields */} NSERR_DIFF_TD_NALLOWED_LLB = Error{/* contains filtered or unexported fields */} NSERR_DUPIP = Error{/* contains filtered or unexported fields */} NSERR_VMAC_VLAN = Error{/* contains filtered or unexported fields */} NSERR_TD_SYNCVLAN = Error{/* contains filtered or unexported fields */} NSERR_TD_NOT_VLAN = Error{/* contains filtered or unexported fields */} NSERR_SYNCNSVLAN_TD = Error{/* contains filtered or unexported fields */} NSERR_TD_CONFIG_DEPR = Error{/* contains filtered or unexported fields */} NSERR_URLFILT_CANNOT_PARSE_XML = Error{/* contains filtered or unexported fields */} NSERR_URLFILT_CANNOT_FIND_GROUP = Error{/* contains filtered or unexported fields */} NSERR_URLFILT_XML_FILE_TOO_BIG = Error{/* contains filtered or unexported fields */} NSERR_URLFILT_DEPRECATED_IC_CACHE_NOT_ENABLED = Error{/* contains filtered or unexported fields */} NSERR_URLSET_CANNOT_INIT_PATTERN = Error{/* contains filtered or unexported fields */} NSERR_URLSET_CANNOT_FIND_URL = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_MAX_ENTITIES = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_INVAL_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_ACTION_INUSE = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_PRIORITY_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_REQ_PCRE_ERR = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_RESP_PCRE_ERR = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_REQ_INTO_ERR = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_RESP_INTO_ERR = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_COOKIE_INTO_ERR = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_COOKIE_PCRE_ERR = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_TOO_MANY_BACKREFS = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_MISSING_FROM = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_NOT_SUPPORTED_VS = Error{/* contains filtered or unexported fields */} NSERR_URLTRANS_BAD_COMMENT = Error{/* contains filtered or unexported fields */} NSERR_VIDEOOPT_INV_RANDOMSAMPLING = Error{/* contains filtered or unexported fields */} NSERR_INTERFACEBOUND = Error{/* contains filtered or unexported fields */} NSERR_IFACE_NO_UNBIND = Error{/* contains filtered or unexported fields */} NSERR_IFACE_MAX_VLANS = Error{/* contains filtered or unexported fields */} NSERR_VLAN_RTEXIST = Error{/* contains filtered or unexported fields */} NSERR_VLAN_LLEXIST = Error{/* contains filtered or unexported fields */} NSERR_BOUNDTONSVLAN = Error{/* contains filtered or unexported fields */} NSERR_VLAN_TD_CONFIGURED = Error{/* contains filtered or unexported fields */} NSERR_VLAN_BOUNDTO_NETBRIDGE = Error{/* contains filtered or unexported fields */} NSERR_INTERFACE_BOUND = Error{/* contains filtered or unexported fields */} NSERR_VRID_INTERFACE_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NO_SUCH_INTERFACE = Error{/* contains filtered or unexported fields */} NSERR_DYNAMIC_ENTRY = Error{/* contains filtered or unexported fields */} NSERR_PRIO_INTFVRID = Error{/* contains filtered or unexported fields */} NSERR_INTFVRID = Error{/* contains filtered or unexported fields */} NSERR_NOTSTATIC_VRID = Error{/* contains filtered or unexported fields */} NSERR_IPVRID = Error{/* contains filtered or unexported fields */} NSERR_IPVRID_BOUND = Error{/* contains filtered or unexported fields */} NSERR_NOVRID = Error{/* contains filtered or unexported fields */} NSERR_INTF_TRACKINTF_BOUND = Error{/* contains filtered or unexported fields */} NSERR_VRRP_SHAREDVLAN_NOT_SUPPORTED = Error{/* contains filtered or unexported fields */} NSERR_INTF_VRID_BIND_NOTALLOWED = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_INCOMP = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_TUN_BOUND = Error{/* contains filtered or unexported fields */} NSERR_INV_MCAST = Error{/* contains filtered or unexported fields */} NSERR_TUN_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_IP_NOT_BOUND = Error{/* contains filtered or unexported fields */} NSERR_INV_TUN = Error{/* contains filtered or unexported fields */} NSERR_NO_VXLAN = Error{/* contains filtered or unexported fields */} NSERR_VLAN_EXT = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_TD = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_ROTUING = Error{/* contains filtered or unexported fields */} NSERR_VXLANMAP_INUSE = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_TBL_BOUND = Error{/* contains filtered or unexported fields */} NSERR_TUN_MAP_TBL = Error{/* contains filtered or unexported fields */} NSERR_VXLAN_INUSE = Error{/* contains filtered or unexported fields */} NSERR_NETBDG_VXLAN_VLAN = Error{/* contains filtered or unexported fields */} NSERR_NO_VXLANMAP = Error{/* contains filtered or unexported fields */} NSERR_VXLANMAP_TUN_NOSUP = Error{/* contains filtered or unexported fields */} NSERR_AUTHORIZE = Error{/* contains filtered or unexported fields */} NSERR_AUTHFAIL = Error{/* contains filtered or unexported fields */} NSWAR_SSL_BINDOR = Error{/* contains filtered or unexported fields */} NSWAR_SSL_BRKLINK = Error{/* contains filtered or unexported fields */} NSWAR_SSL_CERT_NOT_YET_VALID = Error{/* contains filtered or unexported fields */} NSWAR_SSL_CERT_EXPIRED = Error{/* contains filtered or unexported fields */} NSWAR_SSL_EXPIRED_BRKLINK = Error{/* contains filtered or unexported fields */} NSWAR_SSL_NYVALID_BRKLINK = Error{/* contains filtered or unexported fields */} NSERR_CIPROF_INTERFACE_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_XS_INTERNAL_RESOURCE_CREATION = Error{/* contains filtered or unexported fields */} NSERR_XS_INVALID_SERVERNAME = Error{/* contains filtered or unexported fields */} NSERR_CI_ACT_IP_PORT_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} NSERR_CI_ACT_SNAME_SIP_CONFLICT = Error{/* contains filtered or unexported fields */} NSERR_XS_INVALID_ICAPPROFILE_NAME = Error{/* contains filtered or unexported fields */} NSERR_CI_PROFILE_EXISTS = Error{/* contains filtered or unexported fields */} NSERR_CIPROF_INUSE = Error{/* contains filtered or unexported fields */} NSERR_XS_INVALID_CIPROFILE_NAME = Error{/* contains filtered or unexported fields */} NSERR_CI_UNSUPPORTED_PROFILE_TYPE = Error{/* contains filtered or unexported fields */} NSERR_CI_NO_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_CI_INVALID_CIC = Error{/* contains filtered or unexported fields */} NSERR_CI_ACT_MISSING_PROFILE = Error{/* contains filtered or unexported fields */} NSERR_CIPROF_TUNNEL_NOT_ALLOWED = Error{/* contains filtered or unexported fields */} )
View Source
var ( ResourceTypeUnknown = ResourceType{""} ResourceTypeConfig = ResourceType{"config"} ResourceTypeStat = ResourceType{"stat"} )
View Source
var ( ArgumentsQueryType = UrlQueryType{"args"} FilterQueryType = UrlQueryType{"filter"} AttributesQueryType = UrlQueryType{"attrs"} )
Functions ¶
func CreateHttpRequest ¶
func GetNitroTags ¶
func GetNitroTags[T ResourceReader]() (map[string]Tag, error)
Types ¶
type Client ¶
type Client struct { Name string // contains filtered or unexported fields }
func NewClient ¶
func NewClient(name string, address string, credentials Credentials, settings ConnectionSettings) (*Client, error)
func (*Client) IsLoggedIn ¶
func (*Client) IsPrimaryNode ¶
func (*Client) SaveConfig ¶
type ConnectionSettings ¶
type ConnectionSettings struct { UseSsl bool `json:"useSsl" yaml:"useSsl" mapstructure:"useSsl"` Timeout int `json:"timeout" yaml:"timeout" mapstructure:"timeout"` UserAgent string `json:"userAgent" yaml:"userAgent" mapstructure:"userAgent"` ValidateServerCertificate bool `json:"validateServerCertificate" yaml:"validateServerCertificate" mapstructure:"validateServerCertificate"` LogTlsSecrets bool `json:"logTlsSecrets" yaml:"logTlsSecrets" mapstructure:"logTlsSecrets"` LogTlsSecretsDestination string `json:"logTlsSecretsDestination" yaml:"logTlsSecretsDestination" mapstructure:"logTlsSecretsDestination"` AutoLogin bool `json:"autoLogin" yaml:"autoLogin" mapstructure:"autoLogin"` }
func (*ConnectionSettings) GetTimeoutDuration ¶
func (n *ConnectionSettings) GetTimeoutDuration() (time.Duration, error)
GetTimeoutDuration Returns a time.Duration based on the set timout in milliseconds
func (*ConnectionSettings) GetTlsSecretLogWriter ¶
func (n *ConnectionSettings) GetTlsSecretLogWriter() (io.Writer, error)
func (*ConnectionSettings) GetUrlScheme ¶
func (n *ConnectionSettings) GetUrlScheme() string
func (*ConnectionSettings) GetUserAgent ¶
func (n *ConnectionSettings) GetUserAgent() string
type Credentials ¶
type Error ¶
type Error struct {
// contains filtered or unexported fields
}
func (Error) WithMessage ¶
type Request ¶
type Request[T ResourceReader] struct { Method string ResourceName string Action Action Arguments map[string]string Filter map[string]string Attributes []string Data []T }
func (*Request[T]) GetResourceTypeName ¶
func (*Request[T]) GetUrlPathAndQuery ¶
func (*Request[T]) ValidateArguments ¶
func (*Request[T]) ValidateAttributes ¶
func (*Request[T]) ValidateData ¶
TODO REWORK ValidateData() error handling TODO REWORK ValidateData() logic
func (*Request[T]) ValidateFilter ¶
func (*Request[T]) ValidateResourceType ¶
type ResourceReader ¶
type ResourceReader interface {
GetTypeName() string
}
type ResourceType ¶
type ResourceType struct {
// contains filtered or unexported fields
}
func (ResourceType) UrlPath ¶
func (r ResourceType) UrlPath() string
type Response ¶
type Response[T ResourceReader] struct { ErrorCode float64 `json:"errorcode"` Message string `json:"message"` Severity string `json:"severity"` Data []T }
func DeserializeResponse ¶
func DeserializeResponse[T ResourceReader](res *http.Response) (*Response[T], error)
func ExecuteNitroRequest ¶
func ExecuteNitroRequest[T ResourceReader](c *Client, r *Request[T]) (*Response[T], error)
func (*Response[T]) ExtractData ¶
func (*Response[T]) GetResourceTypeName ¶
type SettingsReader ¶
type UrlQueryType ¶
type UrlQueryType struct {
// contains filtered or unexported fields
}
func (UrlQueryType) Prefix ¶
func (t UrlQueryType) Prefix() string
Source Files
¶
Click to show internal directories.
Click to hide internal directories.