Class ConnectionMonitorParameters
- java.lang.Object
-
- com.microsoft.azure.management.network.ConnectionMonitorParameters
-
public class ConnectionMonitorParameters extends Object
Parameters that define the operation to create a connection monitor.
-
-
Constructor Summary
Constructors Constructor Description ConnectionMonitorParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanautoStart()Get the autoStart value.ConnectionMonitorDestinationdestination()Get the destination value.IntegermonitoringIntervalInSeconds()Get the monitoringIntervalInSeconds value.ConnectionMonitorSourcesource()Get the source value.ConnectionMonitorParameterswithAutoStart(Boolean autoStart)Set the autoStart value.ConnectionMonitorParameterswithDestination(ConnectionMonitorDestination destination)Set the destination value.ConnectionMonitorParameterswithMonitoringIntervalInSeconds(Integer monitoringIntervalInSeconds)Set the monitoringIntervalInSeconds value.ConnectionMonitorParameterswithSource(ConnectionMonitorSource source)Set the source value.
-
-
-
Method Detail
-
source
public ConnectionMonitorSource source()
Get the source value.- Returns:
- the source value
-
withSource
public ConnectionMonitorParameters withSource(ConnectionMonitorSource source)
Set the source value.- Parameters:
source- the source value to set- Returns:
- the ConnectionMonitorParameters object itself.
-
destination
public ConnectionMonitorDestination destination()
Get the destination value.- Returns:
- the destination value
-
withDestination
public ConnectionMonitorParameters withDestination(ConnectionMonitorDestination destination)
Set the destination value.- Parameters:
destination- the destination value to set- Returns:
- the ConnectionMonitorParameters object itself.
-
autoStart
public Boolean autoStart()
Get the autoStart value.- Returns:
- the autoStart value
-
withAutoStart
public ConnectionMonitorParameters withAutoStart(Boolean autoStart)
Set the autoStart value.- Parameters:
autoStart- the autoStart value to set- Returns:
- the ConnectionMonitorParameters object itself.
-
monitoringIntervalInSeconds
public Integer monitoringIntervalInSeconds()
Get the monitoringIntervalInSeconds value.- Returns:
- the monitoringIntervalInSeconds value
-
withMonitoringIntervalInSeconds
public ConnectionMonitorParameters withMonitoringIntervalInSeconds(Integer monitoringIntervalInSeconds)
Set the monitoringIntervalInSeconds value.- Parameters:
monitoringIntervalInSeconds- the monitoringIntervalInSeconds value to set- Returns:
- the ConnectionMonitorParameters object itself.
-
-