@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
88 lines (87 loc) • 2.44 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* 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",
* });
* ```
*/
export declare function getAccounts(args: GetAccountsArgs, opts?: pulumi.InvokeOptions): Promise<GetAccountsResult>;
/**
* A collection of arguments for invoking getAccounts.
*/
export interface GetAccountsArgs {
/**
* The name of the database account. This field supports fuzzy query.
*/
accountName?: string;
/**
* The id of the RDS instance.
*/
instanceId: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by getAccounts.
*/
export interface GetAccountsResult {
/**
* The name of the database account.
*/
readonly accountName?: string;
/**
* The collection of RDS instance account query.
*/
readonly accounts: outputs.rds_postgresql.GetAccountsAccount[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly instanceId: string;
readonly outputFile?: string;
/**
* The total count of database account query.
*/
readonly totalCount: number;
}
/**
* 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",
* });
* ```
*/
export declare function getAccountsOutput(args: GetAccountsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAccountsResult>;
/**
* A collection of arguments for invoking getAccounts.
*/
export interface GetAccountsOutputArgs {
/**
* The name of the database account. This field supports fuzzy query.
*/
accountName?: pulumi.Input<string>;
/**
* The id of the RDS instance.
*/
instanceId: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}