com.pulumi.azure.backup.inputs.PolicyVMRetentionDailyArgs 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.backup.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;
public final class PolicyVMRetentionDailyArgs extends com.pulumi.resources.ResourceArgs {
public static final PolicyVMRetentionDailyArgs Empty = new PolicyVMRetentionDailyArgs();
/**
* The number of daily backups to keep. Must be between `7` and `9999`.
*
* > **Note:** Azure previously allows this field to be set to a minimum of 1 (day) - but for new resources/to update this value on existing Backup Policies - this value must now be at least 7 (days).
*
*/
@Import(name="count", required=true)
private Output count;
/**
* @return The number of daily backups to keep. Must be between `7` and `9999`.
*
* > **Note:** Azure previously allows this field to be set to a minimum of 1 (day) - but for new resources/to update this value on existing Backup Policies - this value must now be at least 7 (days).
*
*/
public Output count() {
return this.count;
}
private PolicyVMRetentionDailyArgs() {}
private PolicyVMRetentionDailyArgs(PolicyVMRetentionDailyArgs $) {
this.count = $.count;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(PolicyVMRetentionDailyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private PolicyVMRetentionDailyArgs $;
public Builder() {
$ = new PolicyVMRetentionDailyArgs();
}
public Builder(PolicyVMRetentionDailyArgs defaults) {
$ = new PolicyVMRetentionDailyArgs(Objects.requireNonNull(defaults));
}
/**
* @param count The number of daily backups to keep. Must be between `7` and `9999`.
*
* > **Note:** Azure previously allows this field to be set to a minimum of 1 (day) - but for new resources/to update this value on existing Backup Policies - this value must now be at least 7 (days).
*
* @return builder
*
*/
public Builder count(Output count) {
$.count = count;
return this;
}
/**
* @param count The number of daily backups to keep. Must be between `7` and `9999`.
*
* > **Note:** Azure previously allows this field to be set to a minimum of 1 (day) - but for new resources/to update this value on existing Backup Policies - this value must now be at least 7 (days).
*
* @return builder
*
*/
public Builder count(Integer count) {
return count(Output.of(count));
}
public PolicyVMRetentionDailyArgs build() {
if ($.count == null) {
throw new MissingRequiredPropertyException("PolicyVMRetentionDailyArgs", "count");
}
return $;
}
}
}