uint count = 0;
MMSOAP.Property[] props;
// This will fail because GetProperties() does not know the type of "my.zone."
props = mmSoap.GetProperties(mySession, "my.zone.", MMSOAP.ObjectType.Unknown, false, false, false);
// This will fail if there are multiple zones with the name "my.zone."
props = mmSoap.GetProperties(mySession, "my.zone.", ObjectType.DNSZone, true, false, false);
// This will select the first instance of "my.zone." to work on
MMSOAP.DNSZone[] zones = mmSoap.GetDNSZones(mySession, "name:my.zone.", 0, false, 0, false, "name", MMSOAP.SortOrder.Ascending, true, out count);
props = mmSoap.GetProperties(mySession, zones[0].@ref, MMSOAP.ObjectType.Unknown, false, false, false);
For object types where the "name" element can be non-unique, if a command is called giving an object reference, which is a non-unique name, an exception is thrown stating that the specified reference matches multiple objects.
But even for (some of) these object types, there is a way to reference objects with non-unique names:
- For zones, the reference can be in the format
[[servername:]viewname:]zonename
- For scopes, the reference can be in the format or
- For views, the reference can be in the format
For example, to delete a zone called test.com. from the default view on server dns1.com:
<RemoveObject>
<ref>dns1.com.::test.com.</ref>
<objType>DNSZone</objType>
</RemoveObject>
Filtering
The filter is a powerful argument that can be provided with many of the get methods. It allows you to limit the result to only those items you want to retrieve. You can use different kinds of operators, wildcards and regular expressions in a filter.
As of version 9.1 a new, highly optimized and user friendly, filter syntax was added. Before that version, Micetro had a filter syntax that mainly focused on regular expressions and only had a limited set of operators (i.e. metric operators >, =, <). Using operators can come really handy when you are trying to limit your result on properties rather then plain strings. Even though the new filter syntax has been introduced, the old filter syntax can still be used for backwards compatibility.
List of operators and meaning:
operator | meaning |
---|
=, == | Is equal |
!= | Is not equal |
>, >= | Larger than, larger than or equal |
<, <= | Smaller than, smaller than or equal |
=@ | Contains |
!@ | Does not contain |
=^ | Starts with |
!^ | Does not start with |
=$ | Ends with |
!$ | Does not end with |
=~ | Matches regular expression |
!~ | Does not match regular expression |
in (v1, v2, ...) | Equal to one of the values |
not in (v1, v2, ...) | Not equal to any of the values |
Special keywords: AND, OR, NOT, ! (Note that special keywords can be in either uppercase or lowercase).
Examples of how the filters can be used:
Return all items that contain the string "mycorp" in any property:
Return all items that contain the string "mycorp" in the property "name":
Return all items that have the property "name" starting with "mycorp":
Return all items that do not have the property "name" ending with "mycorp":
If the text must contain whitespace, it must be quoted so to find all items not starting with "requested by" on the property "comment":
The same applies if the property name contains whitespace, so to filter by string "mycorp" on property "Company Name":
To combine more than one filter clause together you can use the keywords: AND and OR. For example to find all A records with the name "rec":
You can use parentheses to enforce the precedence of operators. To search for all records with the name "rec" and of type A, AAAA or CNAME:
name=rec AND (type=A OR type=AAAA OR type=CNAME)
The in operator can be used as well to get the same result:
name=rec AND type in(A,AAAA,CNAME)
Get all IP ranges in the range 10.0.0.0 - 10.10.255.255:
from >= 10.0.0.0 and to <= 10.10.255.255
Time and date can be expressed in multiple ways. You can use the Internet date and time format (RFC 3339), i.e. "2018-12-01T17:18:19" or you can use date and time expression relative to current date and time, i.e. "-1w" means the date and time one week ago.
Relative date and time should be on the following form:
where <number> is any number and <time unit> can be any of the following: s (seconds), m (minutes), h (hours), d (days), w (weeks), M (months), y (years).
As an example of how to to use date and time to get all IP ranges that where created after 2018-01-01 use:
created <= "2018-01-01T00:00:00"
To get all ranges created in the last month use:
Types
ADForest
Contains all properties for an AD Forest object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | No | No | The name of the AD Forest. |
catalogServer | string | No | Yes | Global catalog server to which Micetro connects for retrieving sites and subnets. |
userName | string | No | Yes | User name used when connecting to the global catalog server. |
password | string | No | Yes | Password used when connecting to the global catalog server. |
readOnly | boolean | No | No | Determines if the forest is read-only. |
ArrayOfADForest
Elements
ADReplicationOption
Active Directory zone replication.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ADReplicationType | Yes | No | Active Directory zone replication type. |
partition | string | Yes | No | application directory partition to use if type is 'partition'. |
ADReplicationType
Defines possible replication types for an AD integrated zone.
Enumerations
Name | Description |
---|
None | No replication. |
To_All_DNS_Servers_In_AD_Forrest | Replicate to all DNS servers in an AD forest. |
To_All_DNS_Servers_In_AD_Domain | Replicate to all DNS servers in an AD domain. |
To_All_Domain_Controllers_In_AD_Domain | Replicate to all domain controllers in an AD domain. |
To_All_Domain_Controllers_In_Specified_Partition | Replicate to all domain controllers in a specified partition. |
Unavailable | Replication is unavailable. |
ADSite
Contains all properties for an AD Site object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the AD Site. |
description | string | Yes | Yes | A description of the AD Site. |
location | string | Yes | Yes | The location of the AD Site. |
adForestRef | ObjRef | Yes | No | A reference to the AD Forest to which the AD Site belongs. |
ArrayOfADSite
Elements
ADSiteLink
Contains all properties for an AD Site Link object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the AD Site Link. |
description | string | No | Yes | A description of the AD Site Link. |
cost | unsignedInt | No | No | A metric used by AD to determine which site links have precedent over other site links. |
replInterval | unsignedInt | No | No | Replication interval. Defines the interval (in minutes) between performing AD replications. |
siteList | ArrayOfString | No | Yes | List of AD Sites that this Site Link links together. |
adForestRef | ObjRef | Yes | No | A reference to the AD Forest to which the AD Site Link belongs. |
ArrayOfADSiteLink
Elements
ASCII
A string limited to ASCII character set
AWSCloudServiceInfo
Contains information about a AWS cloud service account.
Elements
Name | Type | Required | Nillable | Description |
---|
regions | ArrayOfRegion | Yes | No | Resource groups within the cloud service account. |
AWSLogin
Contains all information needed to log into an AWS account.
Elements
Name | Type | Required | Nillable | Description |
---|
accessKeyID | string | Yes | Yes | Access Key ID for the AWS account to log into. |
secretAccessKey | string | Yes | Yes | Secret access key for the AWS account to log into. |
AccessEntry
Contains the name and setting for an access entry relevant to an object.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the access entry. |
access | AccessType | Yes | No | The setting for the access entry. |
ArrayOfAccessEntry
Elements
AccessType
Defines possible access for an object property.
Enumerations
Name | Description |
---|
Unspecified | No access specified. |
Allow | Allow access. |
Deny | Deny access. |
Address
Contains all properties for an address.
Elements
Name | Type | Required | Nillable | Description |
---|
id | unsignedInt | Yes | No | Unique identifier for the address. |
address | string | Yes | No | The address. |
claimed | boolean | Yes | No | Determines whether the address is claimed. |
host | string | Yes | Yes | Comma separated list of fully qualified DNS host names associated with the address. |
lastseen | unsignedInt | Yes | No | Timestamp when the address was last seen during discovery (ping). |
lastdiscovery | unsignedInt | Yes | No | Timestamp when discovery (ping) was last performed for the address. |
customProperties | ArrayOfProperty | Yes | Yes | The custom properties for the address. |
ArrayOfAddress
Elements
AddressBlock
Contains all properties for an address block.
Elements
Name | Type | Required | Nillable | Description |
---|
from | IPAddress | Yes | No | The starting IP address of the address block. |
to | IPAddress | Yes | No | The ending IP address of the address block. |
ArrayOfAddressBlock
Elements
AddressSpace
Contains all properties for an address space object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the address space. |
description | string | No | Yes | A description of the address space. |
ArrayOfAddressSpace
Elements
AddressUtilizationHistory
Address utilization data that has been aggregated by date.
Elements
Name | Type | Required | Nillable | Description |
---|
timestamp | unsignedInt | Yes | No | Timestamp that includes the date aggregated by. |
measurecount | unsignedInt | Yes | No | The number of measurements that were aggregated. |
mean | unsignedInt | Yes | No | The mean of aggregated numbers. |
max | unsignedInt | Yes | No | The max of aggregated numbers. |
min | unsignedInt | Yes | No | The min of aggregated numbers. |
AddressUtilizationHistorySeries
Contains address utilization data that has been aggregated as part of history calculations.
Elements
Name | Type | Required | Nillable | Description |
---|
isdynamic | unsignedInt | Yes | No | States if the data is for the static or dynamic part of an address range. |
size | unsignedInt | Yes | No | Total number of addresses for the requested address range. |
availableAddresses | unsignedInt | Yes | No | Number of available addresses within an address range. |
addressUtilizationHistory | AddressUtilizationHistory | No | No | Address utilization data aggregated by date. |
AddressUtilizationRecent
Address utilization measurement.
Elements
Name | Type | Required | Nillable | Description |
---|
timestamp | unsignedInt | Yes | No | Timestamp that signals when the measurements were taken. |
value | unsignedInt | Yes | No | The number of addresses in use. |
AddressUtilizationRecentSeries
Contains recent address utilization data which gives information about each measurement made, these numbers will be aggregated together at a certain age for space saving reasons.
Elements
Name | Type | Required | Nillable | Description |
---|
isdynamic | unsignedInt | Yes | No | States if the data is for the static or dynamic part of an address range. |
size | unsignedInt | Yes | No | Total number of addresses for the requested address range. |
availableAddresses | unsignedInt | Yes | No | Number of available addresses within an address range. |
addressUtilizationRecent | AddressUtilizationRecent | No | No | Address utilization measurement. |
AkamaiLogin
Contains all information needed to log into a Akamai account.
Elements
Name | Type | Required | Nillable | Description |
---|
host | string | Yes | No | The base hostname (without scheme) for the Akamai account to log into. |
clientToken | string | Yes | No | Client Token for the Akamai account to log into. |
clientSecret | string | Yes | No | Client Secret for the Akamai account to log into. |
accessToken | string | Yes | No | Access Token for the Akamai account to log into. |
zonesList | ArrayOfString | No | Yes | Deprecated, will be removed in future versions. |
AllowTransferOption
Definition of servers that should be allowed to receive a zone transfer from the DNS server.
Elements
Name | Type | Required | Nillable | Description |
---|
allowTo | AllowTransferTo | Yes | No | Types of servers that should be allowed to receive a zone transfer. |
allowToServers | ArrayOfIPAddress | No | Yes | List of servers that should be allowed to receive a zone transfer. |
AllowTransferTo
Possible values for allow-update DNS zone option.
Enumerations
Name | Description |
---|
any | Allow zone transfers to any host. |
none | Deny zone transfers to all hosts. |
authoritative | Allow zone transfers to authoritative hosts. |
listed | Allow zone transfers to the listed hosts. |
AllowUpdateFrom
Possible values for allow-update DNS zone option.
Enumerations
Name | Description |
---|
none | Do not allow dynamic updates. |
secure | Allow secure dynamic updates. |
both | Allow both secure and unsecure dynamic updates. |
ApplianceState
Defines possible Appliance states.
Enumerations
Name | Description |
---|
Unknown | Appliance status is unknown. |
OK | Appliance is OK. |
Unreachable | Appliance is offline or otherwise unreachable. |
Out of date | Appliance has a different version than Central. |
Updating | Appliance is being updated. |
Uninitialized | Appliance is uninitialized and needs to be manually initialized. |
AuthServeSpecificDNSZoneOptions
Contains all properties for options specific to an AuthServe zone.
Elements
Name | Type | Required | Nillable | Description |
---|
any |
AuthenticationType
Defines possible authentication types for a user that is logging in.
Enumerations
Name | Description |
---|
Internal | Internal authentication. |
AD | Active Directory authentication. |
ADGroup | Active Directory group-level authentication. |
RADIUS | RADIUS authentication. |
External | External authentication provider. |
AwsAccountSubscriptionDetails
Contains further information about an AWS accountSubscription.
Elements
Name | Type | Required | Nillable | Description |
---|
alias | string | No | Yes | The account alias of the AWS accountSubscription |
regions | ArrayOfString | No | Yes | Regions/locations in the accountSubscription. |
AzureAccountSubscriptionDetails
Contains further information about an Azure accountSubscription.
Elements
Name | Type | Required | Nillable | Description |
---|
resourceGroups | ArrayOfString | No | Yes | Resource groups in the accountSubscription. |
regions | ArrayOfString | No | Yes | Regions/locations in the accountSubscription. |
AzureCloudServiceInfo
Contains information about a Azure cloud service account.
Elements
Name | Type | Required | Nillable | Description |
---|
resourceGroups | ArrayOfResourceGroup | Yes | No | Resource groups within the cloud service account. |
AzureLogin
Contains all information needed to log into an Azure account.
Elements
Name | Type | Required | Nillable | Description |
---|
subscriptionID | string | Yes | No | Subscription ID for the Azure account to log into. |
tenantID | string | Yes | No | Tenant ID for the Azure account to log into. |
clientID | string | Yes | Yes | Client ID for the Azure account to log into. |
clientSecret | string | Yes | No | Client secret for the Azure account to log into. |
isGovernment | boolean | No | No | Use Azure Government. Defaults to false. |
BINDSpecificDNSZoneOptions
Contains all properties for options specific to a BIND DNS zone.
Elements
Name | Type | Required | Nillable | Description |
---|
allowQuery | ArrayOfString | No | Yes | ACL listing hosts and subnets allowed to query the zone. |
allowTransfer | ArrayOfString | No | Yes | ACL listing hosts and subnets allowed to retrieve a zone transfer. |
allowNotify | ArrayOfString | No | Yes | ACL specifying which hosts may send NOTIFY messages to inform this server of changes to zones for which it is acting as a secondary server. Only applicable for secondary zones. |
alsoNotify | ArrayOfString | No | Yes | Defines one or more hosts that are sent NOTIFY messages when zone changes occur. |
notify | string | No | Yes | Controls whether NOTIFY messages are sent on zone changes. |
notifySource | IPAddress | No | Yes | Defines the IPv4 address (and optional port) to be used for outgoing NOTIFY messages. |
notifySourceV6 | IPAddress | No | Yes | Defines the IPv6 address (and optional port) to be used for outgoing NOTIFY messages. |
transferSource | IPAddress | No | Yes | Defines local IPv4 address(es) bound to TCP connections used to fetch zones transferred inbound by the server. |
transferSourceV6 | IPAddress | No | Yes | Defines local IPv6 address(es) bound to TCP connections used to fetch zones transferred inbound by the server. |
zonefile | string | No | Yes | Location of zone file on disk. |
forwarders | ArrayOfIPAddress | No | Yes | List of forwarders for the zone. |
serverAddresses | ArrayOfIPAddress | No | Yes | List of server addresses for the static-stub zone. |
serverNames | ArrayOfString | No | Yes | List of server names for the static-stub zone. |
CachedDNSEntry
Contains an entry from a DNS cache.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the DNS record. |
data | string | Yes | No | Contains the record data in a tab-separated list. |
type | DNSRecordType | Yes | No | Specifies the type of the DNS record. |
ttl | string | Yes | No | Specifies the Time-To-Live of the DNS record. |
aging | unsignedInt | No | No | The aging timestamp of dynamic records in AD integrated zones. |
negative | boolean | No | No | True if the cache entry is a negative cache entry. |
ArrayOfCachedDNSEntry
Elements
ChangeRequest
Contains all properties for a change request object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
requester | string | Yes | No | The name of the user that made the change request. |
state | ChangeRequestState | Yes | No | The state of the change request. |
objType | ChangeRequestType | Yes | No | The type of change request being requested. |
action | ChangeRequestAction | No | No | The action to take when processing the request, defaults to "Request". |
creationDate | DateTime | No | No | The date and time, when the change request was created. |
requestDate | DateTime | No | No | The date and time, when the change request should be applied, if specified. |
customProperties | ArrayOfProperty | Yes | Yes | The custom properties for the change request. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
processedDate | DateTime | No | No | The date and time, when the change request was approved or rejected. |
dnsZoneChanges | ArrayOfDNSZoneChange | No | No | DNS zone changes associated with the change request. |
dnsRecordChanges | ArrayOfDNSRecordChange | No | No | DNS record changes associated with the change request. |
dhcpScopeChanges | ArrayOfDHCPScopeChange | No | No | DHCP scope changes associated with the change request. |
dhcpReservationChanges | ArrayOfDHCPReservationChange | No | No | DHCP reservation changes associated with the change request. |
dhcpExclusionChanges | ArrayOfDHCPExclusionChange | No | No | DHCP exclusion changes associated with the change request. |
dhcpAddressPoolChanges | ArrayOfDHCPAddressPoolChange | No | No | DHCP address pool changes associated with the change request. |
dhcpOptionChanges | ArrayOfDHCPOptionChange | No | No | DHCP option changes associated with the change request. |
rangeChanges | ArrayOfRangeChange | No | No | Range changes associated with the change request. |
configFileChanges | ArrayOfConfigFileChange | No | No | Configuration file changes associated with the change request. |
customPropertyChanges | ArrayOfCustomPropertyChange | No | No | CustomProperty changes associated with the change request. |
ArrayOfChangeRequest
Elements
ChangeRequestAction
Defines how the change request is processed.
Enumerations
Name | Description |
---|
Request | Submitted for approval (default) |
Apply | Applied immediately if the requester has sufficient access. |
Validate | Only perform validation. |
ChangeRequestError
Describes change request errors in a change request.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | An optional reference to the object which caused the change request error. |
message | string | Yes | No | A detailed description of the error. |
title | string | No | Yes | An optional name for the error message |
description | string | No | Yes | An optional description of the error. |
type | ChangeRequestErrorType | Yes | No | The change request error type. |
ArrayOfChangeRequestError
Elements
ChangeRequestErrorType
Defines possible change request errors.
Enumerations
Name | Description |
---|
Error | An error that cannot caused the change not to occur. |
Warning | Change passed but produced a warning. |
ChangeRequestState
Defines possible change request states.
Enumerations
Name | Description |
---|
Pending | Pending approval/rejection. |
Approved | Approved, waiting to be applied. |
Rejected | Rejected |
Applied | Applied |
Failed | Failed to be applied. |
ChangeRequestType
Defines possible change request types.
Enumerations
Name | Description |
---|
Unknown | Unknown change request type. |
DNSZone | DNS zone change request. |
DHCPScope | DHCP scope change request. |
DHCPReservation | DHCP reservation change request. |
DHCPAddressPool | DHCP address pool change request. |
DNSRecord | DNS resource record change request. |
DHCPExclusion | DHCP exclusion change request. |
DHCPOption | DHCP option change request. |
CustomProperties | Custom properties change request. |
Range | Range change request. |
ConfigFile | Configuration file change request. |
ArrayOfChangeRequestType
Elements
ChangeType
Defines possible change types.
Enumerations
Name | Description |
---|
Add | Add. |
Modify | Modify. |
Remove | Remove. |
ClientClassAssociation
Contains information of client class associated with scope or pool
Elements
Name | Type | Required | Nillable | Description |
---|
objRef | ObjRef | Yes | No | A unique reference ID to scope or pool |
objName | string | Yes | No | Address of the pool or scope |
clientClassRef | ObjRef | Yes | No | A unique reference ID to the client class |
clientClassName | string | Yes | No | Name of the client class |
ArrayOfClientClassAssociation
Elements
ClientType
Defines possible user client types.
Enumerations
Name | Description |
---|
None | Client unknown or not used. |
MMMC | Management console (deprecated). |
MMCMD | Command line (deprecated). |
Web App | Web application. |
REST | REST API. |
JSON RPC | JSON RPC API. |
SOAP | SOAP API. |
CloudAccountSubscription
Contains properties for a CloudAccountSubscription object
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | A unique reference ID for the object. |
cloudServiceRef | ObjRef | Yes | No | A unique reference ID for the accountSubscription's Cloud Service. |
name | string | Yes | No | The name of the CloudAccountSubscription. |
identifier | string | Yes | Yes | The identifier of the CloudAccountSubscription that originates from the cloud provider. |
accountSubscriptionDetails | CloudAccountSubscriptionDetails | No | Yes | Further details about a CloudAccountSubscription. |
dnsServerRef | ObjRef | No | Yes | A unique reference to the accountSubscription's DNS server. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the CloudAccountSubscription. |
ArrayOfCloudAccountSubscription
Elements
CloudAccountSubscriptionDetails
Further details about a CloudAccountSubscription.
Elements
CloudDeviceInfo
Contains all properties for a device as supplied by the cloud provider.
Elements
Name | Type | Required | Nillable | Description |
---|
state | string | No | Yes | The state of the cloud device as reported by the cloud provider. |
platform | string | No | Yes | The cloud device platform as reported by the cloud provider. |
privateDNSName | string | No | Yes | The private DNS name of a cloud device as provided by the cloud provider. |
publicIPAddress | IPAddress | No | Yes | The public IP address of a cloud device as provided by the cloud provider. |
CloudLinkLogin
Contains all information needed to connect to a cloud account with cloudlink.
Elements
Name | Type | Required | Nillable | Description |
---|
credentials | string | Yes | Yes | A JSON string containing information required to connect to the cloud account |
CloudNetwork
Contains all properties for a virtual cloud network object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the cloud network. |
cloudRef | ObjRef | Yes | No | Reference for the cloud service account to which the cloud network belongs. |
resourceGroup | string | No | Yes | The resource group for the network to reside in. Applies only to Azure. |
region | string | No | Yes | Region or location for the network to be placed in. |
addressBlocks | ArrayOfCIDR | No | Yes | The address blocks for the network in CIDR notation. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the cloud network. |
ArrayOfCloudNetwork
Elements
CloudService
Contains properties for a Cloud Service object
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the Cloud Service. |
type | CloudType | Yes | No | The type of the Cloud Service. |
loginInformation | LoginInformation | Yes | No | Information used to log into the cloud service. |
enableDNS | boolean | Yes | No | True if DNS is enabled for the Cloud Service |
enableIPAM | boolean | Yes | No | True if IPAM is enabled for the Cloud Service |
subType | string | No | Yes | The subType of the Cloud Service if applicable. |
ArrayOfCloudService
Elements
CloudServiceAccount
Contains all properties needed for a cloud service account.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | A name for the cloud service account. |
type | CloudType | Yes | No | The type of cloud service. |
resourceGroups | ArrayOfString | No | Yes | Resource groups in the cloud service. |
regions | ArrayOfString | No | Yes | Regions/locations in the cloud service. |
loginInformation | LoginInformation | Yes | No | Information needed logging into the cloud service. |
configuration | CloudServiceConfiguration | No | No | Controls how the cloud service account is integrated into Micetro. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the cloud account. |
ArrayOfCloudServiceAccount
Elements
CloudServiceConfiguration
Defines how Micetro connects to a cloud service.
Elements
Name | Type | Required | Nillable | Description |
---|
enableIPAM | boolean | No | No | Synchronize virtual networks and subnets, when applicable. |
enableDNS | boolean | No | No | Synchronize DNS service, when applicable. |
dnsServerRef | ObjRef | No | Yes | Reference to DNS service in cloud. |
CloudServiceInfo
Contains information about the cloud service account.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the cloud service account. |
awsCloudServiceInfo | AWSCloudServiceInfo | No | Yes | Contains information about a AWS cloud service account. |
azureCloudServiceInfo | AzureCloudServiceInfo | No | Yes | Contains information about a Azure cloud service account. |
CloudSubnet
Contains all properties for a cloud subnet associated with a range.
Elements
Name | Type | Required | Nillable | Description |
---|
rangeRef | ObjRef | Yes | No | Reference to the address range associated with the cloud subnet. |
allocationPools | ArrayOfAddressBlock | No | Yes | Specifies addresses in subnet which should be available for dynamic allocation. If omitted/empty when placing subnet in cloud network, defaults to all addresses in subnet. |
ArrayOfCloudSubnet
Elements
CloudTag
Contains a reference to a cloud tag.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the tag. |
cloudRef | ObjRef | Yes | No | The cloud account ID |
ArrayOfCloudTag
Elements
CloudType
Defines possible cloud types.
Enumerations
Name | Description |
---|
Unknown | Unknown cloud type. |
OpenStack | OpenStack cloud. |
CloudStack | CloudStack cloud. |
Azure | Azure cloud. |
AWS | AWS cloud. |
NS1 | NS1 cloud service. |
Dyn | Dyn cloud service. |
Akamai | Akamai cloud service. |
CloudLink | A cloud service connected to CloudLink |
ClusterMember
Contains all properties for a high availability cluster member.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the cluster member. |
priority | unsignedInt | Yes | No | The priority of the cluster member. |
state | ClusterMemberState | Yes | No | The state of the cluster member. |
heartbeat | DateTime | No | No | Timestamp when server was last seen. |
inStateSince | DateTime | Yes | No | Timestamp of last state change. |
ArrayOfClusterMember
Elements
ClusterMemberState
Defines possible states of a high availability cluster member.
Enumerations
Name | Description |
---|
Offline | Cluster member is offline and unavailable. |
Startup | Cluster member is starting up and will be available shortly. |
Standby | Cluster member is on standby while another server is active and available for failover. |
Maintenance | Cluster member is in maintenance mode, and will be available shortly. |
Active | Cluster member is active and running normally. |
Updating | Cluster member is being updated. |
ConfigFile
Contains a configuration file
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | No | Yes | The type of option file |
modificationDate | string | No | Yes | The date and time of last modification |
content | string | Yes | Yes | The option file |
ArrayOfConfigFile
Elements
ConfigFileChange
Contains a configuration file change
Elements
Name | Type | Required | Nillable | Description |
---|
state | ChangeRequestState | No | No | The state of the configuration file change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the configuration file change. |
ref | ObjRef | No | No | The object ref of the DNS Server or DNS Zone that the configuration files belong to. |
configFilesBefore | ArrayOfConfigFile | No | No | The configuration files as they are before the change is made. |
configFilesAfter | ArrayOfConfigFile | No | No | The configuration files to change to. |
ArrayOfConfigFileChange
Elements
ConfigSource
The source of the config the be prepared
Elements
Name | Type | Required | Nillable | Description |
---|
serverRef | ObjRef | No | Yes | The object reference to the orchestration server to use as source |
configTimestamp | string | No | Yes | The timestamp of the config backup to use as source |
CustomFilter
Contains all properties for a custom filter object.
Elements
Name | Type | Required | Nillable | Description |
---|
id | unsignedInt | No | No | A unique ID for the object. |
type | unsignedInt | No | No | The object type for the filter. |
name | string | Yes | No | The name of the filter. |
filter | string | Yes | No | The filter string. |
folderRef | string | No | Yes | If the filter is in a folder, then this is a valid folder reference. If the filter is not in a folder, then this is an empty string. |
readOnly | boolean | Yes | No | True if the filter read only, else false. |
ArrayOfCustomFilter
Elements
CustomPropertyChange
Contains all properties for a custom property change object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | The object ref that the custom properties belong to. |
type | ChangeType | Yes | No | The type of the custom property change. |
state | ChangeRequestState | No | No | The state of the custom property change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the custom property change. |
objType | ObjectType | No | No | The type of the object for which custom properties should be set. |
customPropertiesBefore | ArrayOfProperty | No | No | The custom properties as they were before the change (omitted when type is Add). |
customPropertiesAfter | ArrayOfProperty | No | No | The custom properties as they should be after change has been applied (omitted when type is Remove). |
ArrayOfCustomPropertyChange
Elements
DCHPScopeOptionsReportEntry
Contains information about DHCP scopes returned by DHCP scope options report.
Elements
Name | Type | Required | Nillable | Description |
---|
dhcpServerName | string | Yes | No | The name of the DHCP server containing the DHCP scope. |
dhcpScopeName | string | Yes | No | The name of the DHCP scope. |
optionValue | string | Yes | Yes | The option value set for the DHCP scope. |
inherited | boolean | Yes | No | Specifies whether the option value is inherited. |
ArrayOfDCHPScopeOptionsReportEntry
Elements
DHCPAddressPool
Contains all properties for a DHCP address pool object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | No | No | The name of the DHCP address pool. |
from | IPAddress | No | No | The start address of the DHCP address pool. |
to | IPAddress | No | No | The end address of the DHCP address pool. |
failoverPeer | string | No | No | The name of the failover peer if the address pool is on an ISC DHCP server with failover peer(s) defined. |
failoverRelationship | string | No | No | The name of the failover relationship if the address pool is on an MS DHCP server with failover(s) defined. Read-only property. |
role | string | No | No | The role of the pool in a redundancy setup. |
dhcpScopeRef | ObjRef | Yes | No | A unique reference ID of the scope that contains the address pool. |
ArrayOfDHCPAddressPool
Elements
DHCPAddressPoolChange
Contains all properties for a DHCP address pool change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ChangeType | Yes | No | The type of the DHCP address pool change. |
state | ChangeRequestState | No | No | The state of the DHCP address pool change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DHCP address pool change. |
changeIndex | unsignedInt | No | No | The index of the DHCP address pool change within the change request which contains the DHCP address pool change. |
dhcpAddressPoolBefore | DHCPAddressPool | No | No | The DHCP address pool as it was when the DHCP address pool change was made (omitted when type is Add). |
dhcpAddressPoolAfter | DHCPAddressPool | No | No | The DHCP address pool as it should be after the DHCP address pool change has been applied (omitted when type is Remove). |
ArrayOfDHCPAddressPoolChange
Elements
DHCPAddressPoolPermit
Contains all properties for a DHCP address pool permit object.
Elements
Name | Type | Required | Nillable | Description |
---|
permit | DHCPAddressPoolPermitType | Yes | No | The DHCP address pool permit type. |
access | AccessType | Yes | No | The DHCP address pool access type. |
className | string | No | No | The name of the DHCP class if permit type is MembersOfDHCPClass. |
ArrayOfDHCPAddressPoolPermit
Elements
DHCPAddressPoolPermitType
Defines the types of DHCP Address Pool permits.
Enumerations
Name | Description |
---|
Unknown | Unknown DHCP address pool permit. |
AllClients | DHCP address pool permit for all clients. |
KnownClients | DHCP address pool permit for known clients. |
UnknownClients | DHCP address pool permit for unknown clients. |
DynamicBOOTPClients | DHCP address pool permit for dynamic BOOTP clients. |
MembersOfDHCPClass | DHCP address pool permit for members of a DHCP class. |
DHCPConcurrentLease
Contains information about a concurrent lease.
Elements
Name | Type | Required | Nillable | Description |
---|
dhcpServerRef | ObjRef | Yes | No | Reference to the DHCP server containing the concurrent lease. |
dhcpServerName | string | Yes | No | Name of the DHCP server containing the concurrent lease. |
dhcpScopeRef | ObjRef | Yes | No | Reference to the DHCP scope containing the concurrent lease. |
dhcpScopeName | string | Yes | No | Name of the DHCP scope containing the concurrent lease. |
name | string | Yes | Yes | Name of the concurrent lease. |
type | string | Yes | Yes | Type of the concurrent lease. |
mac | string | Yes | No | MAC address of the concurrent lease. |
address | IPAddress | Yes | No | IP address of the concurrent lease. |
lease | string | Yes | No | Duration of the concurrent lease. |
state | string | Yes | Yes | State of the concurrent lease. |
ArrayOfDHCPConcurrentLease
Elements
DHCPDDNSSetting
Contains all properties used when configuring DDNS settings on DHCP Servers, Scopes or Reservations on MS DHCP Servers
Elements
Name | Type | Required | Nillable | Description |
---|
enabled | boolean | Yes | No | Specifies whether the DHCP policy is enabled (default false). |
alwaysUpdate | boolean | No | No | Specifies if DDNS should always be updated, ignoring DHCP client requested (default false). |
discardRecords | boolean | No | No | Specifies whether to discard DDNS A and PTR records when lease is deleted (default true). |
forceForNoneRequestingClients | boolean | No | No | Specifies whether to force a DDNS update for clients that do not request an update (default false). |
disablePTRUpdates | boolean | No | No | Specifies whether to update DNS PTR records (default false). |
ArrayOfDHCPDDNSSetting
Elements
DHCPExclusion
Contains all properties for a DHCP exclusion object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | No | No | The name of the DHCP exclusion. |
from | IPAddress | No | No | The start address of the DHCP exclusion. |
to | IPAddress | No | No | The end address of the DHCP exclusion. |
dhcpScopeRef | ObjRef | Yes | No | A unique reference ID of the scope that contains the exclusion. |
ArrayOfDHCPExclusion
Elements
DHCPExclusionChange
Contains all properties for a DHCP exclusion change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ChangeType | Yes | No | The type of the DHCP exclusion change. |
state | ChangeRequestState | No | No | The state of the DHCP exclusion change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DHCP exclusion change. |
changeIndex | unsignedInt | No | No | The index of the DHCP exclusion change within the change request which contains the DHCP exclusion change. |
dhcpExclusionBefore | DHCPExclusion | No | No | The DHCP exclusion as it was when the DHCP exclusion change was made (omitted when type is Add). |
dhcpExclusionAfter | DHCPExclusion | No | No | The DHCP exclusion as it should be after the DHCP exclusion change has been applied (omitted when type is Remove). |
ArrayOfDHCPExclusionChange
Elements
Defines possible actions when removing DHCP scopes from a failover relationship.
Enumerations
Name | Description |
---|
None | No action. |
Disable | Disable scopes. |
Delete | Remove scopes. |
DHCPFailoverMode
Defines possible DHCP failover modes.
Enumerations
Name | Description |
---|
LoadBalance | Load Balance. |
HotStandby | Hot Standby. |
DHCPFailoverRelationship
Defines a DHCP failover relationship.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the DHCP failover relationship. |
primaryServer | string | Yes | No | The primary DHCP server. |
secondaryServer | string | Yes | No | The secondary DHCP server. |
primaryServerRef | ObjRef | No | No | An object reference for the primary DHCP server. |
secondaryServerRef | ObjRef | No | No | An object reference for the secondary DHCP server. |
failoverMode | DHCPFailoverMode | Yes | No | The DHCP failover mode to use. |
failoverServerType | DHCPFailoverServerType | No | No | A set of possible values for a DHCPv4 server in a failover relationship. |
mclt | unsignedInt | No | No | Maximum client lead time in seconds. |
safePeriod | unsignedInt | No | No | Safe period time in seconds, that the DHCPv4 server will wait before transitioning the server from the COMMUNICATION-INT state to PARTNER-DOWN. |
dhcpScopeRefs | ArrayOfObjRef | No | Yes | References to DHCP scopes that are associated with the failover relationship. |
percentage | unsignedInt | No | No | Indicates the ratio of the DHCPv4 client load shared between a primary and secondary server in the failover relationship. |
sharedSecret | string | No | No | The shared secret key associated with this failover relationship. |
dhcpServerRef | ObjRef | No | No | An object reference for the DHCP server. |
state | string | No | No | The state of the failover relationship. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
port | unsignedInt | No | No | Only applicable to ISC DHCP. Port number on which the server should listen for connections from its failover peer. |
secondaryPort | unsignedInt | No | No | Only applicable to ISC DHCP. Port number on which the secondary server should listen for connections from its failover peer. If not defined for ISC DHCP, the defined value for the "port" parameter will be used for the peer. |
loadBalanceMaxSeconds | unsignedInt | No | No | Only applicable to ISC DHCP. The cutoff in seconds after which load balancing is disabled. |
maxResponseDelay | unsignedInt | No | No | Only applicable to ISC DHCP. Tells the DHCP server how many seconds may pass without receiving a message from its failover peer before it assumes that the connection has failed. |
maxUnackedUpdates | unsignedInt | No | No | Only applicable to ISC DHCP. Tells the remote DHCP server how many BNDUPD messages it can send before it receives a BNDACK from the local system. |
ArrayOfDHCPFailoverRelationship
Elements
DHCPFailoverServerType
Defines the types of DHCP Failover server.
Enumerations
Name | Description |
---|
PrimaryServer | The server is a primary server in the failover relationship. |
SecondaryServer | The server is a secondary server in the failover relationship. |
DHCPGroup
Contains all properties for a DHCP group object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the DHCP group. |
parentRef | ObjRef | No | No | An object reference to the parent group of the DHCP group. |
ownerRef | ObjRef | Yes | No | A reference to the owning object. |
ArrayOfDHCPGroup
Elements
DHCPLease
Contains all properties for a DHCP lease object.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | Yes | The name of the lease. |
type | string | No | No | The DHCP lease type. |
mac | string | No | No | The MAC address of the host that holds the lease (DHCPv4). |
duid | string | No | No | The DUID and IAID identifiers of the holder of the lease (DHCPv6). |
clientIdentifierType | string | No | No | The client identitifer type. |
address | IPAddress | Yes | No | The IP address of the lease. |
lease | string | No | No | The expiration date for the lease. |
state | string | Yes | Yes | The state of the lease. |
dhcpScopeRef | ObjRef | Yes | No | A unique reference ID of the scope that contains the lease. |
ArrayOfDHCPLease
Elements
DHCPLeaseField
Defines the fields of a DHCP lease.
Enumerations
Name | Description |
---|
IPAddress | IP address field. |
ClientIdentifier | Client identifier field. |
ServerAddress | Server address field. |
Hostname | Hostname field. |
Description | Description field. |
DHCPLeaseHistoryEntry
Contains information about a DHCP lease.
Elements
Name | Type | Required | Nillable | Description |
---|
serverAddress | string | Yes | No | The IP address of the server. |
eventCode | string | Yes | Yes | Event code. |
timestampfirst | DateTime | Yes | Yes | First timestamp associated with the DHCP lease. |
timestamplast | DateTime | No | Yes | Last timestamp associated with the DHCP lease. |
ipAddress | string | Yes | Yes | The IP address of the DHCP lease. |
clientidentifier | string | Yes | Yes | The client identifier of the DHCP lease. |
hostname | string | Yes | Yes | The hostname of the DHCP lease. |
numberOfOccurrances | string | No | Yes | Number of occurrences of the DHCP lease. |
ArrayOfDHCPLeaseHistoryEntry
Elements
DHCPLeaseReference
Contains all properties for a DHCP lease.
Elements
Name | Type | Required | Nillable | Description |
---|
dhcpScopeRef | ObjRef | Yes | No | Reference to the DHCP scope that contains the lease. |
lease | IPAddress | Yes | No | IP address for the lease. |
ArrayOfDHCPLeaseReference
Elements
DHCPOption
Contains a single DHCP option value.
Elements
Name | Type | Required | Nillable | Description |
---|
option | string | Yes | No | The DHCP option ID. |
value | string | No | Yes | The DHCP option value. |
ArrayOfDHCPOption
Elements
DHCPOptionChange
Contains all properties for a DHCP option change object.
Elements
Name | Type | Required | Nillable | Description |
---|
state | ChangeRequestState | No | No | The state of the DHCP option change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DHCP option change. |
changeIndex | unsignedInt | No | No | The index of the DHCP option change within the change request which contains the DHCP option change. |
owner | Object | Yes | No | The owner (object) to which the DHCP option change should be applied. |
policyName | string | No | No | The name of the DHCP policy the options belong to, defaults to an empty string when not using policies or on none MS servers. |
dhcpOption | DHCPOption | Yes | No | The DHCP option as it should be after the DHCP option change has been applied. |
ArrayOfDHCPOptionChange
Elements
DHCPOptionClass
Contains a definition for a DHCP option class.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The DHCP option class name. |
description | string | No | Yes | The DHCP option class description. |
identifier | string | Yes | No | The DHCP option class identifier. |
ArrayOfDHCPOptionClass
Elements
DHCPOptionDefinition
Contains a definition for a DHCP option.
Elements
Name | Type | Required | Nillable | Description |
---|
option | string | Yes | No | The DHCP option ID. |
name | string | Yes | No | The DHCP option name. |
type | DHCPOptionType | Yes | No | The DHCP option type. |
array | boolean | Yes | No | Determines whether DHCP option is defined as an array. |
readonly | boolean | No | No | Determines whether DHCP option is defined as read only. |
ArrayOfDHCPOptionDefinition
Elements
DHCPOptionType
Defines the possible data types for DHCP Options
Enumerations
Name | Description |
---|
String | Free form string. |
HexStr | Hexadecimal encoded string. |
Boolean | Boolean. |
IPAddress | IPv4 address. |
IPv6Address | IPv6 address. |
IPOrHostname | IPv4 address or a legal host name (ISC DHCP specific). |
Integer | Integer. |
DHCPPeerInfo
Contains information about a DHCP peer.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the peer. |
url | string | No | Yes | Connection url for the peer. |
role | string | No | Yes | The role that the peer has. |
state | string | No | Yes | The state of the peer. |
ArrayOfDHCPPeerInfo
Elements
DHCPPolicy
Contains all properties for a DHCP policy.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the DHCP policy. |
description | string | No | Yes | A description for the DHCP policy. |
order | unsignedInt | No | No | Specifies the relative order in which the DHCP policy will be processed. |
enabled | boolean | No | No | Specifies whether the DHCP policy is enabled (default true). |
logicalOperator | DHCPPolicyLogicalOperator | Yes | No | The logical operation to be performed between the DHCP policy conditions. |
ranges | ArrayOfDHCPPolicyRange | No | Yes | IP ranges set for the DHCP policy. |
conditions | ArrayOfDHCPPolicyCondition | No | Yes | Conditions set for the DHCP policy. |
ddnsSettings | DHCPPolicyDDNSSettings | No | Yes | DHCP Policy DDNS settings, used for communicating with DNS servers. |
leaseDuration | DHCPPolicyLeaseDuration | No | Yes | Specifies lease time settings for the DHCP policy. |
ArrayOfDHCPPolicy
Elements
DHCPPolicyComparisonType
Defines possible DHCP policy comparison types.
Enumerations
Name | Description |
---|
Equal | Comparison of whether values are equal. |
NotEqual | Comparison of whether values are not equal. |
DHCPPolicyCondition
Contains all properties for a DHCP policy condition.
Elements
Name | Type | Required | Nillable | Description |
---|
conditionType | DHCPPolicyConditionType | Yes | No | The type of the DHCP policy condition. |
comparisonType | DHCPPolicyComparisonType | Yes | No | The type of comparison to be performed on the DHCP policy condition attribute. |
values | ArrayOfString | Yes | No | The value(s) to be used for the DHCP policy condition comparison. Each value can end with wildcard character '*'. |
ArrayOfDHCPPolicyCondition
Elements
DHCPPolicyConditionType
Defines possible DHCP policy condition types.
Enumerations
Name | Description |
---|
MACAddress | MAC address. |
FQDN | Fully qualified domain name. |
FQDNSingleLabel | Machine name is single label (For instance workgroup computers). |
VendorClass | Vendor class. |
UserClass | User class. |
ClientIdentifier | Client identifier. |
RelayAgentInformation | Relay agent information. |
RAIAgentCircuitID | Relay agent information - Agent circuit ID. |
RAIAgentRemoteID | Relay agent information - Agent remote ID. |
RAISubscriberID | Relay agent information - Subscriber ID. |
DHCPPolicyDDNSSettings
Contains all properties used when configuring DDNS update for a DHCP Policy
Elements
Name | Type | Required | Nillable | Description |
---|
enabled | boolean | Yes | No | Specifies whether the DHCP policy is enabled (default false). |
alwaysUpdate | boolean | No | No | Specifies if DDNS should always be updated, ignoring DHCP client requested (default false). |
discardRecords | boolean | No | No | Specifies whether to discard DDNS A and PTR records when lease is deleted (default true). |
forceForNoneRequestingClients | boolean | No | No | Specifies whether to force a DDNS update for clients that do not request an update (default false). |
disablePTRUpdates | boolean | No | No | Specifies whether to update DNS PTR records (default false). |
useDNSSuffix | boolean | No | No | Specifies whether to use a specific DNS suffix when registering clients with DDNS (default false). |
dnsSuffix | string | No | Yes | The DNS suffix used to register the client with DDNS |
DHCPPolicyLeaseDuration
Contains all properties used when configuring a specific lease duration on a DHCP Policy
Elements
Name | Type | Required | Nillable | Description |
---|
leaseSetting | DHCPPolicyLeaseDurationType | Yes | No | Specifies whether the DHCP policy has specific lease duration settings (default false). |
leaseDuration | unsignedInt | No | Yes | Specifies lease duration in seconds. |
DHCPPolicyLeaseDurationType
Possible DHCP Policy lease duration settings.
Enumerations
Name | Description |
---|
Undefined | Lease duration is not specified for the policy. |
Limited | Lease duration is set to a specific value. |
Unlimited | Lease duration is unlimited |
DHCPPolicyLogicalOperator
Defines possible DHCP policy logical operators.
Enumerations
Name | Description |
---|
LogicalOr | Logical OR operator. |
LogicalAnd | Logical AND operator. |
DHCPPolicyRange
Contains all properties for a DHCP policy range.
Elements
Name | Type | Required | Nillable | Description |
---|
from | IPAddress | Yes | No | The starting IP address of the DHCP policy range. |
to | IPAddress | Yes | No | The ending IP address of the DHCP policy range. |
ArrayOfDHCPPolicyRange
Elements
DHCPRefAndFailoverRelationshipName
A DHCP failover relationship to remove.
Elements
Name | Type | Required | Nillable | Description |
---|
dhcpServerRef | ObjRef | No | No | An object reference for the DHCP server. |
dhcpFailoverRelationshipName | string | Yes | Yes | Name of the DHCP failover relationship to remove. |
dhcpFailoverRelationshipDeconfigureAction | DHCPFailoverDeconfigureAction | No | Yes | Optionally disable or delete DHCP scopes on partner server. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
ArrayOfDHCPRefAndFailoverRelationshipName
Elements
DHCPReservation
Contains all properties for a DHCP reservation object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | No | No | The name of the reservation. |
clientIdentifier | string | No | Yes | The client identifier used for the reservation (e.g. the MAC address). |
reservationMethod | DHCPReservationMethod | No | No | The method used to identify the DHCP reservation. |
addresses | ArrayOfIPAddress | No | Yes | An array of zero or more IP addresses used for the reservation. |
type | DHCPReservationType | No | No | The type of the DHCP reservation. Only applicable for MS DHCP servers, where the default is BOTH. Ignored for other server types. |
description | string | No | Yes | Description for the reservation. Only applicable for MS DHCP servers. |
ddnsHostName | string | No | Yes | Dynamic DNS host name for reservation. Only applicable for ISC DHCP servers. |
filename | string | No | Yes | The "filename" DHCP option. Only applicable for ISC DHCP servers. |
serverName | string | No | Yes | The "server-name" DHCP option. Only applicable for ISC DHCP servers. |
nextServer | string | No | Yes | The "next-server" ISC DHCP option. Only applicable for ISC DHCP servers. |
ownerRef | ObjRef | Yes | No | A unique reference ID of the DHCP server, group or scope that contains the reservation. |
ArrayOfDHCPReservation
Elements
DHCPReservationChange
Contains all properties for a DHCP reservation change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ChangeType | Yes | No | The type of the DHCP reservation change. |
state | ChangeRequestState | No | No | The state of the DHCP reservation change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DHCP reservation change. |
changeIndex | unsignedInt | No | No | The index of the DHCP reservation change within the change request which contains the DHCP reservation change. |
dhcpReservationBefore | DHCPReservation | No | No | The DHCP reservation as it was when the DHCP reservation change was made (omitted when type is Add). |
dhcpReservationAfter | DHCPReservation | No | No | The DHCP reservation as it should be after the DHCP reservation change has been applied (omitted when type is Remove). |
ArrayOfDHCPReservationChange
Elements
DHCPReservationMethod
Defines possible DHCP reservation methods.
Enumerations
Name | Description |
---|
HardwareAddress | Hardware address. |
ClientIdentifier | Client identifier. |
DHCPReservationType
Defines possible DHCP reservation types on MS DHCP servers.
Enumerations
Name | Description |
---|
DHCP | DHCP reservation type. |
BOOTP | BOOTP reservation type. |
BOTH | Both DHCP and BOOTP reservation types (default). |
DHCPScope
Contains all properties for a DHCP scope object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | No | No | The name of the DHCP scope. |
rangeRef | ObjRef | Yes | No | A reference to the range associated with the scope. |
dhcpServerRef | ObjRef | Yes | No | A reference to the DHCP server containing the scope. |
superscope | string | No | Yes | The name of the superscope for the DHCP scope. |
description | string | No | Yes | A description for the DHCP scope. |
available | unsignedInt | No | No | Number of available addresses in the address pool(s) of the scope. |
enabled | boolean | No | No | Specifies whether the scope is enabled (default true). |
preference | unsignedInt | No | Yes | Scope preference, only available for Microsoft DHCPv6 servers. |
ArrayOfDHCPScope
Elements
DHCPScopeChange
Contains all properties for a DHCP scope change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ChangeType | Yes | No | The type of the DHCP scope change. |
state | ChangeRequestState | No | No | The state of the DHCP scope change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DHCP scope change. |
changeIndex | unsignedInt | No | No | The index of the DHCP scope change within the change request which contains the DHCP scope change. |
dhcpScopeBefore | DHCPScope | No | No | The DHCP scope as it was when the DHCP scope change was made (omitted when type is Add). |
dhcpScopeAfter | DHCPScope | No | No | The DHCP scope as it should be after the DHCP scope change has been applied (omitted when type is Remove). |
ArrayOfDHCPScopeChange
Elements
DHCPScopeOptionsReportType
Defines possible DHCP scope options report types.
Enumerations
Name | Description |
---|
HasValue | Report on DHCP scopes that have the specified value for the specified DHCP option. |
DoesNotHaveValue | Report on DHCP scopes that do not have the specified value for the specified DHCP option. |
HasNoValueSet | Report on DHCP scopes that have no value set for the specified DHCP option. |
DHCPScopeReconcileEntry
Contains information about DHCP scope reconcile entries.
Elements
Name | Type | Required | Nillable | Description |
---|
scopeAddress | IPAddress | Yes | No | The IP address of the DHCP scope. |
address | IPAddress | Yes | No | The IP address that requires reconciling. |
flag | DHCPScopeReconcileFlag | Yes | Yes | The DHCP scope reconcile flag set for this entry. |
ArrayOfDHCPScopeReconcileEntry
Elements
DHCPScopeReconcileFlag
Defines possible DHCP scope reconcile flags.
Enumerations
Name | Description |
---|
ReconcileRegistry | Entry found in database but not in registry. |
ReconcileDatabase | Entry found in registry but not in database. |
DHCPServer
Contains all properties for a DHCP server object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the DHCP server. |
proxy | ASCII | No | No | The DHCP server controller used to connect to the DHCP server. If not specified it is assumed to be localhost. |
address | IPAddress | No | No | The IP address of the DHCP server. |
resolvedAddress | IPAddress | No | No | The IP address of the DHCP server, if specified, or the IP address retrieved through resolving the name of the DHCP server. |
username | string | No | Yes | The login name of the user accessing a Cisco IOS DHCP server. Only applicable for Cisco IOS DHCP servers. |
password | string | No | Yes | The password for the user accessing a Cisco IOS DHCP server. Only applicable for Cisco IOS DHCP servers. |
enablePassword | string | No | Yes | The password for entering maintenance mode when accessing a Cisco IOS DHCP server. Only applicable for Cisco IOS DHCP servers. |
type | DHCPServerType | Yes | No | The DHCP server type. |
subType | DHCPServerSubType | No | Yes | The DHCP server specific sub type. |
haMode | HAMode | No | Yes | The High-Availability mode of the server. |
state | DHCPServerState | No | No | The state of the DHCP Server. |
security | DHCPServerSecurity | No | Yes | The login method used for the DHCP server. Only applicable for Cisco IOS DHCP servers. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the DHCP server. |
enabled | boolean | No | No | Specifies whether the DHCP server is enabled. |
dhcpv6 | boolean | No | No | Sets the server as DHCPv6. |
ArrayOfDHCPServer
Elements
DHCPServerSecurity
Defines possible login methods for Cisco IOS DHCP servers.
Enumerations
Name | Description |
---|
Unknown | Unknown login method. |
Telnet | Login using Telnet. |
SSH2 | Login using SSH2. |
DHCPServerState
Defines possible DHCP server states.
Enumerations
Name | Description |
---|
Unknown | DHCP Server Controller status is unknown. |
OK | DHCP Server Controller and service are both OK. |
Unreachable | DHCP Server Controller is offline or otherwise unreachable. |
Out of date | DHCP Server Controller has a different version than Central. |
Updating | DHCP Server Controller version is being updated. |
Uninitialized | DHCP Server is on a uninitialized appliance that needs to be manually initialized. |
Detached | DHCP Server has been detached without removing it from the system. |
DHCP Service Down | DHCP Server service is down and DNS server is not responding to queries. |
DHCP Service Impaired | DHCP Server service is running but impaired. |
DHCP Service Shut Down | DHCP service has been intentionally shut down. |
DHCPServerSubType
Defines possible DHCP server sub types.
Enumerations
Name | Description |
---|
Unknown | Unknown DHCP server subtype |
Win2000 | Windows Server 2000 (deprecated) |
Win2003 | Windows Server 2003 (deprecated) |
Win2008 | Windows Server 2008 (deprecated) |
Win2008R2 | Windows Server 2008R2 (deprecated) |
Win2012 | Windows Server 2012 |
Win2012R2 | Windows Server 2012R2 |
Win2016 | Windows Server 2016 |
Win2019 | Windows Server 2019 |
Win2022 | Windows Server 2022 |
ISC | ISC DHCP server |
IOS | Cisco IOS DHCP server |
Kea | Kea DHCP server |
Meraki | Meraki DHCP server |
DHCPServerType
Defines possible DHCP server types.
Enumerations
Name | Description |
---|
Unknown | Unknown DHCP server. |
MSDHCP | Microsoft DHCP server. |
ISC | ISC DHCP server. |
IOS | Cisco IOS DHCP server. |
Kea | Kea DHCP server. |
Meraki | Meraki DHCP server. |
DHCPServiceType
Define possible DHCP server service types.
Enumerations
Name | Description |
---|
DHCPv4 | DHCPv4 service. |
DHCPv6 | DHCPv6 service. |
DHCPSuperscope
A DHCP superscope
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | Reference to the superscope. |
name | string | Yes | No | Name of the superscope. |
description | string | Yes | Yes | Description of the superscope. |
dhcpServerRef | string | Yes | No | An object reference for the DHCP server that owns the superscope. |
scopeCount | unsignedInt | No | No | Total number of DHCP scopes associated with the superscope. |
created | DateTime | No | No | Date when the superscope was created. |
lastModified | DateTime | No | No | Date when the superscope was last modified. |
ArrayOfDHCPSuperscope
Elements
DNSCache
Contains a list of cached DNS entries, the view they belong to and a reference to the DNS server that the records are cached on.
Elements
Name | Type | Required | Nillable | Description |
---|
dnsServerRef | ObjRef | Yes | No | A reference to the DNS server containing the cached DNS records. |
cachedDNSEntries | ArrayOfCachedDNSEntry | Yes | No | DNS entries cached on the server. |
dnsViewRef | ObjRef | Yes | No | Contains the reference ID of the DNS view that the DNS records belong to. |
ArrayOfDNSCache
Elements
DNSGenerateDirective
Contains all properties for a DNS generate directive.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
rangeStart | unsignedInt | Yes | No | The start of the range. |
rangeEnd | unsignedInt | Yes | No | The end of the range. |
rangeStep | unsignedInt | No | No | The stepping of the range. Defaults to 1. |
lhs | string | Yes | Yes | The owner name of the resource records generated by the directive. |
ttl | string | No | Yes | The ttl of the resource records generated by the directive. |
class | string | No | Yes | The class of the resource records generated by the directive. |
type | DNSRecordType | Yes | No | The type of the resource records generated by the directive. |
rhs | string | Yes | Yes | The data of the resource records generated by the directive. |
ArrayOfDNSGenerateDirective
Elements
DNSHost
Contains all properties for a DNS host object. A DNS host is an address (A) record and all CNAME, TXT and MX records that are associated with the record.
Elements
Name | Type | Required | Nillable | Description |
---|
dnsRecord | DNSRecord | Yes | No | The DNS host record. The record must be an address (A) record. Note that the name element of the record is fully qualified here. |
ptrStatus | PTRStatus | No | No | The PTR record status for the host record. |
relatedRecords | ArrayOfDNSRecord | Yes | Yes | An array of records associated with the host record. |
ArrayOfDNSHost
Elements
DNSRecord
Contains all properties for a DNS record object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | ASCII | Yes | Yes | The name of the DNS record, either partially or fully qualified. |
type | DNSRecordType | Yes | No | Specifies the type of the DNS record. |
ttl | ASCII | No | Yes | Specifies the Time-To-Live of the DNS record. |
data | string | Yes | Yes | Contains the record data in a tab-separated list. |
comment | string | No | Yes | Contains the comment string for the record. Note that only records in static DNS zones can have a comment string. |
enabled | boolean | No | No | Contains true if the record is enabled. If the record is disabled the value is false. Defaults to enabled. |
aging | unsignedInt | No | No | The aging timestamp of dynamic records in AD integrated zones. Hours since January 1, 1601, UTC. Providing a non-zero value creates a dynamic record. |
dnsZoneRef | ObjRef | No | No | Contains the reference ID of the zone that contains the record. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the record. |
ArrayOfDNSRecord
Elements
DNSRecordChange
Contains all properties for a DNS record change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | DNSRecordChangeType | Yes | No | The type of the DNS record change. |
state | ChangeRequestState | No | No | The state of the DNS record change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DNS record change. |
changeIndex | unsignedInt | No | No | The index of the DNS record change within the change request which contains the DNS record change. |
dnsRecordBefore | DNSRecord | No | No | The DNS record as it was when the DNS record change was made (omitted when type is AddDNSRecord). |
dnsRecordAfter | DNSRecord | No | No | The DNS record as it should be after the DNS record change has been applied (omitted when type is RemoveDNSRecord). |
placeAfterRef | ObjRef | No | No | A reference to a record that the dnsRecordAfter should be placed after in the zone. Only applicaple to file based zones. Ignored for other zones. |
ArrayOfDNSRecordChange
Elements
DNSRecordChangeRequest
Contains all properties for a DNS record change request object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
requester | string | Yes | No | The name of the user that made the change request. |
state | ChangeRequestState | Yes | No | The state of the change request. |
creationDate | DateTime | Yes | No | The date and time, when the change request was created. |
requestDate | DateTime | No | No | The date and time, when the change request should be applied, if specified. |
customProperties | ArrayOfProperty | Yes | Yes | The custom properties for the change request. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
processedDate | DateTime | No | No | The date and time, when the change request was approved or rejected. |
dnsRecordChanges | ArrayOfDNSRecordChange | No | No | The DNS record changes associated with the change request. |
ArrayOfDNSRecordChangeRequest
Elements
DNSRecordChangeType
Defines possible DNS record change types.
Enumerations
Name | Description |
---|
AddDNSRecord | Add DNS Record. |
ModifyDNSRecord | Modify DNS Record. |
RemoveDNSRecord | Remove DNS Record. |
DNSRecordType
Defines possible DNS record types.
Enumerations
Name | Description |
---|
Any | Any record type. |
Unknown | Unknown record type. |
A | A (Address) record. |
NS | NS (Name Server) record. |
CNAME | CNAME (Canonical Name) record. |
SOA | SOA (Start Of Authority) record. |
WKS | WKS (Well Known Services) record. |
PTR | PTR (Pointer) record. |
HINFO | HINFO (Host Information) record. |
MX | MX (Mail Exchange) record. |
TXT | TXT (Text) record. |
SPF | SPF (Sender Policy Framework) record. |
RP | RP (Responsible Person) record. |
AFSDB | AFSDB (AFS Database) record. |
AAAA | AAAA (IPv6 address) record. |
LOC | LOC (Location) record. |
SRV | SRV (Service Locator) record. |
NAPTR | NAPTR (Naming Authority Pointer) record. |
DNAME | DNAME (Delegation Name) record. |
WINS | WINS (Windows Internet Server Name) record. |
WINSR | WINSR (WINS Reverse Lookup) record. |
SSHFP | SSHFP (SSH Public Key Fingerprint) record. |
DHCID | DHCID (DHCP Identifier) record. |
CERT | CERT (Certificate) record. |
CAA | CAA (Certification Authority Authorization) record. |
CSYNC | CSYNC record |
SVCB | SVCB record |
HTTPS | HTTPS record |
RRSIG | RRSIG (DNSSEC Signature) record. |
DS | DS (Delegation Signer) record. |
DNSKEY | DNSKEY (DNS Key) record. |
NSEC | NSEC (Next-Secure) record. |
NSEC3 | NSEC3 (NSEC version 3) record. |
NSEC3PARAM | NSEC3PARAM (NSEC3 parameters) record. |
TLSA | TLSA (DANE) record |
CDS | CDS record |
CDNSKEY | CDNSKEY record |
Comment | Comment record. |
EmptyLine | Empty line. |
$GENERATE | Bind special directive. |
$INCLUDE | Bind special directive. |
$TTL | Bind special directive. |
DNSSECZoneOptions
Contains all properties for options specific to DNSSEC.
Elements
Name | Type | Required | Nillable | Description |
---|
SignWithNSEC3 | unsignedInt | No | No | User NSEC3 over NSEC. |
NSEC3OptOut | unsignedInt | No | No | Use NSEC3 Opt-Out. |
NSEC3RandomSaltLength | unsignedInt | No | No | Length of the NSEC3 random salt. |
NSEC3Iterations | unsignedInt | No | No | Number of iterations to use for NSEC3. |
DSRecordSetTTL | unsignedInt | No | No | TTL to use for DS records. |
DNSKEYRecordSetTTL | unsignedInt | No | No | TTL to use for DNSKEY records. |
DsRecordAlgorithms | DsRecordAlgorithms | No | No | The algorithm used when creating DS records. |
MaintainTrustAnchor | MaintainTrustAnchor | No | No | Maintain the trust anchor. |
Keymaster | string | No | Yes | Name of the Keymaster for this zone (read only). |
ParentHasSecureDelegation | unsignedInt | No | No | Does the parent zone have a DNSSEC delegation for this zone. |
RFC5011KeyRollovers | unsignedInt | No | No | Enable automatic update of trust anchors on key rollover (RFC 5011). |
SecureDelegationPollingPeriod | unsignedInt | No | No | The time between polling the DNSSEC delegation in the parent zone. |
SignatureInceptionOffset | unsignedInt | No | No | The signature inception offset. |
NSEC3UserSalt | string | No | Yes | A string to use as NSEC3 salt. |
NSEC3CurrentSalt | string | No | Yes | The NSEC3 salt currently being used in the zone (readonly). |
NSEC3HashAlgorithm | NSEC3HashAlgorithm | No | No | The algorithm to use for NSEC3. |
DNSServer
Contains all properties for a DNS server object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | ASCII | Yes | No | The name of the DNS server. |
proxy | ASCII | No | No | The DNS server controller used to connect to the DNS server. |
address | IPAddress | No | No | The IP address of the DNS server. |
resolvedAddress | IPAddress | No | No | The IP address of the DNS server, if specified, or the IP address retrieved through resolving the name of the DNS server. |
port | unsignedInt | No | No | The port to use when connecting to the DNS server. Only needed if a non-standard port is used to connect to the server. |
type | DNSServerType | Yes | No | The type of DNS server. |
adForest | string | No | No | The name of the AD Forest with which the DNS server is associated. |
state | DNSServerState | No | No | The state of the DNS Server. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the DNS server. |
subtype | DNSServerSubtype | No | No | The subtype of DNS server. |
enabled | boolean | No | No | Specifies whether the DNS server is enabled. |
created | DateTime | No | Yes | Date when the server was created. |
lastModified | DateTime | No | Yes | Date when the server was last modified. |
ArrayOfDNSServer
Elements
DNSServerState
Defines possible DNS server states.
Enumerations
Name | Description |
---|
Unknown | DNS Server Controller status is unknown. |
OK | DNS Server Controller and service are both OK. |
Unreachable | DNS Server Controller is offline or otherwise unreachable. |
Out of date | DNS Server Controller has a different version than Central. |
Updating | DNS Server Controller version is being updated. |
Uninitialized | DNS Server is uninitialized and needs to be manually initialized. |
Detached | DNS Server has been detached without removing it from the system. |
DNS Service Down | DNS Server service is down and DNS server is not responding to queries. |
DNS Service Impaired | DNS Server service is running but impaired. |
DNS Service Shut Down | DNS service has been intentionally shut down. |
DNSServerSubtype
Defines possible DNS server subtypes.
Enumerations
Name | Description |
---|
Unknown | Unknown DNS server subtype. |
Win2003 | Microsoft Windows 2003 DNS server. |
Win2008 | Microsoft Windows 2008 DNS server. |
Win2012 | Microsoft Windows 2012 DNS server. |
Win2016 | Microsoft Windows 2016 DNS server. |
Win2019 | Microsoft Windows 2019 DNS server. |
Win2022 | Microsoft Windows 2022 DNS server. |
BIND9 | ISC BIND DNS server. |
Unbound | The unbound version. |
Generic | Generic DNS server. |
GenericV2 | Generic V2 DNS server. |
Azure | Azure DNS server. |
Route53 | Route53 DNS server |
CloudLink | CloudLink service. |
NS1 | NS1 DNS service. |
Dyn | Dyn DNS service. |
Akamai | Akamai DNS service. |
DNSServerType
Defines possible DNS server types.
Enumerations
Name | Description |
---|
Unknown | Unknown DNS server type. |
MS | Microsoft DNS server. |
BIND | ISC BIND DNS server. |
Unbound | Unbound DNS caching server. |
Generic | Generic DNS server. |
Azure | Azure DNS server. |
Route53 | Route53 DNS service. |
CloudLink | CloudLink service. |
NS1 | NS1 DNS service. |
Dyn | Dyn DNS service. |
Akamai | Akamai DNS service. |
DNSView
Contains all properties for a DNS view object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | Yes | The name of the DNS view. |
dnsServerRef | ObjRef | Yes | No | A reference to the server containing the view. |
ArrayOfDNSView
Elements
DNSZone
Contains all properties for a DNS zone object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | ASCII | Yes | No | The name of the DNS zone. |
dnsScopeName | string | No | No | The name of the DNS zone scope. |
dynamic | boolean | No | No | Contains true if the zone is dynamic. |
adIntegrated | boolean | No | No | Contains true if the zone is Active Directory integrated. |
adReplicationType | ADReplicationType | No | No | The AD replication type if the zone is Active Directory integrated. |
adPartition | string | No | Yes | The AD partition if the zone is Active Directory integrated. |
dnsViewRef | ObjRef | No | No | Contains the reference ID of the DNS view that contains the zone. This property is not supplied for AD integrated zones. |
dnsViewRefs | ArrayOfObjRef | No | No | Contains the reference IDs of the DNS views that contain the zone. |
sourceZoneRef | ObjRef | No | Yes | Reference to the zone that owns the zone contents. The same as the zone reference for all zones except zones with shared contents. |
authority | string | No | No | Contains the name of the DNS server that contains the zone or the string "[Active Directory]" if the zone is AD integrated. |
type | DNSZoneType | Yes | No | Specifies the type of the zone. |
genericType | string | No | No | Specifies zone specific zone |
dnssecSigned | boolean | No | No | Contains true if the zone is a DNSSEC signed zone. |
kskIDs | string | No | Yes | A comma separated string of IDs of KSKs, starting with active keys, then inactive keys in parenthesis. |
zskIDs | string | No | Yes | A comma separated string of IDs of ZSKs, starting with active keys, then inactive keys in parenthesis. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the zone. |
providerProperties | ProviderProperties | No | Yes | Provider properties that are defined by the service |
created | DateTime | No | Yes | Date when the zone was created. |
lastModified | DateTime | No | Yes | Date when the zone was last modified. |
displayName | string | No | Yes | A name that can distinguish the zone from other zone instances with the same name. |
folderRef | ObjRef | No | No | The folder containing the zone |
xdnsProfileRef | ObjRef | No | No | xDNS profile used to replicate the zone contents |
rpz | boolean | No | No | true if this a response policy zone |
enabled | boolean | No | No | Specifies whether the DNS Zone is enabled. Only applicable to BIND DNS Zones. Defaults to true. |
ArrayOfDNSZone
Elements
DNSZoneChange
Contains all properties for a DNS zone change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ChangeType | Yes | No | The type of the DNS zone change. |
state | ChangeRequestState | No | No | The state of the DNS zone change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the DNS zone change. |
changeIndex | unsignedInt | No | No | The index of the DNS zone change within the change request which contains the DNS zone change. |
dnsZoneBefore | DNSZone | No | No | The DNS zone as it was when the DNS zone change was made (omitted when type is Add). |
dnsZoneAfter | DNSZone | No | No | The DNS zone as it should be after the DNS zone change has been applied (omitted when type is Remove). |
options | DNSZoneOptions | No | No | The options for the zone in dnsZoneAfter. |
ArrayOfDNSZoneChange
Elements
DNSZoneOptions
Contains all properties for a DNS zone options object.
Elements
DNSZoneType
Defines possible types for a DNS zone.
Enumerations
Name | Description |
---|
Master | Master zone. |
Slave | Slave zone. |
Primary | Primary zone. Reserved for future use. |
Secondary | Secondary zone. Reserved for future use. |
Hint | Hint zone. |
Stub | Stub zone. |
Forward | Forward zone. |
Include | Include zone. |
Static-stub | Static-stub zone. |
Options_Template | Options Template zone. |
DateTime
Legal time format is ( HH : MM[:SS[:TTT]][AM | PM] ). Legal date format depends on the separator, for '-' the format is considered to be ( [yy]yy - mm - dd ), for '.' the format is considered to be ( dd.mm.yy[yy] ) and for '/' the format is considered to be ( mm / dd / yy[yy] ).
Device
Contains all properties for a device object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the device. |
created | DateTime | No | No | The date when the device was created. |
lastModified | DateTime | No | No | The date when the device was last modified. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the device. |
interfaces | ArrayOfInterface | No | Yes | The interfaces on the device. |
ArrayOfDevice
Elements
Discovery
Contains all properties for scheduling. Used for discovery of ranges or scopes.
Elements
Name | Type | Required | Nillable | Description |
---|
interval | unsignedInt | No | No | The interval between runs for the schedule. |
unit | TimeUnit | No | No | The time unit for the interval. |
enabled | boolean | No | No | Determines if the schedule is enabled. |
startTime | DateTime | No | No | The date and time when the schedule should start. |
DsRecordAlgorithms
Algorithms to use for when creating DS resource records.
Enumerations
Name | Description |
---|
Unknown | The algorithm used is not recognized. |
None | Do not maintain trust anchors. |
SHA-1 | Use SHA-1. |
SHA-256 | Use SHA-256. |
SHA-1 and SHA-256 | Use SHA-1 and SHA-256. |
SHA-384 | Use SHA-384. |
SHA-1 and SHA-384 | Use SHA-1 and SHA-384. |
SHA-256 and SHA-384 | Use SHA-256 and SHA-384. |
All | Use all algorithms. |
DynLogin
Contains all information needed to log into a Dyn account.
Elements
Name | Type | Required | Nillable | Description |
---|
customerName | string | Yes | No | The Customer Name to use for authenticating with Dyn. |
username | string | Yes | No | The username to use for authenticating with Dyn. |
password | string | Yes | Yes | The password to use for authenticating with Dyn. |
Event
Contains all properties for an event object.
Elements
Name | Type | Required | Nillable | Description |
---|
id | unsignedInt | Yes | No | Event item id. |
eventType | EventType | Yes | No | Event type. |
objType | ObjectType | Yes | No | Object type. |
objRef | ObjRef | Yes | No | Reference to the object. |
objName | string | Yes | Yes | Name of the object. |
timestamp | DateTime | Yes | No | Timestamp of event. |
username | string | Yes | Yes | Name of the user associated with the event. |
userClient | ClientType | Yes | Yes | The type of client used to initiate the event. |
userAddress | string | Yes | Yes | The IP address from where the event was initiated. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
eventText | string | Yes | Yes | Description of the event. |
undoable | boolean | No | No | True if the event is undoable. |
ArrayOfEvent
Elements
EventType
Defines possible event types.
Enumerations
Name | Description |
---|
Unknown | Unknown event type. |
Creation | Object creation event. |
Modification | Object modification event. |
Deletion | Object deletion event. |
Refresh | Refresh event. |
Error | Error event. |
Reference | Reference event. |
FieldDefinition
Contains the property definition for a field.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the field. |
title | string | Yes | No | A human readable description of the field. |
type | FieldType | Yes | No | The type of the field. |
pickList | ArrayOfString | No | Yes | An array of possible values. |
objectType | ObjectType | No | Yes | The type of the object reference. |
ArrayOfFieldDefinition
Elements
FieldType
Defines the possible data types for a field.
Enumerations
Name | Description |
---|
String | Free form string. |
Enum | Enumeration. |
Integer | Integer. |
Boolean | Boolean. |
IPAddress | IPv4/IPv6 address. |
Ref | Object reference. |
DateTime | Date and time field. |
Duration | Time related values. |
Folder
Contains all properties for a folder object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the folder. |
contentType | ObjectType | Yes | No | The type of objects contained within the folder. |
parentRef | ObjRef | No | No | A reference to the parent folder. |
filter | string | No | No | Filter string to apply to folder contents. |
ArrayOfFolder
Elements
Group
Contains all properties for a user group object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the group. |
description | string | No | Yes | A description for the group. |
adIntegrated | boolean | No | No | Contains true if the group is Active Directory integrated. |
builtIn | boolean | No | Yes | Indicates a system built in role (read only property). |
externalID | string | No | Yes | The external ID to associate with the group. |
groupMembers | ArrayOfObject | No | Yes | An array of references to the users in the group. |
roles | ArrayOfObject | No | Yes | An array of references to the roles the group has. |
ArrayOfGroup
Elements
HAMode
Defines possible High-Availability modes.
Enumerations
Name | Description |
---|
none | None. |
hot-standby | Hot-standby. |
load-balancing | Load-balancing. |
passive-backup | Passive-backup. |
hot-standby_none | Hot-standby (DHCPv4 only). |
load-balancing_none | Load-balancing (DHCPv4 only). |
passive-backup_none | Passive-backup (DHCPv4 only). |
none_hot-standby | Hot-standby (DHCPv6 only). |
none_load-balancing | Load-balancing (DHCPv6 only). |
none_passive-backup | Passive-backup (DHCPv6 only). |
hot-standby_load-balancing | Hot-standby (DHCPv4), load-balancing (DHCPv6). |
hot-standby_passive-backup | Hot-standby (DHCPv4), passive-backup (DHCPv6). |
load-balancing_hot-standby | Load-balancing (DHCPv4), hot-standby (DHCPv6). |
load-balancing_passive-backup | Load-balancing (DHCPv4), passive-backup (DHCPv6). |
passive-backup_hot-standby | Passive-backup (DHCPv4), hot-standby (DHCPv6). |
passive-backup_load-balancing | Passive-backup (DHCPv4), load-balancing (DHCPv6). |
HasAccessEntry
An entry that contains information about whether the currently logged in user has access for a specific access entry for a specific object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the object for which this entry applies. |
objType | ObjectType | Yes | No | The type of the object for which this entry applies. |
name | string | Yes | No | The name of the object for which this entry applies. |
hasAccess | boolean | Yes | No | Contains true if the user has access for the access entry. |
ArrayOfHasAccessEntry
Elements
HexStr
Hexadecimal encoded string.
IPAMRecord
Contains all properties for an IPAM record object.
Elements
Name | Type | Required | Nillable | Description |
---|
addrRef | ObjRef | Yes | No | A reference to the IP address. |
address | string | Yes | No | The IP address. |
claimed | boolean | Yes | No | Contains true if the record has the Claimed flag set. |
dnsHosts | ArrayOfDNSHost | No | Yes | List of DNS hosts associated with the address. |
dhcpReservations | ArrayOfDHCPReservation | No | Yes | List of DHCP reservations associated with the address. |
dhcpLeases | ArrayOfDHCPLease | No | Yes | List of DHCP leases associated with the address. |
discoveryType | IPAddressDiscoveryType | Yes | No | The type of IP address discovery that is the source of the IP address discovery info. |
lastSeenDate | string | Yes | Yes | The date when the address was last seen during IP address discovery. |
lastDiscoveryDate | string | Yes | Yes | The date when the system last performed IP address discovery for this IP address. |
lastKnownClientIdentifier | string | Yes | Yes | The MAC address associated with the IP address discovery info. |
device | string | No | Yes | The device associated with the record. |
interface | string | No | Yes | The interface associated with the record. |
ptrStatus | PTRStatus | No | No | The PTR record status for the record. |
extraneousPTR | boolean | No | No | Contains true if there are extraneous PTR records for the record. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the IPAM record. |
state | IPAMRecordState | No | No | Specifies the IP address state. |
holdInfo | IPAMRecordHoldInfo | No | Yes | If IP is temporarily held, contains username and expiry time. |
usage | unsignedInt | No | No | IP address usage bitmask. |
cloudDeviceInfo | CloudDeviceInfo | No | Yes | An optional information detailing data retrieved from a cloud provider |
ArrayOfIPAMRecord
Elements
IPAMRecordHoldInfo
Contains information about who holds the otherwise free IP and for how long.
Elements
Name | Type | Required | Nillable | Description |
---|
expiryTime | DateTime | Yes | No | The date and time when the temporary hold expires. |
username | string | Yes | No | The user who claimed the IP temporarily. |
IPAMRecordState
Defines possible IPAM record states.
Enumerations
Name | Description |
---|
Free | IP address is free. |
Assigned | IP address is assigned. |
Claimed | IP address is claimed. |
Pending | IP address has a pending Change Request, but is otherwise free. |
Held | IP address has been temporarily claimed with GetNextFreeAddress. |
IPAMRecordState2
Defines possible IPAM record states.
Enumerations
Name | Description |
---|
Free | IP address is free. |
Assigned | IP address is assigned. |
Reserved | IP address is reserved. |
Leased | IP address is leased. |
Claimed | IP address is claimed. |
Pending | IP address has a pending Change Request, but is otherwise free. |
Held | IP address has been temporarily claimed with GetNextFreeAddress. |
IPAddress
IPv4/IPv6 address.
ArrayOfIPAddress
Elements
IPAddressDiscoveryType
Defines possible IP address discovery types.
Enumerations
Name | Description |
---|
None | IP address has no discovery info. |
Ping | IP address answered ping during scheduled discovery. |
ARP | IP address was present in a router's ARP cache. |
Lease | IP address had a DHCP lease. |
Custom | IP address discovery info was supplied externally. |
IPOrHostname
IPv4/IPv6 address or legal host name.
IdentityAccess
Contains access entries for a specific user or group.
Elements
Name | Type | Required | Nillable | Description |
---|
identityRef | ObjRef | Yes | No | A unique reference ID for a user or group for which the access applies. |
identityName | string | No | No | The name of the user or group for which the access applies. |
general | boolean | No | No | Read-only. True if the identity is a general role. |
inherited | boolean | No | No | Read-only. True if the permissions are inherited from the role access. False when set explicitly on the object. |
accessEntries | ArrayOfAccessEntry | Yes | Yes | The access entries for the user or group. |
ArrayOfIdentityAccess
Elements
IdentityAccessSummary
Contains access summary for a particular role, group or user.
Elements
Name | Type | Required | Nillable | Description |
---|
identity | Object | Yes | No | The role, group or user. |
general | boolean | No | No | If the identity is a role, true if general for the specified object type. |
inheritedObjectCount | unsignedInt | Yes | No | The number of objects that a specific role is added to, with inherited role permissions. |
excludedObjectCount | unsignedInt | Yes | No | The number of objects that the role has been excluded from, if the identity is a general role. |
overriddenObjectCount | unsignedInt | Yes | No | The number of objects that the user, group or legacy role (not inheriting the role permissions) has been added to. |
ArrayOfIdentityAccessSummary
Elements
Interface
Contains all properties for an interface object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the interface. |
clientIdentifier | string | No | Yes | The client identifier for the interface. |
addresses | ArrayOfIPAddress | No | Yes | The addresses for the interface. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the interface. |
deviceRef | ObjRef | No | No | A unique reference ID of the device to which the interface belongs. |
ArrayOfInterface
Elements
LicenseCount
Number of allowed and in use objects that count towards a license.
Elements
Name | Type | Required | Nillable | Description |
---|
licenseType | string | Yes | No | An string describing an object that has license limits. |
allowed | unsignedInt | No | Yes | Indicates the sum of allowed items of that type. |
used | unsignedInt | Yes | No | Count of items in database towards the license limit of that type. |
ArrayOfLicenseCount
Elements
LicenseKey
A Micetro license key and its properties.
Elements
Name | Type | Required | Nillable | Description |
---|
key | string | Yes | No | A license key stored by the system. |
valid | boolean | Yes | No | Flag that indicates whether the license key is valid or not. |
type | string | Yes | No | The type of the license key, indicated the module it activates. |
limit | string | No | No | A text describing the limit allowed by the key, if it is not a subscription key. |
size | unsignedInt | No | No | Number of items allowed by the key, if it is limited. |
status | string | Yes | No | The status of the license key, indicates if it is active, expired etc. |
isEvaluation | boolean | Yes | No | Indicates that the key is an evaluation key. |
isSubscription | boolean | Yes | No | Indicates that the key is an subscription key. |
expiryDate | string | No | No | The expiry information for the key. |
ArrayOfLicenseKey
Elements
LogFileCategory
The category of a log file
Enumerations
Name | Description |
---|
Micetro | Micetro Log |
Startup | Startup log |
Messages | Messages log |
LogFileInfo
Contains basic info for a log file.
Elements
Name | Type | Required | Nillable | Description |
---|
filename | string | Yes | No | Filename of log file, relative to the log file folder. |
size | unsignedInt | Yes | No | Size of the file in bytes. |
date | string | Yes | No | Date of the log file, in YYYY-MM-DD format. |
ArrayOfLogFileInfo
Elements
LogFileLine
Line of a log file
Elements
Name | Type | Required | Nillable | Description |
---|
index | unsignedInt | Yes | No | The log line index. May differ from actual line number. |
time | string | Yes | Yes | Time of log message |
level | LogLevel | Yes | No | Log level |
thread | string | Yes | Yes | Combination of threadID and threadName |
message | string | Yes | Yes | The log message |
ArrayOfLogFileLine
Elements
LogLevel
Log Level in log files.
Enumerations
Name | Description |
---|
error | Error (0) |
warning | Warning (1) |
notice | Notice (2) |
major | Major (3) |
info | Info (4) |
verbose | Verbose (5) |
debug | Debug (6) |
trace | Trace (7) |
unknown | Unknown |
Information needed logging into a cloud service.
Elements
Name | Type | Required | Nillable | Description |
---|
openStackLogin | OpenStackLogin | No | Yes | Contains all information needed to log into an OpenStack account. |
azureLogin | AzureLogin | No | Yes | Contains all information needed to log into an Azure account. |
awsLogin | AWSLogin | No | Yes | Contains all information needed to log into an AWS account. |
ns1Login | NS1Login | No | Yes | Contains all information needed to log into an NS1 account. |
dynLogin | DynLogin | No | Yes | Contains all information needed to log into an Dyn account. |
akamaiLogin | AkamaiLogin | No | Yes | Contains all information needed to log into an Akamai account. |
cloudLinkLogin | CloudLinkLogin | No | Yes | Contains all information needed to connect to a cloud account with cloudlink. |
MSSpecificDNSZoneOptions
Contains all properties for options specific to a MS DNS zone.
Elements
MaintainTrustAnchor
Possible DNS resource record sets to maintain trust anchors for.
Enumerations
Name | Description |
---|
Unknown | The resource record set is not recognized. |
None | Do not maintain trust anchors. |
DNSKEY | Maintain trust anchors for DNSKEY. |
NS1Login
Contains all information needed to log into a NS1 account.
Elements
Name | Type | Required | Nillable | Description |
---|
apiKey | string | Yes | No | API Key to use for authenticating with NS1. |
NSEC3HashAlgorithm
Possible values for NSEC3 hash algorithm.
Enumerations
Name | Description |
---|
Unknown | The hash algorithm is not recognized. |
SHA-1 | Use SHA-1. |
NetworkAuthority
Describes what servers or virtual networks are authoritative for the network.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | No | No | Describes the network authority relationship as a string of authoritative object names. |
type | string | Yes | No | The type of object authoritative for the network. |
subtype | NetworkAuthoritySourceSubtype | Yes | No | A more detailed description of the authority type. |
sources | ArrayOfNetworkAuthoritySources | Yes | No | Objects that can be considered authoritative for the network. |
failoverName | string | No | Yes | The name of the failover relationship, if applicable. |
totalNumberOfSources | unsignedInt | No | No | Total number of scopes in range. |
NetworkAuthoritySource
A source of authority for a network.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the object that is authoritative for the network, for instance a DHCP server or a cloud service. |
type | string | Yes | No | The type of object authoritative for the network. |
ref | ObjRef | No | No | A reference to the object, if one is available in the system. |
enabled | boolean | No | No | Indicates whether the instance is enabled and/or available on the source. |
NetworkAuthoritySourceSubtype
Possible types of network authority sources.
Enumerations
Name | Description |
---|
Scope | A single DHCP scope. |
Split | A split scope. |
Failover | A DHCP failover scope. |
High availability | A Kea high-availability scope. |
Overlap | A Meraki overlapping scope. |
NetworkDiscoveryInfo
Contains Network Discovery Info.
Elements
Name | Type | Required | Nillable | Description |
---|
routerName | string | No | No | The name of the router. |
gateway | IPAddress | No | No | The IP address of the gateway. |
interfaceID | unsignedInt | No | No | The interface ID. |
interfaceName | string | No | No | The interface name. |
VLANID | unsignedInt | No | No | The VLAN ID for the interface. |
interfaceDescription | string | No | Yes | The interface description. |
VRFName | string | No | Yes | The VRF name assigned to the interface. |
ArrayOfNetworkDiscoveryInfo
Elements
NotifyOption
Definition of servers that should be notified of changes to a DNS zone.
Elements
Name | Type | Required | Nillable | Description |
---|
authoritative | boolean | No | No | Notify authoritative servers. |
alsoNotify | ArrayOfIPAddress | No | Yes | List of other servers to notify. |
ObjRef
A reference to an object.
ArrayOfObjRef
Elements
Object
Contains information about a generic object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | A reference to the object. |
objType | ObjectType | No | No | The type of the object. |
name | string | No | No | The name of the object. |
ArrayOfObject
Elements
ObjectAccess
Contains information about an object access entry.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | A reference to the object. |
name | string | Yes | No | The name of the object. |
identityAccess | ArrayOfIdentityAccess | No | Yes | An array of access entries for different users and groups for the object. |
ArrayOfObjectAccess
Elements
ObjectError
Contains information about an error related to an operation on an object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | A reference to the object. |
error | string | Yes | No | The error string. |
ArrayOfObjectError
Elements
ObjectType
Defines possible object types.
Enumerations
Name | Description |
---|
Unknown | Unknown object type. |
Suite | Micetro. |
DNSServer | DNS server. |
DHCPServer | DHCP server. |
DNSZone | DNS zone. |
DNSView | DNS view. |
Range | IP Address range. |
DHCPScope | DHCP scope. |
IPAddress | IP address. |
DHCPReservation | DHCP reservation. |
DHCPAddressPool | DHCP address pool. |
DHCPGroup | DHCP group. |
ADSite | Active Directory site. |
DNSRecord | DNS resource record. |
User | User. |
Group | Group. |
DHCPExclusion | DHCP exclusion. |
DHCPFailoverPeer | DHCP failover peer. |
DHCPLease | DHCP lease. |
Device | Device. |
Interface | Interface for a device. |
Folder | Folder. |
Superscope | Superscope. |
ADSiteLink | Active Directory site link. |
AddressSpace | Address space. |
ADForest | Active Directory forest. |
Appliance | A Micetro Appliance. |
ChangeRequest | Change request. |
CloudServiceAccount | Cloud Service account. |
CloudNetwork | Cloud network. |
Role | Role. |
XDNSGroup | xDNS zone group. |
ReportDefinition | Report Definition |
Report | Report |
CloudService | Cloud Service. |
CloudAccountSubscription | Cloud Account Subscription. |
ServerGroup | Server group. |
ClientClass | Client class. |
Policy | Policy. |
Agent | Agent. |
Service | Service. |
XDNSProfile | xDNS profile. |
ArrayOfObjectType
Elements
OpenStackLogin
Contains all information needed to log into an OpenStack account.
Elements
Name | Type | Required | Nillable | Description |
---|
serverNode | string | Yes | No | The server node with which to communicate. |
username | string | Yes | No | The username to use for authenticating with OpenStack. |
password | string | Yes | Yes | The password to use for authenticating with OpenStack. |
httpsRequired | boolean | Yes | No | Is HTTPS required for communicating with server node. |
PTRStatus
Defines possible status types for PTR records.
Enumerations
Name | Description |
---|
Unknown | Unknown status. |
OK | No errors found mapping the PTR record. |
Verify | Errors or inconsistencies found when mapping the PTR record. |
Property
Contains a single property entry for an object.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the property. |
value | string | No | Yes | The value of the property. |
ArrayOfProperty
Elements
PropertyDefinition
Contains the property definition for a property.
Elements
Name | Type | Required | Nillable | Description |
---|
id | string | No | Yes | The property ID, if different from name. Read-only. |
name | string | Yes | No | The name of the property. |
type | PropertyType | Yes | No | The type of the property. |
system | boolean | No | No | Contains true if the property is system defined. |
mandatory | boolean | No | No | Determines if the property is mandatory. |
readOnly | boolean | No | No | Determines if the property is read-only. |
multiLine | boolean | No | No | Determines if the property is multi-line. |
defaultValue | string | No | Yes | Contains the default value for the property. |
listItems | ArrayOfString | No | Yes | Contains the list items if the property is an enumeration. |
parentProperty | string | No | No | Name of the parent property. |
cloudTags | ArrayOfCloudTag | No | Yes | Associated cloud tags |
definedBy | string | No | No | The service type that defined this property. Only relevant for provider properties. |
ArrayOfPropertyDefinition
Elements
PropertyType
Defines the possible data types for a custom property.
Enumerations
Name | Description |
---|
String | Free form string. |
HexStr | Hexadecimal encoded string. |
Boolean | Boolean. |
IPAddress | IPv4/IPv6 address. |
Integer | Integer. |
IPOrHostname | IP or hostname |
ProviderProperties
Bag of properties as key-value pairs.
Elements
Name | Type | Required | Nillable | Description |
---|
any |
Range
Contains all properties for a range object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The CIDR of the range, or from-to address range. |
from | IPAddress | No | No | The starting IP address of the range. |
to | IPAddress | No | No | The ending IP address of the range. |
parentRef | ObjRef | No | No | A reference to the immediate parent range. |
adSiteRef | ObjRef | No | No | A reference to the AD site to which the range belongs. |
adSiteDisplayName | string | No | No | The display name of the AD site to which the range belongs. |
childRanges | ArrayOfObject | No | Yes | An array of child ranges of the range. |
isLeaf | boolean | No | Yes | Determines if the range has any child ranges. |
numChildren | unsignedInt | No | Yes | Number of child ranges. |
dhcpScopes | ArrayOfObject | No | Yes | An array of scopes associated with the range. |
authority | NetworkAuthority | No | No | Describes objects that can be considered authoritative for the range and their relationship. |
superscope | string | No | Yes | DHCP superscope |
subnet | boolean | No | No | Determines if the range is defined as a subnet. |
locked | boolean | No | No | Determines if the range should be locked. |
autoAssign | boolean | No | No | Determines if it should be possible to automatically assign IP addresses from the range. |
hasSchedule | boolean | No | No | Determines if a discovery schedule has been set for the range. |
hasMonitor | boolean | No | No | Determines if monitoring is enabled for the range. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the range. |
inheritAccess | boolean | No | No | Should this range inherit its access bits from its parent range?. |
isContainer | boolean | No | No | Set to true to create a container instead of a range. |
utilizationPercentage | unsignedInt | No | No | Utilization percentage for the range. |
hasRogueAddresses | boolean | No | No | If this range is a container, then this field will indicate whether there are rogue addresses in the container. |
cloudNetworkRef | ObjRef | No | No | A reference to the cloud network to which the range belongs. |
cloudAllocationPools | ArrayOfAddressBlock | No | Yes | Addresses in range which should be available for dynamic allocation in the cloud. |
discoveredProperties | ArrayOfNetworkDiscoveryInfo | No | Yes | Network discovery information. |
created | DateTime | No | Yes | Date when the range was created. |
lastModified | DateTime | No | Yes | Date when the range was last modified. |
folderRef | ObjRef | No | No | The folder containing the range |
clientClassAssociations | ArrayOfClientClassAssociation | No | No | The client class associations of scopes and pools in the range. |
ArrayOfRange
Elements
RangeChange
Contains all properties for a range change object.
Elements
Name | Type | Required | Nillable | Description |
---|
type | ChangeType | Yes | No | The type of the range change. |
state | ChangeRequestState | No | No | The state of the range change. |
hasAccess | boolean | No | No | Specifies whether the user has access to approve/reject the range change. |
rangeBefore | Range | No | No | The range as it was when the range change was made (omitted when type is Add). |
rangeAfter | Range | No | No | The range as it should be after the range change has been applied (omitted when type is Remove). |
ArrayOfRangeChange
Elements
RangeWithStatistics
Contains a range object along with statistics for that range.
Elements
Name | Type | Required | Nillable | Description |
---|
range | Range | Yes | No | The range object. |
used | string | Yes | No | Number of used IP addresses in the range. |
free | string | Yes | No | Number of free IP addresses in the range. |
utilization | int | Yes | No | Utilization percentage for the range. |
ArrayOfRangeWithStatistics
Elements
Region
Contains information about a region.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the region. |
numberOfVPCs | unsignedInt | Yes | No | Number of VPCs in the region. |
numberOfZones | unsignedInt | Yes | No | Number of zones in the region. |
ArrayOfRegion
Elements
Report
Contains information about a Report.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | A unique reference ID for the object. |
reportDefinitionRef | string | Yes | No | A reference for the report definition. |
title | string | Yes | Yes | The title of the report. |
startTime | string | Yes | Yes | The time when the report was started . |
runCount | unsignedInt | No | No | The number of items returned. |
runTime | unsignedInt | No | No | The running time in milliseconds. |
ArrayOfReport
Elements
ReportCategory
Defines the possible categories of a report.
Enumerations
Name | Description |
---|
Unknown | Unknown report. |
DNS | DNS report. |
DHCP | DHCP report. |
IPAM | IPAM report. |
User | User defined report. |
General | General report. |
ReportContentType
Defines the possible report content types.
Enumerations
Name | Description |
---|
XML | XML formatted report. |
CSV | Comma separated value formatted report. |
JSON | JSON formatted report. |
SYLK | Symbolic link formatted report. |
ReportDefinition
Contains information about a report definition.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference for the object. |
title | string | Yes | No | The report title. |
description | string | No | Yes | A description of the report. |
help | string | No | Yes | Instructions for the user on how to use the report. |
type | ReportType | No | No | The type of a report. |
category | ReportCategory | Yes | No | The category of a report. |
sourceName | string | Yes | No | The reporting source. |
resLimit | unsignedInt | No | Yes | The maximum number of records to return. |
filter | string | No | Yes | The report filter. |
columns | ArrayOfString | No | Yes | An optional array of columns for output. If not specified all columns will be returned |
keepMaxItems | unsignedInt | No | Yes | The maximum number of reports to keep. By default 0 meaning keep all reports. |
keepMaxDays | unsignedInt | No | Yes | The maximum number of days to keep a report. By default 0 meaning keep all reports. |
scheduled | boolean | No | Yes | True if the report is scheduled to be run. |
nextRun | DateTime | No | Yes | The time the report will run if scheduled. |
script | string | No | Yes | Name of script to run on results from a scheduled run. |
ArrayOfReportDefinition
Elements
ReportOutput
Contains report output.
Elements
Name | Type | Required | Nillable | Description |
---|
columns | ArrayOfFieldDefinition | Yes | Yes | An array of output fields. |
rows | ArrayOfRow | Yes | Yes | The result of a report. |
ReportSource
Contains information about a report source.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the report source. |
title | string | Yes | No | The title of the report source. |
ArrayOfReportSource
Elements
ReportType
Defines possible report types.
Enumerations
Name | Description |
---|
Base | Base predefined report. |
Standard | Standard predefined report. |
User | User defined report. |
ResolvedHost
Contains a single IP address and its hostname, or an error message.
Elements
Name | Type | Required | Nillable | Description |
---|
ip | IPAddress | No | No | The IP address. |
host | string | No | No | The hostname the IP address resolves to. |
error | string | No | No | An error message. |
ArrayOfResolvedHost
Elements
ResourceGroup
Contains information about a resource group.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the resource group. |
numberOfVPCs | unsignedInt | Yes | No | Number of VPCs in the resource group. |
numberOfZones | unsignedInt | Yes | No | Number of zones in the resource group. |
ArrayOfResourceGroup
Elements
Role
Contains all properties for a role object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | string | Yes | No | The name of the role. |
type | RoleType | No | Yes | The type of role. Defaults to "Specific". |
description | string | No | Yes | A description for the role. |
builtIn | boolean | No | Yes | Indicates a system built in role. |
users | ArrayOfObject | No | Yes | An array of references to users that have the role. |
groups | ArrayOfObject | No | Yes | An array of references to groups that have the role. |
access | ArrayOfRoleAccess | No | Yes | Role Access for every object type with access. |
ArrayOfRole
Elements
RoleAccess
All access bits for a role
Elements
Name | Type | Required | Nillable | Description |
---|
objType | ObjectType | Yes | No | The type of object the access refers to |
general | boolean | No | No | Read-only. True if this role is applied to all objects of this type, in general. |
accessEntries | ArrayOfAccessEntry | Yes | No | The access flags for the role |
ArrayOfRoleAccess
Elements
RoleType
The type of the Role
Enumerations
Name | Description |
---|
General | The role implicitly applies to all objects. |
Specific | The role must be assigned to the objects where it applies. |
Legacy | Roles that function the same way as roles in version 10.0 and older of Micetro. |
ScavengeOption
Scavenge stale resource records.
Elements
Name | Type | Required | Nillable | Description |
---|
noRefresh | unsignedInt | Yes | No | The time between the most recent refresh of a record timestamp and the moment when the timestamp may be refreshed again. |
refresh | unsignedInt | Yes | No | The time between the earliest moment when a record timestamp can be refreshed and the earliest moment when the record can be scavenged. The refresh interval must be longer than the maximum record refresh period. |
Schedule
Contains all properties for scheduling. Used for generations of reports.
Elements
Name | Type | Required | Nillable | Description |
---|
interval | unsignedInt | No | No | The interval between runs for the schedule. |
unit | TimeUnit | No | No | The time unit for the interval. |
enabled | boolean | No | No | Determines if the schedule is enabled. |
startTime | DateTime | No | No | The date and time when the schedule should start. |
ServiceStatus
The state of a service.
Enumerations
Name | Description |
---|
undefined | Status is undefined. |
running | The service is running. |
stopped | The service is stopped. |
exited | The service has exited. |
fatal | The service is dead. |
impaired | The service is impaired. |
SortOrder
Defines sorting order for a list.
Enumerations
Name | Description |
---|
Ascending | Sort order ascending. |
Descending | Sort order descending. |
SourcedDHCPOptions
Contains DHCP options from a single source.
Elements
Name | Type | Required | Nillable | Description |
---|
source | Object | Yes | No | The source of the DHCP options. |
dhcpOptions | ArrayOfDHCPOption | Yes | Yes | The DHCP options. |
ArrayOfSourcedDHCPOptions
Elements
SubdomainHandling
How existing subdomains of subnets that are being updated should be handled.
Enumerations
Name | Description |
---|
Ignore | Skip reverse records in subdomains. |
Update | Update reverse records in subdomains as well. |
Suggestion
Contains a single suggestion entry.
Elements
Name | Type | Required | Nillable | Description |
---|
key | string | Yes | No | The key of the suggestion. |
value | string | No | Yes | The value of the suggestion. |
ArrayOfSuggestion
Elements
SystemSetting
Contains a single system setting value.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the system setting. |
value | string | No | Yes | The value of the system setting. |
ArrayOfSystemSetting
Elements
SystemSettingInfo
Contains a single system setting info.
Elements
Name | Type | Required | Nillable | Description |
---|
name | string | Yes | No | The name of the system setting. |
description | string | No | Yes | The description of the system setting. |
type | string | Yes | No | The type of the system setting. |
isAdvanced | boolean | No | Yes | Flag to indicate if this is an advanced setting. |
ArrayOfSystemSettingInfo
Elements
TimeUnit
Defines possible time units.
Enumerations
Name | Description |
---|
Minutes | Minutes. |
Hours | Hours. |
Days | Days. |
Weeks | Weeks. |
Months | Months. |
TransportProtocol
Defines possible transports protocols.
Enumerations
Name | Description |
---|
UDP | UDP over an IPv4 connection. |
TCP | TCP over an IPv4 connection. |
UDP6 | UDP over an IPv6 connection. |
TCP6 | TCP over an IPv6 connection. |
UnboundSpecificDNSZoneOptions
Contains all properties for options specific to a Unbound DNS zone.
Elements
Name | Type | Required | Nillable | Description |
---|
prime | boolean | No | Yes | Contains true if NS set priming should be performed. Applicable only to stub zones on Unbound servers. |
querySecond | boolean | No | Yes | Contains true if the server should try to query if a resolve fails. Same as stub-first/forward-first. Applicable only to stub and forward zones on Unbound servers. |
User
Contains all properties for a user object.
Elements
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | A unique reference ID for the object. |
name | ASCII | Yes | No | The login name of the user. |
password | string | No | Yes | The user password. |
fullName | string | No | Yes | The full name of the user. |
externalID | string | No | Yes | The external authentication ID of the user. Distinguished name for AD user. |
description | string | No | Yes | The description for the user. |
email | string | No | Yes | The users email address. |
lastLogin | DateTime | No | Yes | The date and time of the last login for this user. |
authenticationType | AuthenticationType | Yes | No | The authentication type for the user. |
groups | ArrayOfObject | No | Yes | The groups the user is a member of. |
roles | ArrayOfObject | No | Yes | The roles the user is directly associated to. |
groupRoles | ArrayOfObject | No | Yes | The roles the user has through his group membership. |
ArrayOfUser
Elements
ZoneSet
An instance of the zones that were created.
Elements
Name | Type | Required | Nillable | Description |
---|
masterRef | ObjRef | No | Yes | A unique reference ID for the zone. |
zoneRefs | ArrayOfObjRef | No | Yes | A list of unique reference IDs for the slave or secondary zones that were created. |
ZoneSets
Contains the zones that were created.
Elements
Name | Type | Required | Nillable | Description |
---|
zoneSet | ZoneSet | No | No | An reference to all zone instances created. |
Commands
AddADForest
Adds a new AD forest.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adForest | ADForest | Yes | No | The AD forest to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added AD forest. |
AddADSite
Adds a new AD site.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adSite | ADSite | Yes | No | The AD site to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added AD site. |
AddADSiteLink
Adds a new AD site link.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adSiteLink | ADSiteLink | Yes | No | The AD site link to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added AD site link. |
AddAddressSpace
Adds a new address space.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
addressSpace | AddressSpace | Yes | No | The address space to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added address space. |
AddChangeRequest
Adds request for change(s).
Arguments
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | No | No | Reference to the added change request. |
errors | ArrayOfChangeRequestError | No | Yes | Errors that occurred while processing the change request. |
AddCloudNetwork
Adds a new cloud network.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
cloudNetwork | CloudNetwork | Yes | No | The cloud network to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added cloud network. |
AddCloudServiceAccount
Adds a new cloud service account.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
cloudServiceAccount | CloudServiceAccount | Yes | No | The cloud service account to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added cloud service account. |
AddDHCPAddressPool
Adds a new DHCP address pool.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpAddressPool | DHCPAddressPool | Yes | No | The DHCP address pool to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DHCP address pool. |
AddDHCPExclusion
Adds a new DHCP exclusion.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpExclusion | DHCPExclusion | Yes | No | The DHCP exclusion to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DHCP exclusion. |
AddDHCPFailoverRelationship
Adds a DHCP failover relationship.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpFailoverRelationship | DHCPFailoverRelationship | Yes | No | The DHCP failover relationship to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
AddDHCPGroup
Creates a DHCP group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpGroup | DHCPGroup | Yes | No | The DHCP group to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DHCP Group. |
AddDHCPOptionDefinition
Adds a new DHCP option definition on the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | The DHCP server on which the option definition should be added. |
dhcpOptionDefinition | DHCPOptionDefinition | Yes | No | The DHCP option definition to add. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
AddDHCPPolicy
Adds a DHCP policy to the specified owner (which must reference a DHCP server or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the DHCP server/scope to which the DHCP policy should be added. |
objType | ObjectType | No | No | The object type of the owner (i.e. either DHCP server or DHCP scope). |
dhcpPolicy | DHCPPolicy | Yes | No | The DHCP policy to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
AddDHCPReservation
Adds a new DHCP reservation.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpReservation | DHCPReservation | Yes | No | The DHCP reservation to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DHCP reservation. |
AddDHCPScope
Adds a new DHCP scope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpScope | DHCPScope | Yes | No | The DHCP scope to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DHCP scope. |
AddDHCPScopesToDHCPFailoverRelationship
Add DHCP scope(s) to a DHCP failover relationship.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
dhcpFailoverRelationshipName | string | Yes | No | The DHCP failover relationship. |
dhcpScopeRefs | ArrayOfObjRef | Yes | No | References to DHCP scopes that should be added to the DHCP failover relationship. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
AddDHCPServer
Adds a new DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServer | DHCPServer | Yes | No | The DHCP server to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DHCP server. |
warning | string | No | No | Warning message returned if the added DHCP server is e.g. of an old or unknown version. |
AddDHCPSuperscope
Adds a new DHCP superscope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
superscope | DHCPSuperscope | Yes | No | The DHCP superscope to be added. |
dhcpScopeRefs | ArrayOfObjRef | No | No | Array of references to the scopes which should be a part of the new superscope. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | The reference to the newly created superscope. |
AddDNSGenerateDirective
Adds a new DNS generate directive.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | An object reference for the DNS zone. |
dnsGenerateDirective | DNSGenerateDirective | Yes | No | The DNS generate directive to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DNS generate directive. |
AddDNSRecord
Adds a new DNS record.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecord | DNSRecord | Yes | No | The DNS record to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
placeAfterRef | ObjRef | No | No | A reference to a record in the same zone that the record should be placed after. Only applicaple to file based zones. Ignored for other zones. |
autoAssignRangeRef | ObjRef | No | No | A reference to a range that should be used for automatic assignment of IP addresses. |
forceOverrideOfNamingConflictCheck | boolean | No | No | Set to true to force creation of record regardless of naming conflict check (if enabled in system settings). |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DNS record. |
AddDNSRecordChangeRequest
Adds request for DNS record change(s).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordChanges | ArrayOfDNSRecordChange | Yes | No | The requested DNS record change(s). |
requestDate | DateTime | No | Yes | The date and time, when the requested DNS record change(s) should be applied, if specified. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the change request. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DNS record change request. |
AddDNSRecords
Adds multiple new DNS records.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecords | ArrayOfDNSRecord | Yes | No | The DNS records to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
autoAssignRangeRef | ObjRef | No | No | A reference to a range that should be used for automatic assignment of IP addresses. |
dnsZoneRef | ObjRef | No | No | A reference to a DNS Zone that all the DNS records should be placed in. |
placeAfterRef | ObjRef | No | No | A reference to a DNS Record that all the added DNS records should be placed after |
forceOverrideOfNamingConflictCheck | boolean | No | No | Set to true to force creation of record regardless of naming conflict check (if enabled in system settings). |
Response
Name | Type | Required | Nillable | Description |
---|
objRefs | ArrayOfObjRef | Yes | No | References to the added DNS records. If a record was not successfully added, the reference returned for that record will be {#0-#0}. |
errors | ArrayOfError | Yes | Yes | Error messages. One error message is generated for each record that is not added. |
AddDNSServer
Adds a new DNS server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsServer | DNSServer | Yes | No | The DNS server to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DNS server. |
AddDNSZone
Adds a new DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZone | DNSZone | Yes | No | The DNS zone to add. |
zoneOptions | DNSZoneOptions | No | No | The options to set for the new zone. |
masters | ArrayOfIPAddress | No | No | The IP addresses of the master servers if the new zone is not a master zone. |
secondaries | ArrayOfObjRef | No | Yes | The view references for secondary zones |
records | ArrayOfDNSRecord | No | Yes | Array of initial records for the new zone and the new default for the given view, only supported for Authserve DNS services. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added DNS zone. |
secondaryZoneRefs | ArrayOfObjRef | No | No | References to any added secondary DNS zones, given the input "secondaries". |
AddDNSZones
Adds DNS Zones.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
names | ArrayOfString | Yes | No | List of zone names. |
type | DNSZoneType | No | Yes | Specifies the type of the zones to create. Defaults to Master. |
adIntegrated | boolean | No | Yes | Contains true if the zone is Active Directory integrated. |
dynamic | boolean | No | Yes | Contains true if the zone is dynamic. |
prime | boolean | No | Yes | Contains true if NS set priming should be performed. Applicable only to stub zones on Unbound servers. |
querySecond | boolean | No | Yes | Contains true if the server should try to query if a resolve fails. Same as stub-first/forward-first. Applicable only to stub/forward zones on Unbound servers. |
adReplicationType | ADReplicationType | No | Yes | The AD replication type if the zone is Active Directory integrated. |
adPartition | string | No | Yes | The AD partition if the zone is Active Directory integrated. |
masterViewRef | ObjRef | No | Yes | Reference to the master server view, only applicable when creating a master zone. |
customProperties | ArrayOfProperty | No | Yes | The custom properties for the zone, only applicable when creating a master zone. |
secondaryServerViewRefs | ArrayOfObjRef | No | Yes | Reference to the server views for other than master zones. |
zoneOptions | DNSZoneOptions | No | No | The options to set for the new zones. |
masters | ArrayOfIPAddress | No | No | IP addresses of master or forward servers when creating non-master zones. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
zoneSets | ZoneSets | Yes | Yes | List of created zones. |
errors | ArrayOfError | Yes | Yes | Error messages. One error message is generated for each zone that is not added. |
AddDevice
Adds a new device.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
device | Device | Yes | No | The device to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added device. |
AddFolder
Adds a new folder.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
folder | Folder | Yes | No | The folder to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added folder. |
AddGroup
Adds a new user group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
group | Group | Yes | No | The group to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added group. |
AddInterface
Adds a new interface.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
interface | Interface | Yes | No | The interface to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added interface. |
AddLicenseKey
Adds a new license key to the system.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
licenseKey | string | Yes | No | The license key to add. |
AddPropertyDefinition
Adds a new custom property definition.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objType | ObjectType | Yes | No | The object type for which the custom property definition should be added. |
propertyDefinition | PropertyDefinition | Yes | No | The custom property definition to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
cloudTags | ArrayOfCloudTag | No | Yes | Cloud tags associated with the property. |
AddRange
Adds a new address range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
range | Range | Yes | No | The address range to add. |
discovery | Discovery | No | No | The discovery (ping) schedule that should be set for the address range. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added address range. |
AddRole
Adds a new role.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
role | Role | Yes | No | The role to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added role. |
AddRoleToGroup
Adds a role to a group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
roleRef | ObjRef | Yes | No | A reference to the role to add. |
groupRef | ObjRef | Yes | No | A reference to the group to which the role should be added. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
AddRoleToUser
Adds a role to a user.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
roleRef | ObjRef | Yes | No | A reference to the role to which the user should be added. |
userRef | ObjRef | Yes | No | A reference to the user to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
AddUser
Adds a new user.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
user | User | Yes | No | The user to add. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the added user. |
AddUserToGroup
Adds a user to a group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
userRef | ObjRef | Yes | No | A reference to the user to add. |
groupRef | ObjRef | Yes | No | A reference to the group to which the user should be added. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ApproveChanges
Approve change(s).
Arguments
ApproveDNSRecordChanges
Approves DNS record change(s).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordChangeRequestRef | ObjRef | Yes | No | An object reference for the DNS record change request. |
dnsRecordChanges | ArrayOfDNSRecordChange | Yes | No | The requested DNS record change(s). |
saveComment | string | No | Yes | Save comment text to associate with the action. |
FlushFromCacheOnDNSServers
Flushes a single or all DNS entries from cache on given servers.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsServerRefs | ArrayOfObjRef | Yes | No | An array of object references for the DNS servers. |
entry | string | No | Yes | Entry to be flushed from cache. If no entry is specified, then the entire cache is flushed. |
dnsScopeName | string | No | Yes | The DNS Scope to flush from. |
flushRecursively | boolean | No | Yes | Recursively flush the entire domain. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
GenerateReverseRecords
Generates or updates reverse records.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
subnets | ArrayOfString | Yes | No | Subnets or reverse zones for which reverse records should be generated/updated. |
viewName | string | No | Yes | View for which reverse records should be generated/updated. |
subdomainHandling | SubdomainHandling | Yes | No | How existing subdomains of subnets that are being updated should be handled. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
errors | ArrayOfString | No | Yes | Non-fatal errors that occurred during the update process. |
GetADForest
Gets specified AD forest.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adForestRef | ObjRef | Yes | No | The object reference for the AD Forest. |
Response
Name | Type | Required | Nillable | Description |
---|
adForest | ADForest | Yes | No | The AD Forest object. |
GetADForests
Gets AD forests.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
adForests | ArrayOfADForest | Yes | Yes | List of AD Forests. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetADPartitions
Gets AD partitions from the specified DNS server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsServerRef | ObjRef | Yes | No | A reference to the DNS server from which to retrieve the Active Directory partitions. |
Response
Name | Type | Required | Nillable | Description |
---|
adPartitions | ArrayOfString | Yes | Yes | List of Active Directory partitions. |
GetADSite
Gets specified AD site.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adSiteRef | ObjRef | Yes | No | The object reference for the AD Site. |
Response
Name | Type | Required | Nillable | Description |
---|
adSite | ADSite | Yes | No | The AD Site object. |
GetADSiteLink
Gets specified AD site link.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adSiteLinkRef | ObjRef | Yes | No | The object reference for the AD Site Link. |
Response
Name | Type | Required | Nillable | Description |
---|
adSiteLink | ADSiteLink | Yes | No | The AD Site Link object. |
GetADSiteLinks
Gets AD site links.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
adSiteLinks | ArrayOfADSiteLink | Yes | Yes | List of AD Site Links. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetADSites
Gets AD sites.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
adSites | ArrayOfADSite | Yes | Yes | List of AD Sites. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetAddressBlocks
Gets specified address range's address blocks.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | Reference to the address range. |
Response
Name | Type | Required | Nillable | Description |
---|
addressBlocks | ArrayOfAddressBlock | Yes | Yes | Address range's address blocks. |
GetAddressSpace
Gets specified address space.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
addressSpaceRef | ObjRef | Yes | No | The object reference for the address space. |
Response
Name | Type | Required | Nillable | Description |
---|
addressSpace | AddressSpace | Yes | No | The address space object. |
GetAddressSpaces
Gets address spaces.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
addressSpaces | ArrayOfAddressSpace | Yes | Yes | List of address spaces. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetAddressesInUse
Gets addresses in use within the specified address range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
lastseen | Discovery | No | No | Used to filter by the time each address was last seen during discovery (ping). |
ranges | ArrayOfRangeTitle | Yes | No | Names of the address ranges in which to look for addresses. |
Response
Name | Type | Required | Nillable | Description |
---|
addresses | ArrayOfAddress | Yes | Yes | Addresses that are considered to be in use in the specified address ranges. |
GetAvailableAddressBlocks
Gets available address blocks within the specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | An object reference for the range. |
limit | unsignedInt | No | No | The number of address blocks to return. |
mask | unsignedInt | No | No | The minimum size of the address blocks, specified as a subnet mask. Defaults to 24 if neither the mask nor size is specified. |
size | unsignedInt | No | No | The minimum size of the address blocks, specified as the number of addresses. |
ignoreSubnetFlag | boolean | No | No | Determines whether the subnet flag should be ignored when determining the size of the address blocks. |
startAddress | IPAddress | No | No | The starting address to use when looking for the next available address block. Ignored when mask is not provided. |
temporaryClaimTime | unsignedInt | No | No | If set, claims the returned address blocks for the given time in seconds. |
Response
Name | Type | Required | Nillable | Description |
---|
addressBlocks | ArrayOfAddressBlock | Yes | Yes | Array of address blocks fulfilling the given criteria. |
GetChangeRequest
Gets specified change request.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
changeRequestRef | ObjRef | Yes | No | An object reference for the change request. |
Response
Name | Type | Required | Nillable | Description |
---|
changeRequest | ChangeRequest | Yes | No | The change request object. |
GetChangeRequests
Gets change requests.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
includeChanges | boolean | No | No | Specifies whether changes should be included in the result. |
includeProcessedRequests | boolean | No | No | Specifies whether change requests that have already been processed should be included in the result. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
changeRequests | ArrayOfChangeRequest | Yes | Yes | List of change requests. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetCloudNetwork
Gets a cloud network object based on the object reference.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
cloudNetworkRef | ObjRef | Yes | No | An object reference for the cloud network. |
Response
Name | Type | Required | Nillable | Description |
---|
cloudNetwork | CloudNetwork | Yes | No | The cloud network object. |
GetCloudNetworks
Gets a list of cloud networks.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
cloudNetworks | ArrayOfCloudNetwork | Yes | Yes | List of cloud networks. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetCloudServiceAccount
Gets a cloud service account based on the object reference.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
cloudRef | ObjRef | Yes | No | An object reference for the cloud service account. |
Response
Name | Type | Required | Nillable | Description |
---|
cloudServiceAccount | CloudServiceAccount | Yes | No | The cloud service account. |
GetCloudServiceAccounts
Gets a list of cloud service accounts.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
cloudServiceAccounts | ArrayOfCloudServiceAccount | Yes | Yes | List of cloud service accounts. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetCloudServiceInfo
Gets a cloud object based on the object reference.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
cloudRef | ObjRef | No | No | An object reference for the cloud service account. |
cloudServiceAccount | CloudServiceAccount | No | No | The cloud service account to add. |
Response
Name | Type | Required | Nillable | Description |
---|
cloudServiceInfo | CloudServiceInfo | Yes | No | Information about the cloud service account. |
GetClusterMembers
Gets high availability cluster members.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
Response
Name | Type | Required | Nillable | Description |
---|
clusterMembers | ArrayOfClusterMember | Yes | Yes | List of high availability cluster members. |
GetConfigFiles
Gets configuration files for a server/zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A unique reference ID for the object to get configuration files for. Can refer to a DHCP server, DNS server or DNS zone |
Response
Name | Type | Required | Nillable | Description |
---|
configFiles | ArrayOfConfigFile | Yes | No | An array of configuration files. |
readOnly | boolean | Yes | No | Indicates whether the configuration files can be updated. |
GetCurrentAddressSpace
Gets address space that the user is currently in.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
Response
Name | Type | Required | Nillable | Description |
---|
addressSpaceRef | ObjRef | Yes | No | A reference to the current address space. |
GetCustomFilters
Gets a list of custom filters.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
Response
Name | Type | Required | Nillable | Description |
---|
filters | ArrayOfCustomFilter | Yes | Yes | List of filters. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPAddressPool
Gets specified DHCP address pool.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpAddressPoolRef | ObjRef | Yes | No | An object reference for the DHCP address pool. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpAddressPool | DHCPAddressPool | Yes | No | The DHCP address pool object. |
GetDHCPAddressPoolPermitList
Gets DHCP address pool permit list for the specified DHCP address pool.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpAddressPoolRef | ObjRef | Yes | No | An object reference for the DHCP address pool from which to get the address pool permit list. |
Response
GetDHCPAddressPools
Gets DHCP address pools.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpScopeRef | ObjRef | No | No | A reference to the scope containing the address pool(s). |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpAddressPools | ArrayOfDHCPAddressPool | Yes | Yes | List of DHCP address pools. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPClassNames
Gets DHCP class names from the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpClassNames | ArrayOfString | Yes | Yes | An array of DHCP class names. |
GetDHCPConcurrentLeases
Gets concurrent leases.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpConcurrentLeases | ArrayOfDHCPConcurrentLease | Yes | Yes | An array of leases active in more than one location. |
GetDHCPExclusion
Gets specified DHCP exclusion.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpExclusionRef | ObjRef | Yes | No | An object reference for the DHCP exclusion. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpExclusion | DHCPExclusion | Yes | No | The DHCP exclusion object. |
GetDHCPExclusions
Gets DHCP exclusions.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpScopeRef | ObjRef | No | No | A reference to the scope containing the exclusion(s). |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpExclusions | ArrayOfDHCPExclusion | Yes | Yes | List of DHCP exclusions. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPFailoverRelationship
Get a DHCP failover relationship.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
dhcpFailoverRelationshipName | string | Yes | No | The DHCP failover relationship to retrieve. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpFailoverRelationship | DHCPFailoverRelationship | Yes | No | The DHCP failover relationship retrieved. |
GetDHCPFailoverRelationships
Get all DHCP failover relationships from specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | No | No | An object reference for the DHCP server. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
Response
GetDHCPGroup
Gets specified DHCP group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpGroupRef | ObjRef | Yes | No | An object reference for the DHCP group. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpGroup | DHCPGroup | Yes | No | The DHCP group object. |
GetDHCPGroups
Gets DHCP groups from the specified owner (which must reference either a DHCP server or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the object containing the DHCP group(s). |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpGroups | ArrayOfDHCPGroup | Yes | Yes | List of DHCP groups. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPLeaseHistory
Gets DHCP lease history matching the specified field and filter.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
field | DHCPLeaseField | Yes | No | The field by which to filter. |
filter | string | Yes | No | Filtering criteria for the records returned. |
exactMatch | boolean | No | No | Set to true if the field should match the filter exactly. |
collapseRenew | boolean | No | No | Set to true if renew entries should be collapsed into a single lease history entry. |
startDate | DateTime | No | Yes | Date of the first entry to retrieve. |
endDate | DateTime | No | Yes | Date of the last entry to retrieve. |
limit | unsignedInt | No | No | The number of items to return. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpLeaseHistoryEntries | ArrayOfDHCPLeaseHistoryEntry | Yes | Yes | Array of lease history entries fulfilling the search criteria. |
GetDHCPLeases
Gets DHCP leases from the specified DHCP scope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpScopeRef | ObjRef | Yes | No | A reference to the scope containing the leases. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpLeases | ArrayOfDHCPLease | Yes | Yes | List of DHCP leases. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPOptionDefinitions
Gets DHCP option definitions for the specified object (which must reference a DHCP server, a DHCP group, a DHCP scope, a DHCP address pool, or a DHCP reservation).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A reference to the object from which to get the DHCP option definitions. |
objType | ObjectType | No | No | The type of the object from which to get the DHCP option definitions. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. Only applies to DHCP server and DHCP superscope. |
Response
GetDHCPOptions
Gets DHCP options for the specified object (which must reference a DHCP server, a DHCP group, a DHCP scope, a DHCP address pool, or a DHCP reservation).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A reference to the object from which to get the DHCP options. |
objType | ObjectType | No | No | The type of the object from which to get the DHCP options. |
dhcpPolicyName | string | No | Yes | Name of a MS DHCP policy if applicable. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. Only applies to DHCP server and DHCP superscope. |
Response
Name | Type | Required | Nillable | Description |
---|
ticket | unsignedInt | Yes | No | Ticket used for concurrency. Sent back as part of call to SetDHCPOptions and, if there have been changes made to DHCP options for the object since the ticket was returned, the SetDHCPOptions call will fail. |
dhcpOptions | ArrayOfDHCPOption | Yes | Yes | The DHCP options. |
GetDHCPPolicies
Get all DHCP policies from the specified owner (which must reference a DHCP server or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the DHCP server/scope containing the DHCP policies. |
objType | ObjectType | No | No | The object type of the owner (i.e. either DHCP server or DHCP scope). |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpPolicies | ArrayOfDHCPPolicy | Yes | Yes | The DHCP policies retrieved. |
GetDHCPPolicyEnforcement
Gets DHCP policy enforcement as set for the specified owner (which must reference a DHCP server or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the DHCP server/scope for which the DHCP policy enforcement is set. |
objType | ObjectType | No | No | The object type of the owner (i.e. either DHCP server or DHCP scope). |
Response
Name | Type | Required | Nillable | Description |
---|
enforcing | boolean | Yes | No | Specifies whether DHCP policies are being enforced. |
GetDHCPReservation
Gets specified DHCP reservation.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpReservationRef | ObjRef | Yes | No | An object reference for the DHCP reservation. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpReservation | DHCPReservation | Yes | No | The DHCP reservation object. |
GetDHCPReservations
Gets DHCP reservations from the specified owner (which must reference a DHCP server, a DHCP group, or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | No | No | A reference to the DHCP server/group/scope owning the reservations. Specifying a DHCP server will only return reservations on a server level, not reservations on scope level. |
rangeRef | ObjRef | No | No | A reference to the DHCP range the reservations are in. |
objType | ObjectType | No | No | The object type of the owner (i.e. one of DHCP server/group/scope). |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpReservations | ArrayOfDHCPReservation | Yes | Yes | List of DHCP reservations. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPScope
Gets specified DHCP scope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpScopeRef | ObjRef | Yes | No | An object reference for the DHCP scope. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpScope | DHCPScope | Yes | No | The DHCP scope object. |
GetDHCPScopes
Gets DHCP scopes.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
folderRef | ObjRef | No | No | Reference to a folder from which to get scopes. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpScopes | ArrayOfDHCPScope | Yes | Yes | List of DHCP scopes. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPServer
Gets specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpServer | DHCPServer | Yes | No | The DHCP server object. |
GetDHCPServers
Gets DHCP servers.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpServers | ArrayOfDHCPServer | Yes | Yes | List of DHCP servers. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPSubclasses
Gets DHCP subclasses from the specified DHCP class on the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
dhcpClassName | string | Yes | No | The name of the DHCP class for which to retrieve the subclasses. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpSubclasses | ArrayOfString | Yes | Yes | An array of DHCP subclasses. |
GetDHCPSuperscope
Gets specified DHCP superscope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpSuperscopeRef | ObjRef | Yes | No | An object reference for the DHCP superscope. |
Response
Name | Type | Required | Nillable | Description |
---|
dhcpSuperscope | DHCPSuperscope | Yes | No | The DHCP superscope object. |
GetDHCPSuperscopes
Get all DHCP superscopes from a specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
dhcpServerRef | ObjRef | No | No | An object reference for the DHCP server. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
superscopes | ArrayOfDHCPSuperscope | Yes | Yes | The retrieved DHCP superscopes. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDHCPVendorAndUserClasses
Gets DHCP vendor and user classes from the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
Response
GetDNSGenerateDirective
Gets specified DNS generate directive.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsGenerateDirectiveRef | ObjRef | Yes | No | An object reference for the DNS generate directive. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsGenerateDirective | DNSGenerateDirective | Yes | No | The DNS generate directive object. |
GetDNSGenerateDirectives
Gets DNS generate directives from the specified DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | Reference to the zone containing the generate directives. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsGenerateDirectives | ArrayOfDNSGenerateDirective | Yes | Yes | List of DNS generate directives. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDNSPTRRecords
Gets all reverse PTR records for specified IP address.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
address | IPAddress | Yes | No | The IP address. |
dnsZoneRef | ObjRef | Yes | No | Reference to a forward zone. |
Response
Name | Type | Required | Nillable | Description |
---|
reverseRecords | ArrayOfDNSRecord | Yes | Yes | List of reverse records for the specified IP address. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDNSRecord
Gets specified DNS record.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordRef | ObjRef | Yes | No | An object reference for the DNS record. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecord | DNSRecord | Yes | No | The DNS record object. |
GetDNSRecordChangeRequest
Gets specified DNS record change request.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordChangeRequestRef | ObjRef | Yes | No | An object reference for the DNS record change request. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecordChangeRequest | DNSRecordChangeRequest | Yes | No | The DNS record change request object. |
GetDNSRecordChangeRequests
Gets DNS record change requests.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
includeDNSRecordChanges | boolean | No | No | Specifies whether DNS record changes should be included in the result. |
includeProcessedRequests | boolean | No | No | Specifies whether DNS record change requests that have already been processed should be included in the result. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecordChangeRequests | ArrayOfDNSRecordChangeRequest | Yes | Yes | List of DNS record change requests. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDNSRecords
Gets DNS records from the specified DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | Reference to the zone containing the records. |
targetRef | ObjRef | No | Yes | Overrides "offset" and returns a page where "targetRef" is the first item. If target is not found with the given filter, "offset" is not overwritten. |
filter | string | No | Yes | Criteria for filtering the returned items. |
hideNonAccessibleHosts | boolean | No | No | If set to true the resulting set will not contain records for which the user has no access. |
includeMetaRecords | boolean | No | No | If set to true will return control directives and comments included in the zone. |
syncZone | boolean | No | No | If set to true will synchronize the zone from the server before returning records. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecords | ArrayOfDNSRecord | Yes | Yes | List of records. |
offset | unsignedInt | No | No | Offset of page returned when "targetRef" is specified and found. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDNSRecordsInCaches
Get DNS records with a certain pattern that are cached on given DNS servers.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsServerRefs | ArrayOfObjRef | No | Yes | List of DNS servers to search on. |
dnsSearchPattern | string | Yes | No | The pattern to search for. Should be a fully qualified domain name. |
dnsScopeName | string | No | Yes | The Cache Scope to be searched in. |
limit | unsignedInt | No | No | The number of records to return. A limit of zero returns all matched records. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsCaches | ArrayOfDNSCache | Yes | Yes | List of DNS caches. |
errors | ArrayOfObjectError | Yes | Yes | List of error messages. One for each server that could not be queried due to an error. |
GetDNSReverseZone
Gets reverse DNS zone for specified IP address.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
address | IPAddress | Yes | No | The IP address. |
dnsZoneRef | ObjRef | Yes | No | Reference to a forward zone. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsZone | DNSZone | No | Yes | The reverse DNS zone for the specified IP address. |
GetDNSServer
Gets specified DNS server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsServerRef | ObjRef | Yes | No | An object reference for the DNS server. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsServer | DNSServer | Yes | No | The DNS server object. |
GetDNSServers
Gets DNS servers.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsServers | ArrayOfDNSServer | Yes | Yes | List of DNS servers. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDNSView
Gets specified DNS view.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsViewRef | ObjRef | Yes | No | An object reference for the DNS view. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsView | DNSView | Yes | No | The DNS view object. |
GetDNSViews
Gets DNS views.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsServerRef | ObjRef | No | No | A reference to the DNS server. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsViews | ArrayOfDNSView | Yes | Yes | List of DNS server views. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDNSZone
Gets specified DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | An object reference for the DNS zone. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsZone | DNSZone | Yes | No | The DNS zone object. |
GetDNSZoneOptions
Gets zone options for the specified DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | An object reference for the DNS zone. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsZoneOptions | DNSZoneOptions | Yes | No | The DNS zone options. |
GetDNSZones
Gets DNS zones.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
folderRef | ObjRef | No | No | Only return zones within the specified folder. |
dnsViewRef | ObjRef | No | No | Only return zones within the specified view. |
dnsServerRef | ObjRef | No | No | Only return zones on the specified server. |
targetRef | ObjRef | No | Yes | Overrides "offset" and returns a page where "targetRef" is the first item. If target is not found with the given filter, "offset" is not overwritten. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsZones | ArrayOfDNSZone | Yes | Yes | List of zones. |
offset | unsignedInt | No | No | Offset of page returned when "targetRef" is specified and found. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetDevice
Gets specified device.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
deviceRef | ObjRef | Yes | No | The object reference for the device. |
Response
Name | Type | Required | Nillable | Description |
---|
device | Device | Yes | No | The device object. |
GetDevices
Gets devices.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
devices | ArrayOfDevice | Yes | Yes | List of devices. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetFolder
Gets specified folder.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
folderRef | ObjRef | Yes | No | An object reference for the folder. |
Response
Name | Type | Required | Nillable | Description |
---|
folder | Folder | Yes | No | The folder object. |
GetFolderForObject
Gets the folder that contains the specified object.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A reference to the object for which to retrieve the containing folder. |
objType | ObjectType | No | No | The object type. |
Response
Name | Type | Required | Nillable | Description |
---|
folder | ObjRef | No | No | The folder object. |
GetFolders
Gets a list of folders.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
folders | ArrayOfFolder | Yes | Yes | List of folders. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetFreeIPAddresses
Gets specified number of free addresses from the specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | A reference to the address range from which to return the free addresses. |
numberOfAddresses | unsignedInt | No | No | Number of free addresses to return. |
Response
Name | Type | Required | Nillable | Description |
---|
IPAddresses | ArrayOfIPAddress | Yes | No | The free IP addresses in the address range. |
GetGroup
Gets a group object based on the object reference.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
groupRef | ObjRef | Yes | No | An object reference for the group. |
Response
Name | Type | Required | Nillable | Description |
---|
group | Group | Yes | No | The group object. |
GetGroups
Gets a list of user groups.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
userRef | ObjRef | No | No | Reference to a user from which to get roles. |
roleRef | ObjRef | No | No | Reference to a role that the group should have. |
targetRef | ObjRef | No | Yes | Overrides "offset" and returns a page where "targetRef" is the first item. If target is not found with the given filter, "offset" is not overwritten. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
groups | ArrayOfGroup | Yes | Yes | List of groups. |
offset | unsignedInt | No | No | Offset of page returned when "targetRef" is specified and found. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetHistory
Gets event history.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
eventType | EventType | No | No | The type of event to retrieve. If not specified, entries for all event types are retrieved. |
objType | ObjectType | No | No | The type of object to retrieve. If not specified, entries for all object types are retrieved. |
objRef | ObjRef | No | No | If specified, only history entries for the specified object will be retrieved. |
username | string | No | Yes | The login name of the user for which to retrieve history entries. If not specified, entries for all users are retrieved. |
startDate | DateTime | No | Yes | Date of the first entry to retrieve. |
endDate | DateTime | No | Yes | Date of the last entry to retrieve. |
filter | string | No | Yes | Criteria for filtering the returned items. |
limit | unsignedInt | No | No | The number of items to return. Defaults to 100,000. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
events | ArrayOfEvent | Yes | Yes | List of events. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetIPAMRecord
Gets IPAM record for the specified IP address.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
addrRef | ObjRef | Yes | No | An object reference for the IPAM record. |
requireRangeRef | ObjRef | No | No | Reference to a range in which the relevant IP address must reside, otherwise the GetIPAMRecord call will fail. |
excludeDHCP | boolean | No | No | Deprecated, will be removed in future versions. |
Response
Name | Type | Required | Nillable | Description |
---|
ipamRecord | IPAMRecord | Yes | No | The IPAM record object. |
GetIPAMRecords
Gets IPAM records from a specific range or for specific IPAM records.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | No | No | A reference to the range containing the addresses. Specified when getting IPAM records from a specific range. |
addrRefs | ArrayOfObjRef | No | No | An array of references to the IPAM records to retrieve. Specified when getting specific IPAM records. |
includeRelatedDNSRecords | boolean | No | No | Set to true if IPAM record should include DNS records related to any DNS hosts returned. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
excludeDHCP | boolean | No | No | Deprecated, will be removed in future versions. |
Response
Name | Type | Required | Nillable | Description |
---|
ipamRecords | ArrayOfIPAMRecord | Yes | Yes | List of IPAM records. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetInheritAccess
Gets inherit access flag for the specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | A reference to the range. |
Response
Name | Type | Required | Nillable | Description |
---|
inheritAccess | boolean | Yes | No | Inherit access flag. |
GetInheritedDHCPOptions
Gets inherited DHCP options for the specified object (which must reference a DHCP server, a DHCP group, a DHCP scope, a DHCP address pool, or a DHCP reservation).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A reference to the object for which to get inherited DHCP options. |
objType | ObjectType | No | No | The type of the object for which to get inherited DHCP options. |
policyName | string | No | Yes | Name of a DHCP server or scope policy to get inherited options for. Only supported on Microsoft servers version 2012 and higher. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. Only applies to DHCP server and superscope. |
Response
GetInterface
Gets specified interface.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
interfaceRef | ObjRef | Yes | No | The object reference for the interface. |
Response
Name | Type | Required | Nillable | Description |
---|
interface | Interface | Yes | No | The interface object. |
GetInterfaces
Gets interfaces.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
deviceRef | ObjRef | No | No | A reference to the device containing the interfaces. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
interfaces | ArrayOfInterface | Yes | Yes | List of interfaces. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetNextFreeAddress
Gets next free address from the specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | A reference to the address range from which to return the free address. |
startAddress | IPAddress | No | No | The starting address to use when looking for the next free address. |
ping | boolean | No | No | If true the system will ping the address found before returning. If the address responds to a ping request, it is considered to be in use. |
random | boolean | No | No | Return a random address (larger than startAddress) instead of the first available address. Defaults to false. |
excludeDHCP | boolean | No | No | Set to true to exclude DHCP data from result. |
temporaryClaimTime | unsignedInt | No | No | If set, claims the next free address for the given time in seconds. |
Response
Name | Type | Required | Nillable | Description |
---|
address | IPAddress | No | No | The next free IP address in the address range. |
GetNextFreeReservationAddress
Gets next free reservable address from the specified scope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objRef | ObjRef | Yes | No | A reference to the scope from which to return the free address. |
startAddress | IPAddress | No | No | The starting address to use when looking for the next free address. |
considerExclusionRange | boolean | No | No | Determines whether to look for a free address in an excluded range inside the scope. |
random | boolean | No | No | Return a random address (larger than startAddress) instead of the first available address. Defaults to false. |
temporaryClaimTime | unsignedInt | No | No | If set, claims the next free address for the given time in seconds. |
Response
Name | Type | Required | Nillable | Description |
---|
address | IPAddress | No | No | The next reservable IP address in the scope. |
GetObjectAccess
Gets access set for the specified object.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A reference to the object. |
objType | ObjectType | No | No | The type of the object. |
identityRef | ObjRef | No | No | Object reference for a user or group. If specified, the command only retrieves access for the specified user or group. |
excludeBuiltinIdentities | boolean | No | No | Set to true to exclude access for builtin users and groups. |
Response
Name | Type | Required | Nillable | Description |
---|
objectAccess | ObjectAccess | Yes | No | Object access information. |
GetObjects
Gets specified objects.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objRefs | ArrayOfObjRef | Yes | No | Array of object references. |
objType | ObjectType | No | No | The type of the object. |
Response
Name | Type | Required | Nillable | Description |
---|
objects | ArrayOfObject | Yes | Yes | List of objects. |
GetObjectsInFolder
Gets all objects in the folder specified.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
folderRef | ObjRef | Yes | No | Reference to the folder. |
Response
Name | Type | Required | Nillable | Description |
---|
objects | ArrayOfObject | Yes | Yes | List of all the objects in the specified folder. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetOrphanReverseDNSRecords
Gets orphan reverse DNS records (i.e. PTR records whose corresponding A/AAAA record is missing).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
limit | unsignedInt | No | No | The number of records to return. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecords | ArrayOfDNSRecord | Yes | Yes | An array of PTR records having no corresponding A/AAAA record. |
totalResults | unsignedInt | No | No | Total number of records in the result set. |
GetProperties
Gets properties for the specified object.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | Reference to the object for which to get the properties. |
objType | ObjectType | No | No | The type of the object. |
onlyCustom | boolean | No | No | Set to true if only the custom properties for the object should be returned. Default value is false. |
Response
Name | Type | Required | Nillable | Description |
---|
properties | ArrayOfProperty | Yes | Yes | List of properties for the object. |
GetPropertyDefinition
Gets the definition for a specified property of the given object type.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objType | ObjectType | Yes | No | The type of the object. |
property | string | Yes | No | The name of the property. |
Response
Name | Type | Required | Nillable | Description |
---|
propertyDefinition | PropertyDefinition | No | No | A property definition. |
GetPropertyDefinitions
Gets all the property definitions for the specified object type.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objType | ObjectType | Yes | No | The type of the object. |
Response
Name | Type | Required | Nillable | Description |
---|
propertyDefinitions | ArrayOfPropertyDefinition | Yes | Yes | List of property definitions for the object. |
GetRange
Gets specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | An object reference for the IP range. |
Response
Name | Type | Required | Nillable | Description |
---|
range | Range | Yes | No | The range object. |
GetRangeByIPAddress
Gets range containing specified IP address.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
addrRef | ObjRef | Yes | No | A reference to the IP address. |
Response
Name | Type | Required | Nillable | Description |
---|
range | Range | Yes | No | The range containing the specified IP address. |
GetRangeDiscovery
Gets discovery (ping) schedule for specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | An object reference for the IP range. |
Response
Name | Type | Required | Nillable | Description |
---|
discovery | Discovery | No | No | The discovery (ping) schedule of the address range. |
GetRangeStatistics
Gets range statistics.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | A reference to the range. |
Response
Name | Type | Required | Nillable | Description |
---|
used | string | No | No | Number of used addresses in the address range. |
free | string | No | No | Number of free addresses in the address range. |
numInSubranges | string | No | No | Number of addresses in range allocated to subranges. |
percentInSubranges | string | Yes | No | Percent of range allocated to subranges. |
GetRanges
Gets ranges.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
folderRef | ObjRef | No | No | Reference to a folder from which to get ranges. |
adSiteRef | ObjRef | No | No | Reference to an AD Site from which to get ranges. |
cloudNetworkRef | ObjRef | No | No | Reference to a cloud network from which to get ranges. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
targetRef | ObjRef | No | Yes | Overrides "offset" and returns a page where "targetRef" is the first item. If target is not found with the given filter, "offset" is not overwritten. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
ranges | ArrayOfRange | Yes | Yes | List of ranges. |
offset | unsignedInt | No | No | Offset of page returned when "targetRef" is specified and found. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetRangesWithStatistics
Gets ranges, along with their statistics.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
calculateUtilization | boolean | Yes | No | Determines whether to calculate the number of used and free addresses in the ranges. |
filter | string | No | Yes | Criteria for filtering the returned items. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
rangesWithStatistics | ArrayOfRangeWithStatistics | Yes | Yes | List of ranges with information about used and free addresses. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
Gets DNS records related to the specified DNS record (which must be either an A or AAAA record).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordRef | ObjRef | Yes | No | An object reference for the DNS address record for which to find associated records. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecords | ArrayOfDNSRecord | Yes | Yes | An array of records associated with the address record. |
GetRole
Gets a role object based on the object reference.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
roleRef | ObjRef | Yes | No | An object reference for the role. |
Response
Name | Type | Required | Nillable | Description |
---|
role | Role | Yes | No | The role object. |
GetRoles
Gets a list of roles.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
userRef | ObjRef | No | No | Reference to a user from which to get roles. |
groupRef | ObjRef | No | No | Reference to a group from which to get roles. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
targetRef | ObjRef | No | Yes | Overrides "offset" and returns a page where "targetRef" is the first item. If target is not found with the given filter, "offset" is not overwritten. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
roles | ArrayOfRole | Yes | Yes | List of roles. |
offset | unsignedInt | No | No | Offset of page returned when "targetRef" is specified and found. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
GetServiceStatus
Get the status of provided service.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
serverRef | ObjRef | Yes | No | An object reference for the server. |
Response
Name | Type | Required | Nillable | Description |
---|
serviceStatus | ServiceStatus | Yes | No | The service status. |
GetSubranges
Gets subranges of the specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
parentRef | ObjRef | No | No | A reference to the range that contains the subranges. |
depth | unsignedInt | No | No | Specifies how many levels of subranges should be retrieved. |
Response
Name | Type | Required | Nillable | Description |
---|
ranges | ArrayOfRange | Yes | Yes | List of subranges. |
GetSystemSettings
Gets system settings.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
Response
GetUser
Gets specified user.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
userRef | ObjRef | Yes | No | An object reference for the user. Use "." to get the current user. |
Response
Name | Type | Required | Nillable | Description |
---|
user | User | Yes | No | The user object. |
GetUsers
Gets users.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
filter | string | No | Yes | Criteria for filtering the returned items. |
groupRef | ObjRef | No | No | Reference to a group from which to get users. |
roleRef | ObjRef | No | No | Reference to a role that the user should have. |
targetRef | ObjRef | No | Yes | Overrides "offset" and returns a page where "targetRef" is the first item. If target is not found with the given filter, "offset" is not overwritten. |
offset | unsignedInt | No | No | Offset specification for listing records. A value of 0 starts with the first item. |
limit | unsignedInt | No | No | The number of items to return. |
sortBy | string | No | No | The field name to sort by. |
sortOrder | SortOrder | No | No | The sort order to use. |
Response
Name | Type | Required | Nillable | Description |
---|
users | ArrayOfUser | Yes | Yes | Array of users. |
offset | unsignedInt | No | No | Offset of page returned when "targetRef" is specified and found. |
totalResults | unsignedInt | Yes | No | Total number of items in the result set. |
HasAccess
Checks whether the currently logged in user has the specified access for the specified objects.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
accessName | string | Yes | No | The name of the access entry for which to check. |
objRefs | ArrayOfObjRef | Yes | No | References to the objects for which to check the access. |
objType | ObjectType | No | No | The type of the objects for which to check for access. |
Response
Name | Type | Required | Nillable | Description |
---|
hasAccessEntries | ArrayOfHasAccessEntry | Yes | No | Entries specifying whether the user has access to each object. |
InitializeServer
Initialize server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
serverRef | ObjRef | Yes | No | An object reference for the DNS server or appliance. |
restoreFromBackup | boolean | No | No | Restore server from backup. Defaults to true. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
JoinRanges
Joins the specified address ranges together into a new address range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ranges | ArrayOfObjRef | Yes | No | References to the address ranges to join. |
copyAccessFromRef | ObjRef | No | No | A reference to the address range containing the access information that should be used for the new address range. |
subnet | boolean | No | No | Determines if the new address range should be defined as a subnet. |
locked | boolean | No | No | Determines if the new address range should be set as locked. |
autoAssign | boolean | No | No | Determines if it should be possible to automatically assign IP addresses from the new address range. |
inheritAccess | boolean | No | No | Determines if the new address range should inherit access from its parent range. |
customProperties | ArrayOfProperty | No | No | The custom properties for the new address range. |
discovery | Discovery | No | No | The discovery (ping) schedule that should be set for the new address range. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ref | ObjRef | Yes | No | Reference to the resulting address range. |
Login
Logs into Micetro and returns a session token.
Arguments
Name | Type | Required | Nillable | Description |
---|
server | ASCII | No | Yes | Hostname or IP address of a specific Micetro Central server to log in to. Ignored unless Micetro Web Services API endpoint allows connections to custom Central servers. |
loginName | string | Yes | No | Login name of user. |
password | string | Yes | No | User password. |
replaceControlCharacters | boolean | No | No | Determines if invalid control characters in user data should be replaced by a question mark. |
unauthorizedAsForbidden | boolean | No | No | If true, the web service should respond with HTTP status code 'forbidden' instead of 'authorization required'. Not applicable to SOAP/XML since SOAP/XML don't expect different HTTP status codes. |
Response
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID for this login. |
Logout
Logs out of Micetro.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
MigrateDNSZone
Migrates a DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | An object reference for the DNS zone. |
dnsServerRef | ObjRef | Yes | No | An object reference for the destination DNS server. |
dnsViewRef | ObjRef | No | Yes | An object reference for a view on the destination DNS server. |
removeSourceZone | boolean | No | Yes | Specifies whether the source zone should be removed when migrating. If not set the original zone is left untouched on the source server |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ModifyDHCPFailoverRelationship
Modifies the specified DHCP failover relationship on the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpFailoverRelationship | DHCPFailoverRelationship | Yes | No | The DHCP failover relationship to modify. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ModifyDHCPOptionDefinition
Modifies the specified DHCP option definition on the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | The DHCP server on which the option definition should be modified. |
dhcpOptionDefinition | DHCPOptionDefinition | Yes | No | The DHCP option definition to modify. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ModifyDHCPPolicy
Modifies the specified DHCP policy on the specified owner (which must reference a DHCP server or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the DHCP server/scope containing the DHCP policies. |
objType | ObjectType | No | No | The object type of the owner (i.e. either DHCP server or DHCP scope). |
dhcpPolicyName | string | Yes | No | The DHCP policy to modify. |
dhcpPolicy | DHCPPolicy | Yes | No | The DHCP policy. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ModifyPropertyDefinition
Modifies a custom property definition.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objType | ObjectType | Yes | No | The object type to which the custom property definition is associated. |
property | string | Yes | No | The name of the custom property definition. |
propertyDefinition | PropertyDefinition | Yes | No | The modified custom property definition. |
updateExisting | boolean | No | No | Deprecated. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
cloudTags | ArrayOfCloudTag | No | Yes | Cloud tags associated with the property. |
MoveIPAMRecord
Moves an IPAM record from one IP address to another.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
fromRef | ObjRef | Yes | No | Reference to the IP address from which the IPAM record should be moved. |
toRef | ObjRef | Yes | No | Reference to the IP address to which the IPAM record should be moved. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
force | boolean | No | Yes | If set to true, will ignore and overwrite existing custom property values on destination IP address. |
Response
Name | Type | Required | Nillable | Description |
---|
errors | ArrayOfError | Yes | Yes | Error messages. One error message is generated for each part of the IPAM record that could not be successfully moved. |
MoveToAddressSpace
Moves the specified objects to the specified address space.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objRefs | ArrayOfObjRef | Yes | No | References to the objects that should be moved. |
objType | ObjectType | No | No | The type of the objects that should be moved. |
addressSpaceRef | ObjRef | No | No | Reference to the address space to which the objects should be moved. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
force | boolean | No | No | A flag to decide if the move should proceed or not when there are warnings on conflicting ranges or addresses in the target address space. |
Response
Name | Type | Required | Nillable | Description |
---|
errors | ArrayOfObjectError | Yes | Yes | Error messages. One error message is generated for each object that could not be successfully moved. |
Ping
Sends an ICMP ping request to the specified address.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
addrRef | ObjRef | Yes | No | Reference to the IP address to ping. |
Response
Name | Type | Required | Nillable | Description |
---|
alive | boolean | Yes | No | Determines whether the host responded to the ping request. |
pingTime | unsignedInt | Yes | No | The response time in milliseconds. |
lastSeenDate | string | Yes | Yes | A timestamp indicating the last time seen. |
PlaceInADSite
Places the specified address ranges in the specified AD site.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adSiteRef | ObjRef | Yes | No | Reference to the AD site in which the address ranges should be placed. |
rangeRefs | ArrayOfObjRef | Yes | No | References to the address ranges that should be placed in the AD site. |
location | string | No | Yes | Location property to be set for AD subnet. |
description | string | No | Yes | Description property to be set for AD subnet. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
PlaceInCloudNetwork
Places the specified subnets in the specified cloud network.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
cloudNetworkRef | ObjRef | Yes | No | Reference to the cloud network in which the subnets should be placed. |
cloudSubnets | ArrayOfCloudSubnet | Yes | No | The subnets that should be placed in the cloud network. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
PlaceInFolder
Places the specified objects in the specified folder.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
folderRef | ObjRef | Yes | No | Reference to the folder in which the objects should be placed. |
objRefs | ArrayOfObjRef | Yes | No | References to the objects that should be placed in the folder. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Promotes a DNS slave zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | An object reference for the DNS slave zone. |
unchangedPrimaryMaster | boolean | No | No | Specifies whether primary master field should be left unchanged. |
masterZoneRef | ObjRef | No | Yes | Optional object of the master zone linked to the slave zone, can be used to save time in lookups or resolve name conflicts |
useSlaveZoneRecords | boolean | No | Yes | Specifies whether to use the records from the slave server in the promotion instead of fetching them from the master server. |
copyAccess | boolean | No | No | If a masterZoneRef is given then this parameter specifies whether access should be copied from that zone to the promoted one |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ReconcileDHCPScope
Performs reconcile action on a specific scope or on all scopes on a specific server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | Reference to the DHCP scope on which to perform the reconcile action or reference to the DHCP server on which to perform the reconcile action for each of the server's scopes. |
objType | ObjectType | No | No | The type of the object on which the reconcile action should be performed. Must be either DHCPServer or DHCPScope. |
fix | boolean | No | No | Set to true in order to instruct the relevant DHCP server to try and fix any entries that require reconciling. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
ReconnectServer
Reconnect to previously unreachable servers.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
serverRef | ObjRef | Yes | No | An object reference to a DNS or a DHCP server. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
success | boolean | Yes | No | Indicates whether reconnecting to the server was successful. |
RejectChanges
Reject change(s).
Arguments
RejectDNSRecordChanges
Rejects DNS record change(s).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordChangeRequestRef | ObjRef | Yes | No | An object reference for the DNS record change request. |
dnsRecordChanges | ArrayOfDNSRecordChange | Yes | No | The requested DNS record change(s). |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ReleaseDHCPLease
Releases the specified DHCP lease.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpScopeRef | ObjRef | Yes | No | Reference to the DHCP scope from which the lease should be released. |
lease | IPAddress | Yes | No | IP address of the lease. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ReleaseDHCPLeases
Releases the specified DHCP leases.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpLeaseRef | ArrayOfDHCPLeaseReference | Yes | No | The DHCP leases to be released. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveDHCPFailoverRelationships
Remove a DHCP failover relationship.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpRefAndFailoverRelationshipNames | ArrayOfDHCPRefAndFailoverRelationshipName | Yes | No | An array of DHCP failover relationships to remove. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveDHCPOptionDefinition
Removes the specified DHCP option definition from the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | The DHCP server from which the option definition should be removed. |
dhcpOptionDefinition | DHCPOptionDefinition | Yes | No | The DHCP option definition to remove. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveDHCPPolicy
Remove a DHCP policy from the specified owner (which must reference a DHCP server or a DHCP scope).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the DHCP server/scope containing the DHCP policy. |
objType | ObjectType | No | No | The object type of the owner (i.e. either DHCP server or DHCP scope). |
dhcpPolicyName | string | Yes | No | The DHCP policy to remove. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveDHCPScopesFromDHCPFailoverRelationship
Remove DHCP scope(s) from a DHCP failover relationship.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
dhcpFailoverRelationshipName | string | Yes | No | The DHCP failover relationship. |
dhcpScopeRefs | ArrayOfObjRef | Yes | No | References to DHCP scopes that should be removed from the DHCP failover relationship. |
dhcpFailoverRelationshipDeconfigureAction | DHCPFailoverDeconfigureAction | No | Yes | Optionally disable or delete DHCP scopes on partner server. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveFromADSite
Removes the specified address ranges from the specified AD site.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
adSiteRef | ObjRef | Yes | No | Reference to the AD site from which the address ranges should be removed. |
rangeRefs | ArrayOfObjRef | Yes | No | References to the address ranges that should be removed from the AD site. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveFromCloudNetwork
Removes the specified address ranges from their respective cloud networks.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRefs | ArrayOfObjRef | Yes | No | References to the address ranges that should be removed from cloud networks. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveFromFolder
Removes the specified objects from the folder they are in.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
folderRef | ObjRef | No | Yes | Reference to the folder from which the objects should be removed. |
objRefs | ArrayOfObjRef | Yes | No | References to the objects that should be removed from the folder they are in. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveObject
Removes the specified object.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | Reference to the object that should be removed. |
objType | ObjectType | No | No | The type of the object that should be removed. |
forceRemoval | boolean | No | No | If possible, then force removal of object. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveObjects
Removes the specified objects.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objRefs | ArrayOfObjRef | Yes | No | References for the objects that should be removed. |
objType | ObjectType | No | No | The type of the objects that should be removed. |
forceRemoval | boolean | No | No | If possible, then force removal of object. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
errors | ArrayOfObjectError | Yes | Yes | Error messages. One error message is generated for each object that could not be successfully removed. |
RemovePropertyDefinition
Removes the specified custom property definition.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
objType | ObjectType | Yes | No | The object type to which the custom property definition is associated. |
property | string | Yes | No | The name of the custom property definition. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveRoleFromGroup
Removes a role from a group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
roleRef | ObjRef | Yes | No | A reference to the role to remove. |
groupRef | ObjRef | Yes | No | A reference to the group from which the role should be removed. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveRoleFromUser
Removes a role from a user.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
roleRef | ObjRef | Yes | No | A reference to the role to remove. |
userRef | ObjRef | Yes | No | A reference to the user from which the role should be removed.. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
RemoveUserFromGroup
Removes a user from a group.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
userRef | ObjRef | Yes | No | A reference to the user to remove. |
groupRef | ObjRef | Yes | No | A reference to the group from which the user should be removed. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ReplicateDHCPFailover
Replicate DHCP failover, either for each DHCP failover relationship on the DHCP server, for a specific DHCP failover relationship or for a specific DHCP scope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | An object reference for the DHCP server. |
dhcpFailoverRelationshipName | string | No | No | DHCP failover relationship. |
dhcpScopeRef | ObjRef | No | No | An object reference for a DHCP scope. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
ReportDHCPScopeOptions
Reports on DHCP scopes that either have or do not have the specified value or have no value set for the specified DHCP option.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
reportType | DHCPScopeOptionsReportType | Yes | No | Specifies the report type to return. |
option | unsignedInt | Yes | No | The option to query for. |
vendorClass | string | No | No | The vendor class to use. |
userClass | string | No | No | The user class to use. |
value | string | No | No | The value to query for. |
filter | string | No | Yes | Criteria for filtering the returned items. |
Response
RunCommand
Runs a script and returns the output.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
name | string | Yes | No | The script to run. |
parameters | string | No | Yes | Deprecated. |
returnErrorInResponse | boolean | No | No | Should errors be returned in repsonse or reported. Defaults to false. |
Response
Name | Type | Required | Nillable | Description |
---|
output | string | No | Yes | The output of the command. |
exitCode | string | No | Yes | The exit code of the command. |
SendMail
Sends an email message through an SMTP mail server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
smtpServer | string | Yes | No | The name of the SMTP mail server. |
from | string | Yes | No | The sender's email address. |
to | string | Yes | No | Comma separated list of recipient email addresses. |
cc | string | No | No | Comma separated list of email addresses for cc recipients. |
bcc | string | No | No | Comma separated list of email addresses for bcc recipients. |
subject | string | No | No | The subject of the email message. |
body | string | Yes | No | The body of the email message. |
SetConfigFiles
Modifies/creates a configuration file.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | A unique reference ID for the object to set configuration files for. Can refer to a DHCP server, DNS server or DNS zone |
configFiles | ArrayOfConfigFile | Yes | No | An array of configuration files. |
saveComment | string | No | Yes | Save comment. |
SetCurrentAddressSpace
Switches over to the specified address space.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
addressSpaceRef | ObjRef | Yes | No | Reference to the address space to which should be switched. |
SetDHCPAddressPoolPermitList
Sets DHCP address pool permit list for the specified DHCP address pool.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpAddressPoolRef | ObjRef | Yes | No | Reference to the DHCP address pool for which to set the address pool permit list. |
dhcpAddressPoolPermits | ArrayOfDHCPAddressPoolPermit | Yes | Yes | The DHCP address pool permit list to set. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetDHCPOptions
Sets DHCP options for the specified object (which must reference a DHCP server, a DHCP group, a DHCP scope, a DHCP address pool, or a DHCP reservation).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | Yes | No | Reference to the object for which to set the DHCP options. |
objType | ObjectType | No | No | The type of the object for which to set the DHCP options. |
ticket | unsignedInt | No | Yes | Ticket used for concurrency. Returned by GetDHCPOptions command and, if there have been changes made to DHCP options for the object since the ticket was returned, the SetDHCPOptions call will fail. |
dhcpOptions | ArrayOfDHCPOption | Yes | Yes | The DHCP options to set. |
dhcpPolicyName | string | No | Yes | Name of MS DHCP policy if applicable. |
serviceType | DHCPServiceType | No | No | DHCPv4 or DHCPv6, defaults to DHCPv4. Only applies to DHCP server and DHCP superscope. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetDHCPPolicyEnforcement
Sets the DHCP policy enforcement for the specified DHCP server or DHCP scope.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ownerRef | ObjRef | Yes | No | A reference to the DHCP server/scope for which the DHCP policy enforcement is set. |
objType | ObjectType | No | No | The object type of the owner (i.e. either DHCP server or DHCP scope). |
enforce | boolean | Yes | No | Specifies whether DHCP policies should be enforced. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetDHCPSubclasses
Sets DHCP subclasses for the specified DHCP class on the specified DHCP server.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dhcpServerRef | ObjRef | Yes | No | Reference to the DHCP server on which the DHCP subclasses should be set. |
dhcpClassName | string | Yes | No | The name of the DHCP class for which the DHCP subclasses should be set. |
dhcpSubclasses | ArrayOfString | Yes | Yes | The DHCP subclasses to set. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetDNSRecordAging
Sets aging on or off for the specified record.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsRecordRef | ObjRef | Yes | No | An object reference for the DNS record. |
aging | boolean | Yes | No | If true, then aging will be enabled for the record else it will be disabled. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
dnsRecord | DNSRecord | Yes | No | The changed DNS record object. |
SetDNSZoneOptions
Updates zone options for the specified DNS zone.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
dnsZoneRef | ObjRef | Yes | No | An object reference for the DNS zone. |
dnsZoneOptions | DNSZoneOptions | Yes | No | The DNS zone options. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetIPAMRecord
Sets an IPAM record (i.e. apply changes to DNS, DHCP and/or IPAM for a specific IP address with one call).
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ipamRecordBefore | IPAMRecord | Yes | No | The IPAM record as it was before calling SetIPAMRecord. |
ipamRecordAfter | IPAMRecord | Yes | No | The IPAM record as it should be after calling SetIPAMRecord. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
forceOverrideOfNamingConflictCheck | boolean | No | No | Set to true to force creation of the records in the new IPAM record regardless of the naming conflict check (if enabled in system settings). |
Response
Name | Type | Required | Nillable | Description |
---|
errors | ArrayOfError | Yes | Yes | Error messages. One error message is generated for each change that could not be successfully applied. |
SetInheritAccess
Sets inheritAccess property for a range and/or its subranges.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | The range. |
inheritAccess | boolean | No | No | Set inheritAccess flag on or off for the range. |
inheritChildAccess | boolean | No | No | Set inheritAccess flag on or off for subranges of the range. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
errors | ArrayOfError | Yes | Yes | Error messages. |
SetObjectAccess
Sets access for the specified objects.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
identityAccess | ArrayOfIdentityAccess | No | Yes | The access to set for the objects. |
addRoles | ArrayOfObjRef | No | Yes | Roles to add to the access of the objects. |
removeRoles | ArrayOfObjRef | No | Yes | Roles to remove from the access of the objects. |
objRefs | ArrayOfObjRef | Yes | No | References to the objects for which the access should be set. |
objType | ObjectType | No | No | The type of the objects for which the access should be set. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetPassword
Changes the password for the currently logged in user.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
oldPassword | string | Yes | No | The old password for the user. |
newPassword | string | Yes | No | The new password for the user. |
SetProperties
Sets properties for the specified object.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
ref | ObjRef | No | No | Reference to the object for which properties should be set. |
refs | ArrayOfObjRef | No | No | Array of references to the objects for which properties should be set. |
objType | ObjectType | No | No | The type of the object for which properties should be set. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
deleteUnspecified | boolean | No | No | Set to true if properties that are not explicitly set should be cleared. Default value is false. |
properties | ArrayOfProperty | Yes | No | The properties and property values that should be set for the object. |
SetRangeDiscovery
Sets a discovery (ping) schedule for specified range.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | An object reference for the IP range. |
discovery | Discovery | Yes | No | The new discovery (ping) schedule for the address range. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetServiceStatus
Set the status of provided service.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
serverRef | ObjRef | Yes | No | An object reference for the server. |
serviceStatus | ServiceStatus | Yes | No | The new service status. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SetSystemSettings
Sets system settings.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
systemSettings | ArrayOfSystemSetting | Yes | Yes | The system settings that should be set. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
SplitRange
Splits the specified address range into new subranges.
Arguments
Name | Type | Required | Nillable | Description |
---|
session | ASCII | Yes | No | Session ID from the Login command. |
rangeRef | ObjRef | Yes | No | Reference to the address range that should be split. |
cidr | unsignedInt | Yes | No | Determines the size of the resulting subranges, e.g. to split an address range into /24 subranges the value 24 would be used. |
subnet | boolean | No | No | Determines if the new subranges should be defined as subnets. |
locked | boolean | No | No | Determines if the new subranges should be set as locked. |
autoAssign | boolean | No | No | Determines if it should be possible to automatically assign IP addresses from the new subranges. |
customProperties | ArrayOfProperty | No | No | The custom properties for the new subranges. |
discovery | Discovery | No | No | The discovery (ping) schedule that should be set for the new subranges. |
saveComment | string | No | Yes | Save comment text to associate with the action. |
Response
Name | Type | Required | Nillable | Description |
---|
ranges | ArrayOfRange | Yes | No | The new subranges. |