UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

62 lines 2.6 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.replicationSlotsOutput = exports.replicationSlots = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Use this data source to query detailed information of rds postgresql replication slots * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.rds_postgresql.getReplicationSlots({ * instanceId: "postgres-72715e0d9f58", * slotName: "my_standby_slot1", * slotStatus: "INACTIVE", * slotType: "physical", * }); * ``` */ /** @deprecated volcengine.rds_postgresql.ReplicationSlots has been deprecated in favor of volcengine.rds_postgresql.getReplicationSlots */ function replicationSlots(args, opts) { pulumi.log.warn("replicationSlots is deprecated: volcengine.rds_postgresql.ReplicationSlots has been deprecated in favor of volcengine.rds_postgresql.getReplicationSlots"); opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("volcengine:rds_postgresql/replicationSlots:ReplicationSlots", { "dataBase": args.dataBase, "instanceId": args.instanceId, "ipAddress": args.ipAddress, "outputFile": args.outputFile, "plugin": args.plugin, "slotName": args.slotName, "slotStatus": args.slotStatus, "slotType": args.slotType, "temporary": args.temporary, }, opts); } exports.replicationSlots = replicationSlots; /** * Use this data source to query detailed information of rds postgresql replication slots * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@pulumi/volcengine"; * * const example = volcengine.rds_postgresql.getReplicationSlots({ * instanceId: "postgres-72715e0d9f58", * slotName: "my_standby_slot1", * slotStatus: "INACTIVE", * slotType: "physical", * }); * ``` */ /** @deprecated volcengine.rds_postgresql.ReplicationSlots has been deprecated in favor of volcengine.rds_postgresql.getReplicationSlots */ function replicationSlotsOutput(args, opts) { return pulumi.output(args).apply((a) => replicationSlots(a, opts)); } exports.replicationSlotsOutput = replicationSlotsOutput; //# sourceMappingURL=replicationSlots.js.map