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.trafficmanager; import com.fasterxml.jackson.annotation.JsonProperty;
Min and max value of a status code range.
/** * Min and max value of a status code range. */
public class MonitorConfigExpectedStatusCodeRangesItem {
Min status code.
/** * Min status code. */
@JsonProperty(value = "min") private Integer min;
Max status code.
/** * Max status code. */
@JsonProperty(value = "max") private Integer max;
Get min status code.
Returns:the min value
/** * Get min status code. * * @return the min value */
public Integer min() { return this.min; }
Set min status code.
Params:
  • min – the min value to set
Returns:the MonitorConfigExpectedStatusCodeRangesItem object itself.
/** * Set min status code. * * @param min the min value to set * @return the MonitorConfigExpectedStatusCodeRangesItem object itself. */
public MonitorConfigExpectedStatusCodeRangesItem withMin(Integer min) { this.min = min; return this; }
Get max status code.
Returns:the max value
/** * Get max status code. * * @return the max value */
public Integer max() { return this.max; }
Set max status code.
Params:
  • max – the max value to set
Returns:the MonitorConfigExpectedStatusCodeRangesItem object itself.
/** * Set max status code. * * @param max the max value to set * @return the MonitorConfigExpectedStatusCodeRangesItem object itself. */
public MonitorConfigExpectedStatusCodeRangesItem withMax(Integer max) { this.max = max; return this; } }