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.implementation; import java.util.List; import com.microsoft.azure.SubResource; import com.microsoft.azure.management.network.ProbeProtocol; import com.microsoft.azure.management.network.ProvisioningState; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten;
A load balancer probe.
/** * A load balancer probe. */
@JsonFlatten public class ProbeInner extends SubResource {
The load balancer rules that use this probe.
/** * The load balancer rules that use this probe. */
@JsonProperty(value = "properties.loadBalancingRules", access = JsonProperty.Access.WRITE_ONLY) private List<SubResource> loadBalancingRules;
The protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI is required for the probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'.
/** * The protocol of the end point. If 'Tcp' is specified, a received ACK is * required for the probe to be successful. If 'Http' or 'Https' is * specified, a 200 OK response from the specifies URI is required for the * probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'. */
@JsonProperty(value = "properties.protocol", required = true) private ProbeProtocol protocol;
The port for communicating the probe. Possible values range from 1 to 65535, inclusive.
/** * The port for communicating the probe. Possible values range from 1 to * 65535, inclusive. */
@JsonProperty(value = "properties.port", required = true) private int port;
The interval, in seconds, for how frequently to probe the endpoint for health status. Typically, the interval is slightly less than half the allocated timeout period (in seconds) which allows two full probes before taking the instance out of rotation. The default value is 15, the minimum value is 5.
/** * The interval, in seconds, for how frequently to probe the endpoint for * health status. Typically, the interval is slightly less than half the * allocated timeout period (in seconds) which allows two full probes * before taking the instance out of rotation. The default value is 15, the * minimum value is 5. */
@JsonProperty(value = "properties.intervalInSeconds") private Integer intervalInSeconds;
The number of probes where if no response, will result in stopping further traffic from being delivered to the endpoint. This values allows endpoints to be taken out of rotation faster or slower than the typical times used in Azure.
/** * The number of probes where if no response, will result in stopping * further traffic from being delivered to the endpoint. This values allows * endpoints to be taken out of rotation faster or slower than the typical * times used in Azure. */
@JsonProperty(value = "properties.numberOfProbes") private Integer numberOfProbes;
The URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.
/** * The URI used for requesting health status from the VM. Path is required * if a protocol is set to http. Otherwise, it is not allowed. There is no * default value. */
@JsonProperty(value = "properties.requestPath") private String requestPath;
The provisioning state of the probe resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
/** * The provisioning state of the probe resource. Possible values include: * 'Succeeded', 'Updating', 'Deleting', 'Failed'. */
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY) private ProvisioningState provisioningState;
The name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.
/** * The name of the resource that is unique within the set of probes used by * the load balancer. This name can be used to access the resource. */
@JsonProperty(value = "name") private String name;
A unique read-only string that changes whenever the resource is updated.
/** * A unique read-only string that changes whenever the resource is updated. */
@JsonProperty(value = "etag", access = JsonProperty.Access.WRITE_ONLY) private String etag;
Type of the resource.
/** * Type of the resource. */
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY) private String type;
Get the load balancer rules that use this probe.
Returns:the loadBalancingRules value
/** * Get the load balancer rules that use this probe. * * @return the loadBalancingRules value */
public List<SubResource> loadBalancingRules() { return this.loadBalancingRules; }
Get the protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI is required for the probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'.
Returns:the protocol value
/** * Get the protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI is required for the probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'. * * @return the protocol value */
public ProbeProtocol protocol() { return this.protocol; }
Set the protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI is required for the probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'.
Params:
  • protocol – the protocol value to set
Returns:the ProbeInner object itself.
/** * Set the protocol of the end point. If 'Tcp' is specified, a received ACK is required for the probe to be successful. If 'Http' or 'Https' is specified, a 200 OK response from the specifies URI is required for the probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'. * * @param protocol the protocol value to set * @return the ProbeInner object itself. */
public ProbeInner withProtocol(ProbeProtocol protocol) { this.protocol = protocol; return this; }
Get the port for communicating the probe. Possible values range from 1 to 65535, inclusive.
Returns:the port value
/** * Get the port for communicating the probe. Possible values range from 1 to 65535, inclusive. * * @return the port value */
public int port() { return this.port; }
Set the port for communicating the probe. Possible values range from 1 to 65535, inclusive.
Params:
  • port – the port value to set
Returns:the ProbeInner object itself.
/** * Set the port for communicating the probe. Possible values range from 1 to 65535, inclusive. * * @param port the port value to set * @return the ProbeInner object itself. */
public ProbeInner withPort(int port) { this.port = port; return this; }
Get the interval, in seconds, for how frequently to probe the endpoint for health status. Typically, the interval is slightly less than half the allocated timeout period (in seconds) which allows two full probes before taking the instance out of rotation. The default value is 15, the minimum value is 5.
Returns:the intervalInSeconds value
/** * Get the interval, in seconds, for how frequently to probe the endpoint for health status. Typically, the interval is slightly less than half the allocated timeout period (in seconds) which allows two full probes before taking the instance out of rotation. The default value is 15, the minimum value is 5. * * @return the intervalInSeconds value */
public Integer intervalInSeconds() { return this.intervalInSeconds; }
Set the interval, in seconds, for how frequently to probe the endpoint for health status. Typically, the interval is slightly less than half the allocated timeout period (in seconds) which allows two full probes before taking the instance out of rotation. The default value is 15, the minimum value is 5.
Params:
  • intervalInSeconds – the intervalInSeconds value to set
Returns:the ProbeInner object itself.
/** * Set the interval, in seconds, for how frequently to probe the endpoint for health status. Typically, the interval is slightly less than half the allocated timeout period (in seconds) which allows two full probes before taking the instance out of rotation. The default value is 15, the minimum value is 5. * * @param intervalInSeconds the intervalInSeconds value to set * @return the ProbeInner object itself. */
public ProbeInner withIntervalInSeconds(Integer intervalInSeconds) { this.intervalInSeconds = intervalInSeconds; return this; }
Get the number of probes where if no response, will result in stopping further traffic from being delivered to the endpoint. This values allows endpoints to be taken out of rotation faster or slower than the typical times used in Azure.
Returns:the numberOfProbes value
/** * Get the number of probes where if no response, will result in stopping further traffic from being delivered to the endpoint. This values allows endpoints to be taken out of rotation faster or slower than the typical times used in Azure. * * @return the numberOfProbes value */
public Integer numberOfProbes() { return this.numberOfProbes; }
Set the number of probes where if no response, will result in stopping further traffic from being delivered to the endpoint. This values allows endpoints to be taken out of rotation faster or slower than the typical times used in Azure.
Params:
  • numberOfProbes – the numberOfProbes value to set
Returns:the ProbeInner object itself.
/** * Set the number of probes where if no response, will result in stopping further traffic from being delivered to the endpoint. This values allows endpoints to be taken out of rotation faster or slower than the typical times used in Azure. * * @param numberOfProbes the numberOfProbes value to set * @return the ProbeInner object itself. */
public ProbeInner withNumberOfProbes(Integer numberOfProbes) { this.numberOfProbes = numberOfProbes; return this; }
Get the URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.
Returns:the requestPath value
/** * Get the URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value. * * @return the requestPath value */
public String requestPath() { return this.requestPath; }
Set the URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value.
Params:
  • requestPath – the requestPath value to set
Returns:the ProbeInner object itself.
/** * Set the URI used for requesting health status from the VM. Path is required if a protocol is set to http. Otherwise, it is not allowed. There is no default value. * * @param requestPath the requestPath value to set * @return the ProbeInner object itself. */
public ProbeInner withRequestPath(String requestPath) { this.requestPath = requestPath; return this; }
Get the provisioning state of the probe resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'.
Returns:the provisioningState value
/** * Get the provisioning state of the probe resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'. * * @return the provisioningState value */
public ProvisioningState provisioningState() { return this.provisioningState; }
Get the name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.
Returns:the name value
/** * Get the name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource. * * @return the name value */
public String name() { return this.name; }
Set the name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource.
Params:
  • name – the name value to set
Returns:the ProbeInner object itself.
/** * Set the name of the resource that is unique within the set of probes used by the load balancer. This name can be used to access the resource. * * @param name the name value to set * @return the ProbeInner object itself. */
public ProbeInner withName(String name) { this.name = name; return this; }
Get a unique read-only string that changes whenever the resource is updated.
Returns:the etag value
/** * Get a unique read-only string that changes whenever the resource is updated. * * @return the etag value */
public String etag() { return this.etag; }
Get type of the resource.
Returns:the type value
/** * Get type of the resource. * * @return the type value */
public String type() { return this.type; } }