Class ConnectionMonitorDestination
- java.lang.Object
-
- com.microsoft.azure.management.network.ConnectionMonitorDestination
-
public class ConnectionMonitorDestination extends Object
Describes the destination of connection monitor.
-
-
Constructor Summary
Constructors Constructor Description ConnectionMonitorDestination()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringaddress()Get the address value.Integerport()Get the port value.StringresourceId()Get the resourceId value.ConnectionMonitorDestinationwithAddress(String address)Set the address value.ConnectionMonitorDestinationwithPort(Integer port)Set the port value.ConnectionMonitorDestinationwithResourceId(String resourceId)Set the resourceId value.
-
-
-
Method Detail
-
resourceId
public String resourceId()
Get the resourceId value.- Returns:
- the resourceId value
-
withResourceId
public ConnectionMonitorDestination withResourceId(String resourceId)
Set the resourceId value.- Parameters:
resourceId- the resourceId value to set- Returns:
- the ConnectionMonitorDestination object itself.
-
address
public String address()
Get the address value.- Returns:
- the address value
-
withAddress
public ConnectionMonitorDestination withAddress(String address)
Set the address value.- Parameters:
address- the address value to set- Returns:
- the ConnectionMonitorDestination object itself.
-
port
public Integer port()
Get the port value.- Returns:
- the port value
-
withPort
public ConnectionMonitorDestination withPort(Integer port)
Set the port value.- Parameters:
port- the port value to set- Returns:
- the ConnectionMonitorDestination object itself.
-
-