import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Backup Policy to back up PostgreSQL. * * > **Note:** The `azure.dataprotection.BackupPolicyPostgresql` resource has been deprecated because Azure Database for PostgreSQL Single Server has been retired as of 2025-03-28 and will be removed in v5.0 of the AzureRM Provider. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleBackupVault = new azure.dataprotection.BackupVault("example", { * name: "example-backup-vault", * resourceGroupName: example.name, * location: example.location, * datastoreType: "VaultStore", * redundancy: "LocallyRedundant", * }); * const exampleBackupPolicyPostgresql = new azure.dataprotection.BackupPolicyPostgresql("example", { * name: "example-backup-policy", * resourceGroupName: example.name, * vaultName: exampleBackupVault.name, * backupRepeatingTimeIntervals: ["R/2021-05-23T02:30:00+00:00/P1W"], * timeZone: "India Standard Time", * defaultRetentionDuration: "P4M", * retentionRules: [ * { * name: "weekly", * duration: "P6M", * priority: 20, * criteria: { * absoluteCriteria: "FirstOfWeek", * }, * }, * { * name: "thursday", * duration: "P1W", * priority: 25, * criteria: { * daysOfWeeks: ["Thursday"], * scheduledBackupTimes: ["2021-05-23T02:30:00Z"], * }, * }, * { * name: "monthly", * duration: "P1D", * priority: 15, * criteria: { * weeksOfMonths: [ * "First", * "Last", * ], * daysOfWeeks: ["Tuesday"], * scheduledBackupTimes: ["2021-05-23T02:30:00Z"], * }, * }, * ], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.DataProtection` - 2025-07-01 * * ## Import * * Backup Policy PostgreSQL's can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:dataprotection/backupPolicyPostgresql:BackupPolicyPostgresql example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.DataProtection/backupVaults/vault1/backupPolicies/backupPolicy1 * ``` */ export declare class BackupPolicyPostgresql extends pulumi.CustomResource { /** * Get an existing BackupPolicyPostgresql resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: BackupPolicyPostgresqlState, opts?: pulumi.CustomResourceOptions): BackupPolicyPostgresql; /** * Returns true if the given object is an instance of BackupPolicyPostgresql. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is BackupPolicyPostgresql; /** * Specifies a list of repeating time interval. It supports weekly back. It should follow `ISO 8601` repeating time interval. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly backupRepeatingTimeIntervals: pulumi.Output; /** * The duration of default retention rule. It should follow `ISO 8601` duration format. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly defaultRetentionDuration: pulumi.Output; /** * The name which should be used for this Backup Policy PostgreSQL. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Backup Policy PostgreSQL should exist. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly resourceGroupName: pulumi.Output; /** * One or more `retentionRule` blocks as defined below. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly retentionRules: pulumi.Output; /** * Specifies the Time Zone which should be used by the backup schedule. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly timeZone: pulumi.Output; /** * The name of the Backup Vault where the Backup Policy PostgreSQL should exist. Changing this forces a new Backup Policy PostgreSQL to be created. */ readonly vaultName: pulumi.Output; /** * Create a BackupPolicyPostgresql resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: BackupPolicyPostgresqlArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BackupPolicyPostgresql resources. */ export interface BackupPolicyPostgresqlState { /** * Specifies a list of repeating time interval. It supports weekly back. It should follow `ISO 8601` repeating time interval. Changing this forces a new Backup Policy PostgreSQL to be created. */ backupRepeatingTimeIntervals?: pulumi.Input[]>; /** * The duration of default retention rule. It should follow `ISO 8601` duration format. Changing this forces a new Backup Policy PostgreSQL to be created. */ defaultRetentionDuration?: pulumi.Input; /** * The name which should be used for this Backup Policy PostgreSQL. Changing this forces a new Backup Policy PostgreSQL to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Backup Policy PostgreSQL should exist. Changing this forces a new Backup Policy PostgreSQL to be created. */ resourceGroupName?: pulumi.Input; /** * One or more `retentionRule` blocks as defined below. Changing this forces a new Backup Policy PostgreSQL to be created. */ retentionRules?: pulumi.Input[]>; /** * Specifies the Time Zone which should be used by the backup schedule. Changing this forces a new Backup Policy PostgreSQL to be created. */ timeZone?: pulumi.Input; /** * The name of the Backup Vault where the Backup Policy PostgreSQL should exist. Changing this forces a new Backup Policy PostgreSQL to be created. */ vaultName?: pulumi.Input; } /** * The set of arguments for constructing a BackupPolicyPostgresql resource. */ export interface BackupPolicyPostgresqlArgs { /** * Specifies a list of repeating time interval. It supports weekly back. It should follow `ISO 8601` repeating time interval. Changing this forces a new Backup Policy PostgreSQL to be created. */ backupRepeatingTimeIntervals: pulumi.Input[]>; /** * The duration of default retention rule. It should follow `ISO 8601` duration format. Changing this forces a new Backup Policy PostgreSQL to be created. */ defaultRetentionDuration: pulumi.Input; /** * The name which should be used for this Backup Policy PostgreSQL. Changing this forces a new Backup Policy PostgreSQL to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Backup Policy PostgreSQL should exist. Changing this forces a new Backup Policy PostgreSQL to be created. */ resourceGroupName: pulumi.Input; /** * One or more `retentionRule` blocks as defined below. Changing this forces a new Backup Policy PostgreSQL to be created. */ retentionRules?: pulumi.Input[]>; /** * Specifies the Time Zone which should be used by the backup schedule. Changing this forces a new Backup Policy PostgreSQL to be created. */ timeZone?: pulumi.Input; /** * The name of the Backup Vault where the Backup Policy PostgreSQL should exist. Changing this forces a new Backup Policy PostgreSQL to be created. */ vaultName: pulumi.Input; }