8.1.1 • Published 1 year ago

eip-solidserver-apiv2 v8.1.1

Weekly downloads
-
License
BSD-3-Clause
Repository
-
Last release
1 year ago

eip-solidserver-apiv2

SoliDserverApi - JavaScript client for eip-solidserver-apiv2 OpenAPI 3.0.2 API definition for SOLIDserver service from EfficientIP.All product specifications and information provided in this document are subject to change or update without notice and should not be construed as a commitment by EfficientIP. EfficientIP assumes no responsibility or liability for any mistakes, inaccuracies or omissions that may appear in this document. All statements and recommendations in this document are believed to be accurate at the time they are drafted but are presented without any representation or warranty of any kind, either express or implied, regarding their accuracy, completeness, performance, up-to-dateness or suitability for any particular use or purpose, or with respect to the infringement of any right. In particular, EfficientIP makes no representation or warranty that the results that may be obtained from your use of our products will be effective, accurate or reliable or that the quality of the products will meet your expectations. Users must take full responsibility for their application of any product. This document aims at detailing EfficientIP proprietary solutions. As our solutions rely on several third-party products, created by other companies or organizations, it may redirect readers to third-party websites and documentation for further information. EfficientIP cannot be liable for or expected to provide said information regarding products maintained or created by third parties.In no event shall EfficientIP be liable for any special, punitive, indirect, incidental or consequential damages of any kind including, but not limited to, loss of present or prospective profits or business, loss of data, business interruption, damages to reputation or image, whether in an action of contract, negligence, or other action, arising out of or in connection with the use, reliance upon or performance of the products provided by EfficientIP or any information contained herein.All EfficientIP products and documentation are subject to separate licensing terms which users must agree to and comply with in order to use such products and documentation. This SDK is automatically generated by the OpenAPI Generator project:

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install eip-solidserver-apiv2 --save

Finally, you need to build the module:

npm run build
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

To use the link you just defined in your project, switch to the directory you want to use your eip-solidserver-apiv2 from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

Finally, you need to build the module:

npm run build

git

If the library is hosted at a git repository, e.g.https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var SoliDserverApi = require('eip-solidserver-apiv2');

// no TLS verification of certificate -- only if needed
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;

let defaultClient = new SoliDserverApi.ApiClient(basePath = 'https://{you-sds}/api/v2.0');

// Configure HTTP basic authorization: BasicAuth
let BasicAuth = defaultClient.authentications['BasicAuth'];
BasicAuth.username = 'apiuser';
BasicAuth.password = 'apipasswd';

let apiInstance = new SoliDserverApi.IpamApi(defaultClient);
let opts = {
    //   'where': "where_example",
    //   'tags': "tags_example"
};

_r = apiInstance.ipamSpaceCount(opts, (error, data, response) => {
    if (error) {
        console.error(error);
    } else {
        console.log(data.data[0].count);
    }
});

Documentation for API Endpoints

All URIs are relative to https://sds-ip-or-name:443/api/v2.0

ClassMethodHTTP requestDescription
SoliDserverApi.AppApiappApplicationAddPOST /app/application/addAdd an application
SoliDserverApi.AppApiappApplicationCountGET /app/application/countCount the number of applications
SoliDserverApi.AppApiappApplicationDeleteDELETE /app/application/deleteDelete an application
SoliDserverApi.AppApiappApplicationEditPUT /app/application/editEdit an application
SoliDserverApi.AppApiappApplicationInfoGET /app/application/infoDisplay the properties of an application
SoliDserverApi.AppApiappApplicationListGET /app/application/listList the applications
SoliDserverApi.AppApiappNodeAddPOST /app/node/addAdd a node
SoliDserverApi.AppApiappNodeCountGET /app/node/countCount the number of nodes
SoliDserverApi.AppApiappNodeDeleteDELETE /app/node/deleteDelete a node
SoliDserverApi.AppApiappNodeEditPUT /app/node/editEdit a node
SoliDserverApi.AppApiappNodeInfoGET /app/node/infoDisplay the properties of a node
SoliDserverApi.AppApiappNodeListGET /app/node/listList the nodes
SoliDserverApi.AppApiappPoolAddPOST /app/pool/addAdd a pool
SoliDserverApi.AppApiappPoolCountGET /app/pool/countCount the number of pools
SoliDserverApi.AppApiappPoolDeleteDELETE /app/pool/deleteDelete a pool
SoliDserverApi.AppApiappPoolEditPUT /app/pool/editEdit a pool
SoliDserverApi.AppApiappPoolInfoGET /app/pool/infoDisplay the properties of a pool
SoliDserverApi.AppApiappPoolListGET /app/pool/listList the pools
SoliDserverApi.DeviceApideviceDeviceAddPOST /device/device/addAdd a Device Manager device
SoliDserverApi.DeviceApideviceDeviceCountGET /device/device/countCount the number of Device Manager devices
SoliDserverApi.DeviceApideviceDeviceDeleteDELETE /device/device/deleteDelete a Device Manager device
SoliDserverApi.DeviceApideviceDeviceEditPUT /device/device/editAdd a Device Manager device
SoliDserverApi.DeviceApideviceDeviceInfoGET /device/device/infoDisplay the properties of a Device Manager device
SoliDserverApi.DeviceApideviceDeviceListGET /device/device/listList the Device Manager devices
SoliDserverApi.DeviceApideviceInterfaceAddPOST /device/interface/addAdd a Device Manager port or interface
SoliDserverApi.DeviceApideviceInterfaceCountGET /device/interface/countCount the number Device Manager ports &amp; interfaces
SoliDserverApi.DeviceApideviceInterfaceDeleteDELETE /device/interface/deleteDelete a Device Manager port or interface
SoliDserverApi.DeviceApideviceInterfaceEditPUT /device/interface/editAdd a Device Manager port or interface
SoliDserverApi.DeviceApideviceInterfaceInfoGET /device/interface/infoDisplay the properties of a Device Manager port or interface
SoliDserverApi.DeviceApideviceInterfaceListGET /device/interface/listList the Device Manager ports &amp; interfaces
SoliDserverApi.DeviceApideviceLinkAddPOST /device/link/addLink two Device Manager devices using their ports and/or interfaces
SoliDserverApi.DeviceApideviceLinkCountGET /device/link/countCount the number of links between Device Manager devices
SoliDserverApi.DeviceApideviceLinkDeleteDELETE /device/link/deleteDelete a link between two Device Manager devices
SoliDserverApi.DeviceApideviceLinkEditPUT /device/link/editLink two Device Manager devices using their ports and/or interfaces
SoliDserverApi.DeviceApideviceLinkListGET /device/link/listList Device Manager ports &amp; interfaces
SoliDserverApi.DhcpApidhcpAcl6CountGET /dhcp/acl6/countCount the number of DHCPv6 ACLs
SoliDserverApi.DhcpApidhcpAcl6InfoGET /dhcp/acl6/infoDisplay the properties of a DHCPv6 ACL
SoliDserverApi.DhcpApidhcpAcl6ListGET /dhcp/acl6/listList the DHCPv6 ACLs
SoliDserverApi.DhcpApidhcpAclCountGET /dhcp/acl/countCount the number of DHCP ACLs
SoliDserverApi.DhcpApidhcpAclInfoGET /dhcp/acl/infoDisplay the properties of a DHCP ACL
SoliDserverApi.DhcpApidhcpAclListGET /dhcp/acl/listList the DHCP ACLs
SoliDserverApi.DhcpApidhcpAclentry6CountGET /dhcp/aclentry6/countCount the number of DHCPv6 ACL entries
SoliDserverApi.DhcpApidhcpAclentry6InfoGET /dhcp/aclentry6/infoDisplay the properties of a DHCPv6 ACL entry
SoliDserverApi.DhcpApidhcpAclentry6ListGET /dhcp/aclentry6/listList the DHCPv6 ACL entries
SoliDserverApi.DhcpApidhcpAclentryCountGET /dhcp/aclentry/countCount the number of DHCP ACL entries
SoliDserverApi.DhcpApidhcpAclentryInfoGET /dhcp/aclentry/infoDisplay the properties of a DHCP ACL entry
SoliDserverApi.DhcpApidhcpAclentryListGET /dhcp/aclentry/listList the DHCP ACL entries
SoliDserverApi.DhcpApidhcpFailoverCountGET /dhcp/failover/countCount the number of DHCPv4 failover channels
SoliDserverApi.DhcpApidhcpFailoverInfoGET /dhcp/failover/infoDisplay the properties of a DHCPv4 failover channel
SoliDserverApi.DhcpApidhcpFailoverListGET /dhcp/failover/listList the DHCPv4 failover channels
SoliDserverApi.DhcpApidhcpGroup6ListGET /dhcp/group6/listList the DHCPv6 groups
SoliDserverApi.DhcpApidhcpGroupAddPOST /dhcp/group/addAdd a DHCPv4 group
SoliDserverApi.DhcpApidhcpGroupCountGET /dhcp/group/countCount the number of DHCPv4 groups
SoliDserverApi.DhcpApidhcpGroupDeleteDELETE /dhcp/group/deleteDelete a DHCPv4 group
SoliDserverApi.DhcpApidhcpGroupEditPUT /dhcp/group/editAdd a DHCPv4 group
SoliDserverApi.DhcpApidhcpGroupInfoGET /dhcp/group/infoDisplay the properties of a DHCPv4 group
SoliDserverApi.DhcpApidhcpGroupListGET /dhcp/group/listList the DHCPv4 groups
SoliDserverApi.DhcpApidhcpLease6CountGET /dhcp/lease6/countCount the number of DHCPv6 leases
SoliDserverApi.DhcpApidhcpLease6ListGET /dhcp/lease6/listList the DHCPv6 leases
SoliDserverApi.DhcpApidhcpLeaseCountGET /dhcp/lease/countCount the number of DHCPv4 leases
SoliDserverApi.DhcpApidhcpLeaseInfoGET /dhcp/lease/infoDisplay the properties of a DHCPv4 lease
SoliDserverApi.DhcpApidhcpLeaseListGET /dhcp/lease/listList the DHCPv4 leases
SoliDserverApi.DhcpApidhcpRange6AddPOST /dhcp/range6/addAdd a DHCPv6 range
SoliDserverApi.DhcpApidhcpRange6CountGET /dhcp/range6/countCount the number of DHCPv6 ranges
SoliDserverApi.DhcpApidhcpRange6DeleteDELETE /dhcp/range6/deleteDelete a DHCPv6 range
SoliDserverApi.DhcpApidhcpRange6EditPUT /dhcp/range6/editEdit a DHCPv6 range
SoliDserverApi.DhcpApidhcpRange6InfoGET /dhcp/range6/infoDisplay the properties of a DHCPv6 range
SoliDserverApi.DhcpApidhcpRange6ListGET /dhcp/range6/listList the DHCPv6 ranges
SoliDserverApi.DhcpApidhcpRangeAddPOST /dhcp/range/addAdd a DHCPv4 range
SoliDserverApi.DhcpApidhcpRangeCountGET /dhcp/range/countCount the number of DHCPv4 ranges
SoliDserverApi.DhcpApidhcpRangeDeleteDELETE /dhcp/range/deleteDelete a DHCPv4 range
SoliDserverApi.DhcpApidhcpRangeEditPUT /dhcp/range/editEdit a DHCPv4 range
SoliDserverApi.DhcpApidhcpRangeInfoGET /dhcp/range/infoDisplay the properties of a DHCPv4 range
SoliDserverApi.DhcpApidhcpRangeListGET /dhcp/range/listList the DHCPv4 ranges
SoliDserverApi.DhcpApidhcpScope6AddPOST /dhcp/scope6/addAdd a DHCPv6 scope
SoliDserverApi.DhcpApidhcpScope6CountGET /dhcp/scope6/countCount the number of DHCPv6 scopes
SoliDserverApi.DhcpApidhcpScope6DeleteDELETE /dhcp/scope6/deleteDelete a DHCPv6 scope
SoliDserverApi.DhcpApidhcpScope6EditPUT /dhcp/scope6/editEdit a DHCPv6 scope
SoliDserverApi.DhcpApidhcpScope6InfoGET /dhcp/scope6/infoDisplay the properties of a DHCPv6 scope
SoliDserverApi.DhcpApidhcpScope6ListGET /dhcp/scope6/listList the DHCPv6 scopes
SoliDserverApi.DhcpApidhcpScopeAddPOST /dhcp/scope/addAdd a DHCPv4 scope
SoliDserverApi.DhcpApidhcpScopeCountGET /dhcp/scope/countCount the number of DHCPv4 scopes
SoliDserverApi.DhcpApidhcpScopeDeleteDELETE /dhcp/scope/deleteDelete a DHCPv4 scope
SoliDserverApi.DhcpApidhcpScopeEditPUT /dhcp/scope/editEdit a DHCPv4 scope
SoliDserverApi.DhcpApidhcpScopeInfoGET /dhcp/scope/infoDisplay the properties of a DHCPv4 scope
SoliDserverApi.DhcpApidhcpScopeListGET /dhcp/scope/listList the DHCPv4 scopes
SoliDserverApi.DhcpApidhcpServer6CountGET /dhcp/server6/countCount the number of DHCPv6 servers
SoliDserverApi.DhcpApidhcpServer6InfoGET /dhcp/server6/infoDisplay the properties of a DHCPv6 server
SoliDserverApi.DhcpApidhcpServer6ListGET /dhcp/server6/listList the DHCPv6 servers
SoliDserverApi.DhcpApidhcpServerCountGET /dhcp/server/countCount the number of DHCPv4 servers
SoliDserverApi.DhcpApidhcpServerInfoGET /dhcp/server/infoDisplay the properties of a DHCPv4 server
SoliDserverApi.DhcpApidhcpServerListGET /dhcp/server/listList the DHCPv4 servers
SoliDserverApi.DhcpApidhcpSharednetwork6AddPOST /dhcp/sharednetwork6/addAdd a DHCPv6 shared network
SoliDserverApi.DhcpApidhcpSharednetwork6CountGET /dhcp/sharednetwork6/countCount the number of DHCPv6 shared networks
SoliDserverApi.DhcpApidhcpSharednetwork6DeleteDELETE /dhcp/sharednetwork6/deleteDelete a DHCPv6 Shared Network
SoliDserverApi.DhcpApidhcpSharednetwork6EditPUT /dhcp/sharednetwork6/editEdit a DHCPv6 shared network
SoliDserverApi.DhcpApidhcpSharednetwork6InfoGET /dhcp/sharednetwork6/infoDisplay the properties of a DHCPv6 shared network
SoliDserverApi.DhcpApidhcpSharednetwork6ListGET /dhcp/sharednetwork6/listList the DHCPv6 shared networks
SoliDserverApi.DhcpApidhcpSharednetworkAddPOST /dhcp/sharednetwork/addAdd a DHCPv4 shared network
SoliDserverApi.DhcpApidhcpSharednetworkCountGET /dhcp/sharednetwork/countCount the number of DHCPv4 shared networks
SoliDserverApi.DhcpApidhcpSharednetworkDeleteDELETE /dhcp/sharednetwork/deleteDelete a DHCPv4 Shared Network
SoliDserverApi.DhcpApidhcpSharednetworkEditPUT /dhcp/sharednetwork/editEdit a DHCPv4 shared network
SoliDserverApi.DhcpApidhcpSharednetworkInfoGET /dhcp/sharednetwork/infoDisplay the properties of a DHCPv4 shared network
SoliDserverApi.DhcpApidhcpSharednetworkListGET /dhcp/sharednetwork/listList the DHCPv4 shared networks
SoliDserverApi.DhcpApidhcpStatic6AddPOST /dhcp/static6/addAdd a DHCPv6 static
SoliDserverApi.DhcpApidhcpStatic6CountGET /dhcp/static6/countCount the number of DHCPv6 statics
SoliDserverApi.DhcpApidhcpStatic6DeleteDELETE /dhcp/static6/deleteDelete a DHCPv6 static
SoliDserverApi.DhcpApidhcpStatic6EditPUT /dhcp/static6/editEdit a DHCPv6 static
SoliDserverApi.DhcpApidhcpStatic6InfoGET /dhcp/static6/infoDisplay the properties of a DHCPv6 static
SoliDserverApi.DhcpApidhcpStatic6ListGET /dhcp/static6/listList the DHCPv6 statics
SoliDserverApi.DhcpApidhcpStaticAddPOST /dhcp/static/addAdd a DHCPv4 static
SoliDserverApi.DhcpApidhcpStaticCountGET /dhcp/static/countCount the number of DHCPv4 statics
SoliDserverApi.DhcpApidhcpStaticDeleteDELETE /dhcp/static/deleteDelete a DHCPv4 static
SoliDserverApi.DhcpApidhcpStaticEditPUT /dhcp/static/editEdit a DHCPv4 static
SoliDserverApi.DhcpApidhcpStaticInfoGET /dhcp/static/infoDisplay the properties of a DHCPv4 static
SoliDserverApi.DhcpApidhcpStaticListGET /dhcp/static/listList the DHCPv4 statics
SoliDserverApi.DnsApidnsAclAddPOST /dns/acl/addAdd a DNS ACL
SoliDserverApi.DnsApidnsAclCountGET /dns/acl/countCount the number of DNS ACLs
SoliDserverApi.DnsApidnsAclDeleteDELETE /dns/acl/deleteDelete a DNS ACL
SoliDserverApi.DnsApidnsAclEditPUT /dns/acl/editEdit a DNS ACL
SoliDserverApi.DnsApidnsAclInfoGET /dns/acl/infoDisplay the properties of a DNS ACL
SoliDserverApi.DnsApidnsAclListGET /dns/acl/listList the DNS ACLs
SoliDserverApi.DnsApidnsRrAddPOST /dns/rr/addAdd a resource record
SoliDserverApi.DnsApidnsRrCountGET /dns/rr/countCount the number of resource records
SoliDserverApi.DnsApidnsRrDeleteDELETE /dns/rr/deleteDelete a resource record
SoliDserverApi.DnsApidnsRrEditPUT /dns/rr/editEdit a resource record
SoliDserverApi.DnsApidnsRrInfoGET /dns/rr/infoDisplay the properties of a resource record
SoliDserverApi.DnsApidnsRrListGET /dns/rr/listList the resource records
SoliDserverApi.DnsApidnsServerCountGET /dns/server/countCount the number of DNS servers
SoliDserverApi.DnsApidnsServerInfoGET /dns/server/infoDisplay the properties of a DNS server
SoliDserverApi.DnsApidnsServerListGET /dns/server/listList the DNS servers
SoliDserverApi.DnsApidnsViewAddPOST /dns/view/addAdd a view
SoliDserverApi.DnsApidnsViewCountGET /dns/view/countCount the number of views
SoliDserverApi.DnsApidnsViewDeleteDELETE /dns/view/deleteDelete a view
SoliDserverApi.DnsApidnsViewEditPUT /dns/view/editEdit a view
SoliDserverApi.DnsApidnsViewInfoGET /dns/view/infoDisplay the properties of a view
SoliDserverApi.DnsApidnsViewListGET /dns/view/listList the views
SoliDserverApi.DnsApidnsViewparamAddPOST /dns/viewparam/addAdd a DNS option on a view
SoliDserverApi.DnsApidnsViewparamCountGET /dns/viewparam/countCount the number of DNS options of a view
SoliDserverApi.DnsApidnsViewparamDeleteDELETE /dns/viewparam/deleteDelete a DNS option from a view
SoliDserverApi.DnsApidnsViewparamEditPUT /dns/viewparam/editEdit a DNS option on a view
SoliDserverApi.DnsApidnsViewparamInfoGET /dns/viewparam/infoDisplay the properties of a DNS option set on a view
SoliDserverApi.DnsApidnsViewparamListGET /dns/viewparam/listList the DNS options of a view
SoliDserverApi.DnsApidnsZoneAddPOST /dns/zone/addAdd a zone
SoliDserverApi.DnsApidnsZoneCountGET /dns/zone/countCount the number of zones
SoliDserverApi.DnsApidnsZoneDeleteDELETE /dns/zone/deleteDelete a zone
SoliDserverApi.DnsApidnsZoneEditPUT /dns/zone/editEdit a zone
SoliDserverApi.DnsApidnsZoneInfoGET /dns/zone/infoDisplay the properties of a zone
SoliDserverApi.DnsApidnsZoneListGET /dns/zone/listList the DNS options of a zone
SoliDserverApi.DnsApidnsZoneparamAddPOST /dns/zoneparam/addAdd a DNS option on a zone
SoliDserverApi.DnsApidnsZoneparamCountGET /dns/zoneparam/countCount the number of DNS options of a zone
SoliDserverApi.DnsApidnsZoneparamDeleteDELETE /dns/zoneparam/deleteDelete a DNS option from a zone
SoliDserverApi.DnsApidnsZoneparamEditPUT /dns/zoneparam/editEdit a DNS option on a zone
SoliDserverApi.DnsApidnsZoneparamInfoGET /dns/zoneparam/infoDisplay the properties of a DNS option set on a zone
SoliDserverApi.DnsApidnsZoneparamListGET /dns/zoneparam/listList the DNS options of a zone
SoliDserverApi.GuardianApiguardianPolicyAddPOST /guardian/policy/addAdd a policy
SoliDserverApi.GuardianApiguardianPolicyCountGET /guardian/policy/countCount the number of policies
SoliDserverApi.GuardianApiguardianPolicyDeleteDELETE /guardian/policy/deleteDelete a policy
SoliDserverApi.GuardianApiguardianPolicyEditPUT /guardian/policy/editEdit a policy
SoliDserverApi.GuardianApiguardianPolicyInfoGET /guardian/policy/infoDisplay the properties of a policy
SoliDserverApi.GuardianApiguardianPolicyListGET /guardian/policy/listList the policies
SoliDserverApi.IpamApiipamAddress6AddPOST /ipam/address6/addAdd an IPv6 address
SoliDserverApi.IpamApiipamAddress6CountGET /ipam/address6/countCount the number of IPv6 addresses
SoliDserverApi.IpamApiipamAddress6DeleteDELETE /ipam/address6/deleteDelete an IPv6 address
SoliDserverApi.IpamApiipamAddress6EditPUT /ipam/address6/editEdit an IPv6 address
SoliDserverApi.IpamApiipamAddress6InfoGET /ipam/address6/infoDisplay the properties of an IPv6 address
SoliDserverApi.IpamApiipamAddress6ListGET /ipam/address6/listList the IPv6 addresses
SoliDserverApi.IpamApiipamAddressAddPOST /ipam/address/addAdd an IPv4 address
SoliDserverApi.IpamApiipamAddressCountGET /ipam/address/countCount the number of IPv4 addresses
SoliDserverApi.IpamApiipamAddressDeleteDELETE /ipam/address/deleteDelete an IPv4 address
SoliDserverApi.IpamApiipamAddressEditPUT /ipam/address/editEdit an IPv4 address
SoliDserverApi.IpamApiipamAddressInfoGET /ipam/address/infoDisplay the properties of an IPv4 address
SoliDserverApi.IpamApiipamAddressListGET /ipam/address/listList the IPv4 addresses
SoliDserverApi.IpamApiipamAlias6AddPOST /ipam/alias6/addAdd an IPv6 address alias
SoliDserverApi.IpamApiipamAlias6CountGET /ipam/alias6/countCount the number of aliases of an IPv6 address
SoliDserverApi.IpamApiipamAlias6DeleteDELETE /ipam/alias6/deleteDelete an IPv6 address alias
SoliDserverApi.IpamApiipamAlias6EditPUT /ipam/alias6/editEdit an IPv6 address alias
SoliDserverApi.IpamApiipamAlias6ListGET /ipam/alias6/listList the aliases of an IPv6 address
SoliDserverApi.IpamApiipamAliasAddPOST /ipam/alias/addAdd an IPv4 address alias
SoliDserverApi.IpamApiipamAliasCountGET /ipam/alias/countCount the number of aliases of an IPv4 address
SoliDserverApi.IpamApiipamAliasDeleteDELETE /ipam/alias/deleteDelete an IPv4 address alias
SoliDserverApi.IpamApiipamAliasEditPUT /ipam/alias/editEdit an IPv4 address alias
SoliDserverApi.IpamApiipamAliasListGET /ipam/alias/listList the aliases of an IPv4 address
SoliDserverApi.IpamApiipamNetwork6AddPOST /ipam/network6/addAdd an IPv6 block/subnet-type network
SoliDserverApi.IpamApiipamNetwork6CountGET /ipam/network6/countCount the number of IPv6 block/subnet-type networks
SoliDserverApi.IpamApiipamNetwork6DeleteDELETE /ipam/network6/deleteDelete an IPv6 block/subnet-type network
SoliDserverApi.IpamApiipamNetwork6EditPUT /ipam/network6/editEdit an IPv6 block/subnet-type network
SoliDserverApi.IpamApiipamNetwork6InfoGET /ipam/network6/infoDisplay the properties of an IPv6 block/subnet-type network
SoliDserverApi.IpamApiipamNetwork6ListGET /ipam/network6/listList the IPv6 block/subnet-type networks
SoliDserverApi.IpamApiipamNetworkAddPOST /ipam/network/addAdd an IPv4 block/subnet-type network
SoliDserverApi.IpamApiipamNetworkCountGET /ipam/network/countCount the number of IPv4 block/subnet-type networks
SoliDserverApi.IpamApiipamNetworkDeleteDELETE /ipam/network/deleteDelete an IPv4 block/subnet-type network
SoliDserverApi.IpamApiipamNetworkEditPUT /ipam/network/editEdit an IPv4 block/subnet-type network
SoliDserverApi.IpamApiipamNetworkInfoGET /ipam/network/infoDisplay the properties of an IPv4 block/subnet-type network
SoliDserverApi.IpamApiipamNetworkListGET /ipam/network/listList the IPv4 block/subnet-type networks
SoliDserverApi.IpamApiipamPool6AddPOST /ipam/pool6/addAdd an IPv6 pool
SoliDserverApi.IpamApiipamPool6CountGET /ipam/pool6/countCount the number of IPv6 pools
SoliDserverApi.IpamApiipamPool6DeleteDELETE /ipam/pool6/deleteDelete an IPv6 pool
SoliDserverApi.IpamApiipamPool6EditPUT /ipam/pool6/editEdit an IPv6 pool
SoliDserverApi.IpamApiipamPool6InfoGET /ipam/pool6/infoDisplay the properties of an IPv6 pool
SoliDserverApi.IpamApiipamPool6ListGET /ipam/pool6/listList the IPv6 pools
SoliDserverApi.IpamApiipamPoolAddPOST /ipam/pool/addAdd an IPv4 pool
SoliDserverApi.IpamApiipamPoolCountGET /ipam/pool/countCount the number of IPv4 pools
SoliDserverApi.IpamApiipamPoolDeleteDELETE /ipam/pool/deleteDelete an IPv4 pool
SoliDserverApi.IpamApiipamPoolEditPUT /ipam/pool/editEdit an IPv4 pool
SoliDserverApi.IpamApiipamPoolInfoGET /ipam/pool/infoDisplay the properties of an IPv4 pool
SoliDserverApi.IpamApiipamPoolListGET /ipam/pool/listList the IPv4 pools
SoliDserverApi.IpamApiipamSpaceAddPOST /ipam/space/addAdd a space
SoliDserverApi.IpamApiipamSpaceCountGET /ipam/space/countCount the number of spaces
SoliDserverApi.IpamApiipamSpaceDeleteDELETE /ipam/space/deleteDelete a space
SoliDserverApi.IpamApiipamSpaceEditPUT /ipam/space/editEdit a space
SoliDserverApi.IpamApiipamSpaceInfoGET /ipam/space/infoDisplay the properties of a space
SoliDserverApi.IpamApiipamSpaceListGET /ipam/space/listList the spaces
SoliDserverApi.VlanApivlanDomainAddPOST /vlan/domain/addAdd a VLAN domain
SoliDserverApi.VlanApivlanDomainCountGET /vlan/domain/countCount the number of VLAN domains
SoliDserverApi.VlanApivlanDomainDeleteDELETE /vlan/domain/deleteDelete a VLAN domain
SoliDserverApi.VlanApivlanDomainEditPUT /vlan/domain/editEdit a VLAN domain
SoliDserverApi.VlanApivlanDomainInfoGET /vlan/domain/infoDisplay the properties of a VLAN domain
SoliDserverApi.VlanApivlanDomainListGET /vlan/domain/listList the VLAN domains
SoliDserverApi.VlanApivlanRangeAddPOST /vlan/range/addAdd a VLAN range
SoliDserverApi.VlanApivlanRangeCountGET /vlan/range/countCount the number of VLAN ranges
SoliDserverApi.VlanApivlanRangeDeleteDELETE /vlan/range/deleteDelete a VLAN range
SoliDserverApi.VlanApivlanRangeEditPUT /vlan/range/editEdit a VLAN range
SoliDserverApi.VlanApivlanRangeInfoGET /vlan/range/infoDisplay the properties of a VLAN range
SoliDserverApi.VlanApivlanRangeListGET /vlan/range/listList the VLAN ranges
SoliDserverApi.VlanApivlanVlanAddPOST /vlan/vlan/addAdd a VLAN
SoliDserverApi.VlanApivlanVlanCountGET /vlan/vlan/countCount the number of VLANs
SoliDserverApi.VlanApivlanVlanDeleteDELETE /vlan/vlan/deleteDelete a VLAN
SoliDserverApi.VlanApivlanVlanEditPUT /vlan/vlan/editEdit a VLAN
SoliDserverApi.VlanApivlanVlanInfoGET /vlan/vlan/infoDisplay the properties of a VLAN
SoliDserverApi.VlanApivlanVlanListGET /vlan/vlan/listList the VLANs

Documentation for Authorization

BasicAuth

  • Type: HTTP basic authentication

HttpHeaderLoginKey

  • Type: API key
  • API key parameter name: X-IPM-Username
  • Location: HTTP header

HttpHeaderPasswordKey

  • Type: API key
  • API key parameter name: X-IPM-Password
  • Location: HTTP header