RetentionPolicy.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.data.tables.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The retention policy. */
@Fluent
public final class RetentionPolicy {
/*
* Indicates whether a retention policy is enabled for the service.
*/
@JsonProperty(value = "Enabled", required = true)
private boolean enabled;
/*
* Indicates the number of days that metrics or logging or soft-deleted
* data should be retained. All data older than this value will be deleted.
*/
@JsonProperty(value = "Days")
private Integer days;
/**
* Get the enabled property: Indicates whether a retention policy is enabled for the service.
*
* @return the enabled value.
*/
public boolean isEnabled() {
return this.enabled;
}
/**
* Set the enabled property: Indicates whether a retention policy is enabled for the service.
*
* @param enabled the enabled value to set.
* @return the RetentionPolicy object itself.
*/
public RetentionPolicy setEnabled(boolean enabled) {
this.enabled = enabled;
return this;
}
/**
* Get the days property: Indicates the number of days that metrics or logging or soft-deleted data should be
* retained. All data older than this value will be deleted.
*
* @return the days value.
*/
public Integer getDays() {
return this.days;
}
/**
* Set the days property: Indicates the number of days that metrics or logging or soft-deleted data should be
* retained. All data older than this value will be deleted.
*
* @param days the days value to set.
* @return the RetentionPolicy object itself.
*/
public RetentionPolicy setDays(Integer days) {
this.days = days;
return this;
}
}