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.appservice;
import com.fasterxml.jackson.annotation.JsonProperty;
The ContainerThrottlingData model.
/**
* The ContainerThrottlingData model.
*/
public class ContainerThrottlingData {
The periods property.
/**
* The periods property.
*/
@JsonProperty(value = "periods")
private Integer periods;
The throttledPeriods property.
/**
* The throttledPeriods property.
*/
@JsonProperty(value = "throttledPeriods")
private Integer throttledPeriods;
The throttledTime property.
/**
* The throttledTime property.
*/
@JsonProperty(value = "throttledTime")
private Integer throttledTime;
Get the periods value.
Returns: the periods value
/**
* Get the periods value.
*
* @return the periods value
*/
public Integer periods() {
return this.periods;
}
Set the periods value.
Params: - periods – the periods value to set
Returns: the ContainerThrottlingData object itself.
/**
* Set the periods value.
*
* @param periods the periods value to set
* @return the ContainerThrottlingData object itself.
*/
public ContainerThrottlingData withPeriods(Integer periods) {
this.periods = periods;
return this;
}
Get the throttledPeriods value.
Returns: the throttledPeriods value
/**
* Get the throttledPeriods value.
*
* @return the throttledPeriods value
*/
public Integer throttledPeriods() {
return this.throttledPeriods;
}
Set the throttledPeriods value.
Params: - throttledPeriods – the throttledPeriods value to set
Returns: the ContainerThrottlingData object itself.
/**
* Set the throttledPeriods value.
*
* @param throttledPeriods the throttledPeriods value to set
* @return the ContainerThrottlingData object itself.
*/
public ContainerThrottlingData withThrottledPeriods(Integer throttledPeriods) {
this.throttledPeriods = throttledPeriods;
return this;
}
Get the throttledTime value.
Returns: the throttledTime value
/**
* Get the throttledTime value.
*
* @return the throttledTime value
*/
public Integer throttledTime() {
return this.throttledTime;
}
Set the throttledTime value.
Params: - throttledTime – the throttledTime value to set
Returns: the ContainerThrottlingData object itself.
/**
* Set the throttledTime value.
*
* @param throttledTime the throttledTime value to set
* @return the ContainerThrottlingData object itself.
*/
public ContainerThrottlingData withThrottledTime(Integer throttledTime) {
this.throttledTime = throttledTime;
return this;
}
}