@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
53 lines • 2.31 kB
JavaScript
;
// *** 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.databaseEndpointsOutput = exports.databaseEndpoints = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of rds postgresql database endpoints
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const example = volcengine.rds_postgresql.getDatabaseEndpoints({
* instanceId: "postgres-72715e0d9f58",
* nameRegex: "默认.*",
* });
* ```
*/
/** @deprecated volcengine.rds_postgresql.DatabaseEndpoints has been deprecated in favor of volcengine.rds_postgresql.getDatabaseEndpoints */
function databaseEndpoints(args, opts) {
pulumi.log.warn("databaseEndpoints is deprecated: volcengine.rds_postgresql.DatabaseEndpoints has been deprecated in favor of volcengine.rds_postgresql.getDatabaseEndpoints");
args = args || {};
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:rds_postgresql/databaseEndpoints:DatabaseEndpoints", {
"instanceId": args.instanceId,
"nameRegex": args.nameRegex,
"outputFile": args.outputFile,
}, opts);
}
exports.databaseEndpoints = databaseEndpoints;
/**
* Use this data source to query detailed information of rds postgresql database endpoints
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const example = volcengine.rds_postgresql.getDatabaseEndpoints({
* instanceId: "postgres-72715e0d9f58",
* nameRegex: "默认.*",
* });
* ```
*/
/** @deprecated volcengine.rds_postgresql.DatabaseEndpoints has been deprecated in favor of volcengine.rds_postgresql.getDatabaseEndpoints */
function databaseEndpointsOutput(args, opts) {
return pulumi.output(args).apply((a) => databaseEndpoints(a, opts));
}
exports.databaseEndpointsOutput = databaseEndpointsOutput;
//# sourceMappingURL=databaseEndpoints.js.map