Interface Monitor.Service
-
- All Superinterfaces:
Maskable,ResultLimitable,Service
- Enclosing class:
- Monitor
@ApiService("SoftLayer_Network_Monitor") public static interface Monitor.Service extends Service
- See Also:
- SoftLayer_Network_Monitor
-
-
Method Summary
Modifier and Type Method Description Monitor.ServiceAsyncasAsync()Get an async version of this serviceList<IpAddress>getIpAddressesByHardware(Hardware hardware, String partialIpAddress)This will return an arrayObject of objects containing the ipaddresses.List<IpAddress>getIpAddressesByVirtualGuest(Guest guest, String partialIpAddress)This will return an arrayObject of objects containing the ipaddresses.voidsetMask(Monitor.Mask mask)Monitor.MaskwithMask()Use the existing mask on this service or create it if not presentMonitor.MaskwithNewMask()Overwrite the existing mask on this service with a new one and return it-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
asAsync
Monitor.ServiceAsync asAsync()
Description copied from interface:ServiceGet an async version of this service
-
withNewMask
Monitor.Mask withNewMask()
Description copied from interface:MaskableOverwrite the existing mask on this service with a new one and return it- Specified by:
withNewMaskin interfaceMaskable
-
withMask
Monitor.Mask withMask()
Description copied from interface:MaskableUse the existing mask on this service or create it if not present
-
setMask
void setMask(Monitor.Mask mask)
-
getIpAddressesByHardware
@ApiMethod List<IpAddress> getIpAddressesByHardware(Hardware hardware, String partialIpAddress)
This will return an arrayObject of objects containing the ipaddresses. Using an string parameter you can send a partial ipaddress to search within a given ipaddress. You can also set the max limit as well using the setting the resultLimit.
-
getIpAddressesByVirtualGuest
@ApiMethod List<IpAddress> getIpAddressesByVirtualGuest(Guest guest, String partialIpAddress)
This will return an arrayObject of objects containing the ipaddresses. Using an string parameter you can send a partial ipaddress to search within a given ipaddress. You can also set the max limit as well using the setting the resultLimit.
-
-