Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.network; import com.fasterxml.jackson.annotation.JsonProperty;
Describes the destination of connection monitor.
/** * Describes the destination of connection monitor. */
public class ConnectionMonitorDestination {
The ID of the resource used as the destination by connection monitor.
/** * The ID of the resource used as the destination by connection monitor. */
@JsonProperty(value = "resourceId") private String resourceId;
Address of the connection monitor destination (IP or domain name).
/** * Address of the connection monitor destination (IP or domain name). */
@JsonProperty(value = "address") private String address;
The destination port used by connection monitor.
/** * The destination port used by connection monitor. */
@JsonProperty(value = "port") private Integer port;
Get the ID of the resource used as the destination by connection monitor.
Returns:the resourceId value
/** * Get the ID of the resource used as the destination by connection monitor. * * @return the resourceId value */
public String resourceId() { return this.resourceId; }
Set the ID of the resource used as the destination by connection monitor.
Params:
  • resourceId – the resourceId value to set
Returns:the ConnectionMonitorDestination object itself.
/** * Set the ID of the resource used as the destination by connection monitor. * * @param resourceId the resourceId value to set * @return the ConnectionMonitorDestination object itself. */
public ConnectionMonitorDestination withResourceId(String resourceId) { this.resourceId = resourceId; return this; }
Get address of the connection monitor destination (IP or domain name).
Returns:the address value
/** * Get address of the connection monitor destination (IP or domain name). * * @return the address value */
public String address() { return this.address; }
Set address of the connection monitor destination (IP or domain name).
Params:
  • address – the address value to set
Returns:the ConnectionMonitorDestination object itself.
/** * Set address of the connection monitor destination (IP or domain name). * * @param address the address value to set * @return the ConnectionMonitorDestination object itself. */
public ConnectionMonitorDestination withAddress(String address) { this.address = address; return this; }
Get the destination port used by connection monitor.
Returns:the port value
/** * Get the destination port used by connection monitor. * * @return the port value */
public Integer port() { return this.port; }
Set the destination port used by connection monitor.
Params:
  • port – the port value to set
Returns:the ConnectionMonitorDestination object itself.
/** * Set the destination port used by connection monitor. * * @param port the port value to set * @return the ConnectionMonitorDestination object itself. */
public ConnectionMonitorDestination withPort(Integer port) { this.port = port; return this; } }