@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
97 lines (96 loc) • 2.66 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* (Deprecated! Recommend use volcengine_rds_mysql_*** replace) Use this data source to query detailed information of rds accounts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.rds.getAccounts({
* instanceId: "mysql-0fdd3bab2e7c",
* });
* ```
*/
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.
*/
accountName?: string;
/**
* The id of the RDS instance.
*/
instanceId: string;
/**
* A Name Regex of database account.
*/
nameRegex?: 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 provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly instanceId: string;
readonly nameRegex?: string;
readonly outputFile?: string;
/**
* The collection of RDS instance account query.
*/
readonly rdsAccounts: outputs.rds.GetAccountsRdsAccount[];
/**
* The total count of database account query.
*/
readonly totalCount: number;
}
/**
* (Deprecated! Recommend use volcengine_rds_mysql_*** replace) Use this data source to query detailed information of rds accounts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.rds.getAccounts({
* instanceId: "mysql-0fdd3bab2e7c",
* });
* ```
*/
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.
*/
accountName?: pulumi.Input<string>;
/**
* The id of the RDS instance.
*/
instanceId: pulumi.Input<string>;
/**
* A Name Regex of database account.
*/
nameRegex?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}