All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.netapp.kotlin.BackupPolicyArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.netapp.kotlin

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.netapp.BackupPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * 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:
 * * [API documentation](https://cloud.google.com/netapp/volumes/docs/reference/rest/v1/projects.locations.backupPolicies)
 * * How-to Guides
 *     * [Documentation](https://cloud.google.com/netapp/volumes/docs/protect-data/about-volume-backups#about_backup_policies)
 * ## Example Usage
 * ### Netapp Backup Policy Full
 * 
 * ```typescript
 * 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",
 *     },
 * });
 * ```
 * ```python
 * 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",
 *     })
 * ```
 * ```csharp
 * 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" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * 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
 * 	})
 * }
 * ```
 * ```java
 * 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());
 *     }
 * }
 * ```
 * ```yaml
 * 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:
 * ```sh
 * $ pulumi import gcp:netapp/backupPolicy:BackupPolicy default projects/{{project}}/locations/{{location}}/backupPolicies/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:netapp/backupPolicy:BackupPolicy default {{project}}/{{location}}/{{name}}
 * ```
 * ```sh
 * $ pulumi import gcp:netapp/backupPolicy:BackupPolicy default {{location}}/{{name}}
 * ```
 * @property dailyBackupLimit Number of daily backups to keep. Note that the minimum daily backup limit is 2.
 * @property description An optional description of this resource.
 * @property enabled 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.
 * @property labels 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.
 * @property location Name of the region for the policy to apply to.
 * @property monthlyBackupLimit Number of monthly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.
 * @property name The name of the backup policy. Needs to be unique per location.
 * - - -
 * @property project The ID of the project in which the resource belongs.
 * If it is not provided, the provider project is used.
 * @property weeklyBackupLimit Number of weekly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.
 */
public data class BackupPolicyArgs(
    public val dailyBackupLimit: Output? = null,
    public val description: Output? = null,
    public val enabled: Output? = null,
    public val labels: Output>? = null,
    public val location: Output? = null,
    public val monthlyBackupLimit: Output? = null,
    public val name: Output? = null,
    public val project: Output? = null,
    public val weeklyBackupLimit: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.netapp.BackupPolicyArgs =
        com.pulumi.gcp.netapp.BackupPolicyArgs.builder()
            .dailyBackupLimit(dailyBackupLimit?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .enabled(enabled?.applyValue({ args0 -> args0 }))
            .labels(labels?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .location(location?.applyValue({ args0 -> args0 }))
            .monthlyBackupLimit(monthlyBackupLimit?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 }))
            .weeklyBackupLimit(weeklyBackupLimit?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BackupPolicyArgs].
 */
@PulumiTagMarker
public class BackupPolicyArgsBuilder internal constructor() {
    private var dailyBackupLimit: Output? = null

    private var description: Output? = null

    private var enabled: Output? = null

    private var labels: Output>? = null

    private var location: Output? = null

    private var monthlyBackupLimit: Output? = null

    private var name: Output? = null

    private var project: Output? = null

    private var weeklyBackupLimit: Output? = null

    /**
     * @param value Number of daily backups to keep. Note that the minimum daily backup limit is 2.
     */
    @JvmName("heuwivglnyrfmhko")
    public suspend fun dailyBackupLimit(`value`: Output) {
        this.dailyBackupLimit = value
    }

    /**
     * @param value An optional description of this resource.
     */
    @JvmName("dnxfssjkfydsqgif")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value 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.
     */
    @JvmName("tfpiuqrrjbjjyfra")
    public suspend fun enabled(`value`: Output) {
        this.enabled = value
    }

    /**
     * @param value 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.
     */
    @JvmName("jelnofxjkqfaqkcc")
    public suspend fun labels(`value`: Output>) {
        this.labels = value
    }

    /**
     * @param value Name of the region for the policy to apply to.
     */
    @JvmName("bimrowmjsktjdskg")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value Number of monthly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.
     */
    @JvmName("iulewffqeidxeovs")
    public suspend fun monthlyBackupLimit(`value`: Output) {
        this.monthlyBackupLimit = value
    }

    /**
     * @param value The name of the backup policy. Needs to be unique per location.
     * - - -
     */
    @JvmName("vemodtictvgqatdr")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("pwfpsfwmtdilrkxj")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value Number of weekly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.
     */
    @JvmName("lkejkxrfnkbifyqw")
    public suspend fun weeklyBackupLimit(`value`: Output) {
        this.weeklyBackupLimit = value
    }

    /**
     * @param value Number of daily backups to keep. Note that the minimum daily backup limit is 2.
     */
    @JvmName("hdfpillvgfvanhja")
    public suspend fun dailyBackupLimit(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dailyBackupLimit = mapped
    }

    /**
     * @param value An optional description of this resource.
     */
    @JvmName("bohwptuahtekwuch")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value 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.
     */
    @JvmName("gcpgdjagqusjrujb")
    public suspend fun enabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enabled = mapped
    }

    /**
     * @param value 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.
     */
    @JvmName("xmdkkqgkmicvhcfm")
    public suspend fun labels(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param values 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.
     */
    @JvmName("pajpimqvltyvbwgt")
    public fun labels(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.labels = mapped
    }

    /**
     * @param value Name of the region for the policy to apply to.
     */
    @JvmName("uqddrkqdjfkwyofu")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value Number of monthly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.
     */
    @JvmName("jugejhhfsrkdwjaq")
    public suspend fun monthlyBackupLimit(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.monthlyBackupLimit = mapped
    }

    /**
     * @param value The name of the backup policy. Needs to be unique per location.
     * - - -
     */
    @JvmName("xjkoesnvoeullvnw")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The ID of the project in which the resource belongs.
     * If it is not provided, the provider project is used.
     */
    @JvmName("aurihaftpfsypdii")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    /**
     * @param value Number of weekly backups to keep. Note that the sum of daily, weekly and monthly backups should be greater than 1.
     */
    @JvmName("ogvyvgwqkmaqfxeh")
    public suspend fun weeklyBackupLimit(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.weeklyBackupLimit = mapped
    }

    internal fun build(): BackupPolicyArgs = BackupPolicyArgs(
        dailyBackupLimit = dailyBackupLimit,
        description = description,
        enabled = enabled,
        labels = labels,
        location = location,
        monthlyBackupLimit = monthlyBackupLimit,
        name = name,
        project = project,
        weeklyBackupLimit = weeklyBackupLimit,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy