import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DbRedis extends pulumi.CustomResource { /** * Get an existing DbRedis resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DbRedisState, opts?: pulumi.CustomResourceOptions): DbRedis; /** * Returns true if the given object is an instance of DbRedis. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DbRedis; readonly dbRedisId: pulumi.Output; /** * Information about database disk stats */ readonly diskStats: pulumi.Output; /** * Host for connection to database */ readonly host: pulumi.Output; /** * IP-address database of network interface */ readonly ip: pulumi.Output; /** * Flag that shows allowability database only by external IP address */ readonly isExternalIp: pulumi.Output; /** * Local IP-address database of network interface */ readonly localIp: pulumi.Output; /** * Flag that enables local network for DB */ readonly localNetwork: pulumi.Output; /** * Login for database */ readonly login: pulumi.Output; /** * Name for database */ readonly name: pulumi.Output; /** * Password for database */ readonly password: pulumi.Output; /** * Port for connection to database */ readonly port: pulumi.Output; /** * Preset ID for database */ readonly presetId: pulumi.Output; /** * Project ID for created DB */ readonly projectId: pulumi.Output; /** * Current status of database (`started`, `starting`, `stoped`, `no_paid`) */ readonly status: pulumi.Output; /** * Create a DbRedis resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DbRedisArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DbRedis resources. */ export interface DbRedisState { dbRedisId?: pulumi.Input; /** * Information about database disk stats */ diskStats?: pulumi.Input[]>; /** * Host for connection to database */ host?: pulumi.Input; /** * IP-address database of network interface */ ip?: pulumi.Input; /** * Flag that shows allowability database only by external IP address */ isExternalIp?: pulumi.Input; /** * Local IP-address database of network interface */ localIp?: pulumi.Input; /** * Flag that enables local network for DB */ localNetwork?: pulumi.Input; /** * Login for database */ login?: pulumi.Input; /** * Name for database */ name?: pulumi.Input; /** * Password for database */ password?: pulumi.Input; /** * Port for connection to database */ port?: pulumi.Input; /** * Preset ID for database */ presetId?: pulumi.Input; /** * Project ID for created DB */ projectId?: pulumi.Input; /** * Current status of database (`started`, `starting`, `stoped`, `no_paid`) */ status?: pulumi.Input; } /** * The set of arguments for constructing a DbRedis resource. */ export interface DbRedisArgs { dbRedisId?: pulumi.Input; /** * Flag that shows allowability database only by external IP address */ isExternalIp?: pulumi.Input; /** * Flag that enables local network for DB */ localNetwork?: pulumi.Input; /** * Login for database */ login?: pulumi.Input; /** * Name for database */ name?: pulumi.Input; /** * Password for database */ password: pulumi.Input; /** * Preset ID for database */ presetId: pulumi.Input; /** * Project ID for created DB */ projectId?: pulumi.Input; }