@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
50 lines • 2.01 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.accountsOutput = exports.accounts = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of rds postgresql accounts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.rds_postgresql.getAccounts({
* instanceId: "postgres-954****f7233",
* });
* ```
*/
/** @deprecated volcengine.rds_postgresql.Accounts has been deprecated in favor of volcengine.rds_postgresql.getAccounts */
function accounts(args, opts) {
pulumi.log.warn("accounts is deprecated: volcengine.rds_postgresql.Accounts has been deprecated in favor of volcengine.rds_postgresql.getAccounts");
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:rds_postgresql/accounts:Accounts", {
"accountName": args.accountName,
"instanceId": args.instanceId,
"outputFile": args.outputFile,
}, opts);
}
exports.accounts = accounts;
/**
* Use this data source to query detailed information of rds postgresql accounts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.rds_postgresql.getAccounts({
* instanceId: "postgres-954****f7233",
* });
* ```
*/
/** @deprecated volcengine.rds_postgresql.Accounts has been deprecated in favor of volcengine.rds_postgresql.getAccounts */
function accountsOutput(args, opts) {
return pulumi.output(args).apply((a) => accounts(a, opts));
}
exports.accountsOutput = accountsOutput;
//# sourceMappingURL=accounts.js.map