com.pulumi.azure.storage.outputs.AccountBlobPropertiesDeleteRetentionPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.storage.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Boolean;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AccountBlobPropertiesDeleteRetentionPolicy {
/**
* @return Specifies the number of days that the blob should be retained, between `1` and `365` days. Defaults to `7`.
*
*/
private @Nullable Integer days;
/**
* @return Indicates whether permanent deletion of the soft deleted blob versions and snapshots is allowed. Defaults to `false`.
*
* > **Note:** `permanent_delete_enabled` cannot be set to true if a `restore_policy` block is defined.
*
*/
private @Nullable Boolean permanentDeleteEnabled;
private AccountBlobPropertiesDeleteRetentionPolicy() {}
/**
* @return Specifies the number of days that the blob should be retained, between `1` and `365` days. Defaults to `7`.
*
*/
public Optional days() {
return Optional.ofNullable(this.days);
}
/**
* @return Indicates whether permanent deletion of the soft deleted blob versions and snapshots is allowed. Defaults to `false`.
*
* > **Note:** `permanent_delete_enabled` cannot be set to true if a `restore_policy` block is defined.
*
*/
public Optional permanentDeleteEnabled() {
return Optional.ofNullable(this.permanentDeleteEnabled);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AccountBlobPropertiesDeleteRetentionPolicy defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer days;
private @Nullable Boolean permanentDeleteEnabled;
public Builder() {}
public Builder(AccountBlobPropertiesDeleteRetentionPolicy defaults) {
Objects.requireNonNull(defaults);
this.days = defaults.days;
this.permanentDeleteEnabled = defaults.permanentDeleteEnabled;
}
@CustomType.Setter
public Builder days(@Nullable Integer days) {
this.days = days;
return this;
}
@CustomType.Setter
public Builder permanentDeleteEnabled(@Nullable Boolean permanentDeleteEnabled) {
this.permanentDeleteEnabled = permanentDeleteEnabled;
return this;
}
public AccountBlobPropertiesDeleteRetentionPolicy build() {
final var _resultValue = new AccountBlobPropertiesDeleteRetentionPolicy();
_resultValue.days = days;
_resultValue.permanentDeleteEnabled = permanentDeleteEnabled;
return _resultValue;
}
}
}