com.microsoft.azure.management.trafficmanager.MonitorConfigExpectedStatusCodeRangesItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-trafficmanager Show documentation
Show all versions of azure-mgmt-trafficmanager Show documentation
This package contains Microsoft Azure Traffic Manager Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* 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.
*/
public class MonitorConfigExpectedStatusCodeRangesItem {
/**
* Min status code.
*/
@JsonProperty(value = "min")
private Integer min;
/**
* Max status code.
*/
@JsonProperty(value = "max")
private Integer max;
/**
* Get min status code.
*
* @return the min value
*/
public Integer min() {
return this.min;
}
/**
* 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.
*
* @return the max value
*/
public Integer max() {
return this.max;
}
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy