BackupPolicyArgs

data class BackupPolicyArgs(val dailyBackupLimit: Output<Int>? = null, val description: Output<String>? = null, val enabled: Output<Boolean>? = null, val labels: Output<Map<String, String>>? = null, val location: Output<String>? = null, val monthlyBackupLimit: Output<Int>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val weeklyBackupLimit: Output<Int>? = null) : ConvertibleToJava<BackupPolicyArgs>

A backup policy is used to schedule backups at regular daily, weekly, or monthly intervals. Backup policies allow you to attach a backup schedule to a volume. The policy defines how many backups to retain at daily, weekly, or monthly intervals. To get more information about backupPolicy, see:

Example Usage

Netapp Backup Policy Full

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const testBackupPolicyFull = new gcp.netapp.BackupPolicy("test_backup_policy_full", {
name: "test-backup-policy-full",
location: "us-central1",
dailyBackupLimit: 2,
weeklyBackupLimit: 1,
monthlyBackupLimit: 1,
description: "TF test backup schedule",
enabled: true,
labels: {
foo: "bar",
},
});
import pulumi
import pulumi_gcp as gcp
test_backup_policy_full = gcp.netapp.BackupPolicy("test_backup_policy_full",
name="test-backup-policy-full",
location="us-central1",
daily_backup_limit=2,
weekly_backup_limit=1,
monthly_backup_limit=1,
description="TF test backup schedule",
enabled=True,
labels={
"foo": "bar",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var testBackupPolicyFull = new Gcp.Netapp.BackupPolicy("test_backup_policy_full", new()
{
Name = "test-backup-policy-full",
Location = "us-central1",
DailyBackupLimit = 2,
WeeklyBackupLimit = 1,
MonthlyBackupLimit = 1,
Description = "TF test backup schedule",
Enabled = true,
Labels =
{
{ "foo", "bar" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/netapp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := netapp.NewBackupPolicy(ctx, "test_backup_policy_full", &netapp.BackupPolicyArgs{
Name: pulumi.String("test-backup-policy-full"),
Location: pulumi.String("us-central1"),
DailyBackupLimit: pulumi.Int(2),
WeeklyBackupLimit: pulumi.Int(1),
MonthlyBackupLimit: pulumi.Int(1),
Description: pulumi.String("TF test backup schedule"),
Enabled: pulumi.Bool(true),
Labels: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.netapp.BackupPolicy;
import com.pulumi.gcp.netapp.BackupPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testBackupPolicyFull = new BackupPolicy("testBackupPolicyFull", BackupPolicyArgs.builder()
.name("test-backup-policy-full")
.location("us-central1")
.dailyBackupLimit(2)
.weeklyBackupLimit(1)
.monthlyBackupLimit(1)
.description("TF test backup schedule")
.enabled(true)
.labels(Map.of("foo", "bar"))
.build());
}
}
resources:
testBackupPolicyFull:
type: gcp:netapp:BackupPolicy
name: test_backup_policy_full
properties:
name: test-backup-policy-full
location: us-central1
dailyBackupLimit: 2
weeklyBackupLimit: 1
monthlyBackupLimit: 1
description: TF test backup schedule
enabled: true
labels:
foo: bar

Import

backupPolicy can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{location}}/backupPolicies/{{name}}

  • {{project}}/{{location}}/{{name}}

  • {{location}}/{{name}} When using the pulumi import command, backupPolicy can be imported using one of the formats above. For example:

$ pulumi import gcp:netapp/backupPolicy:BackupPolicy default projects/{{project}}/locations/{{location}}/backupPolicies/{{name}}
$ pulumi import gcp:netapp/backupPolicy:BackupPolicy default {{project}}/{{location}}/{{name}}
$ pulumi import gcp:netapp/backupPolicy:BackupPolicy default {{location}}/{{name}}

Constructors

Link copied to clipboard
constructor(dailyBackupLimit: Output<Int>? = null, description: Output<String>? = null, enabled: Output<Boolean>? = null, labels: Output<Map<String, String>>? = null, location: Output<String>? = null, monthlyBackupLimit: Output<Int>? = null, name: Output<String>? = null, project: Output<String>? = null, weeklyBackupLimit: Output<Int>? = null)

Properties

Link copied to clipboard
val dailyBackupLimit: Output<Int>? = null

Number of daily backups to keep. Note that the minimum daily backup limit is 2.

Link copied to clipboard
val description: Output<String>? = null

An optional description of this resource.

Link copied to clipboard
val enabled: Output<Boolean>? = null

If enabled, make backups automatically according to the schedules. This will be applied to all volumes that have this policy attached and enforced on volume level.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

Labels as key value pairs. Example: { "owner": "Bob", "department": "finance", "purpose": "testing" }. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

Link copied to clipboard
val location: Output<String>? = null

Name of the region for the policy to apply to.

Link copied to clipboard
val monthlyBackupLimit: Output<Int>? = null

Number of monthly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.

Link copied to clipboard
val name: Output<String>? = null

The name of the backup policy. Needs to be unique per location.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val weeklyBackupLimit: Output<Int>? = null

Number of weekly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.

Functions

Link copied to clipboard
open override fun toJava(): BackupPolicyArgs