UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

94 lines 4.51 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.BackupPolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Provides a resource to manage rds postgresql backup policy * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const example = new volcengine.rds_postgresql.BackupPolicy("example", { * backupRetentionPeriod: 7, * dataIncrBackupPeriods: "Tuesday,Sunday", * fullBackupPeriod: "Monday,Wednesday,Friday", * fullBackupTime: "18:00Z-19:00Z", * hourlyIncrBackupEnable: true, * incrementBackupFrequency: 12, * instanceId: "postgres-72715e0d9f58", * walLogSpaceLimitEnable: false, * }); * ``` * * ## Import * * RdsPostgresqlBackupPolicy can be imported using the id, e.g. * * ```sh * $ pulumi import volcengine:rds_postgresql/backupPolicy:BackupPolicy default resource_id * ``` */ class BackupPolicy extends pulumi.CustomResource { /** * Get an existing BackupPolicy 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, id, state, opts) { return new BackupPolicy(name, state, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of BackupPolicy. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === BackupPolicy.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["backupRetentionPeriod"] = state ? state.backupRetentionPeriod : undefined; resourceInputs["dataIncrBackupPeriods"] = state ? state.dataIncrBackupPeriods : undefined; resourceInputs["fullBackupPeriod"] = state ? state.fullBackupPeriod : undefined; resourceInputs["fullBackupTime"] = state ? state.fullBackupTime : undefined; resourceInputs["hourlyIncrBackupEnable"] = state ? state.hourlyIncrBackupEnable : undefined; resourceInputs["incrementBackupFrequency"] = state ? state.incrementBackupFrequency : undefined; resourceInputs["instanceId"] = state ? state.instanceId : undefined; resourceInputs["walLogSpaceLimitEnable"] = state ? state.walLogSpaceLimitEnable : undefined; } else { const args = argsOrState; if ((!args || args.instanceId === undefined) && !opts.urn) { throw new Error("Missing required property 'instanceId'"); } resourceInputs["backupRetentionPeriod"] = args ? args.backupRetentionPeriod : undefined; resourceInputs["dataIncrBackupPeriods"] = args ? args.dataIncrBackupPeriods : undefined; resourceInputs["fullBackupPeriod"] = args ? args.fullBackupPeriod : undefined; resourceInputs["fullBackupTime"] = args ? args.fullBackupTime : undefined; resourceInputs["hourlyIncrBackupEnable"] = args ? args.hourlyIncrBackupEnable : undefined; resourceInputs["incrementBackupFrequency"] = args ? args.incrementBackupFrequency : undefined; resourceInputs["instanceId"] = args ? args.instanceId : undefined; resourceInputs["walLogSpaceLimitEnable"] = args ? args.walLogSpaceLimitEnable : undefined; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(BackupPolicy.__pulumiType, name, resourceInputs, opts); } } exports.BackupPolicy = BackupPolicy; /** @internal */ BackupPolicy.__pulumiType = 'volcengine:rds_postgresql/backupPolicy:BackupPolicy'; //# sourceMappingURL=backupPolicy.js.map