import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DbPostgres extends pulumi.CustomResource { /** * Get an existing DbPostgres 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?: DbPostgresState, opts?: pulumi.CustomResourceOptions): DbPostgres; /** * Returns true if the given object is an instance of DbPostgres. 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 DbPostgres; /** * Change ration before `ANALYZE` will be started */ readonly autovacuumAnalyzeScaleFactor: pulumi.Output; /** * Interval between background writes runs */ readonly bgwriterDelay: pulumi.Output; /** * Maximum pages cache count */ readonly bgwriterLruMaxpages: pulumi.Output; readonly dbPostgresId: pulumi.Output; /** * Timeout between deadlock checking */ readonly deadlockTimeout: pulumi.Output; /** * Information about database disk stats */ readonly diskStats: pulumi.Output; /** * Maximum write queue size of `GIN` index */ readonly ginPendingListLimit: pulumi.Output; /** * Host for connection to database */ readonly host: pulumi.Output; /** * Maximum idle time for opened transaction */ readonly idleInTransactionSessionTimeout: pulumi.Output; /** * Maximum idle time for session */ readonly idleSessionTimeout: 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; /** * Threshold of elements in `FROM` that will be transformed to explicit `JOIN` */ readonly joinCollapseLimit: pulumi.Output; /** * Local IP-address database of network interface */ readonly localIp: pulumi.Output; /** * Flag that enables local network for DB */ readonly localNetwork: pulumi.Output; /** * Time for obtaining lock */ readonly lockTimeout: pulumi.Output; /** * Login for database */ readonly login: pulumi.Output; /** * Determines the maximum number of concurrent connections to the database server */ readonly maxConnections: pulumi.Output; /** * Max count of stored prepared statements */ readonly maxPreparedTransactions: 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; /** * Sets the number of shared memory buffers used by the server */ readonly sharedBuffers: pulumi.Output; /** * Current status of database (`started`, `starting`, `stoped`, `no_paid`) */ readonly status: pulumi.Output; /** * Sets the maximum number of temporary buffers used by each session */ readonly tempBuffers: pulumi.Output; /** * Sets the number of disk-page buffers in shared memory for WAL */ readonly walBuffers: pulumi.Output; /** * Sets the maximum memory to be used by each autovacuum worker process */ readonly workMem: pulumi.Output; /** * Create a DbPostgres 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: DbPostgresArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DbPostgres resources. */ export interface DbPostgresState { /** * Change ration before `ANALYZE` will be started */ autovacuumAnalyzeScaleFactor?: pulumi.Input; /** * Interval between background writes runs */ bgwriterDelay?: pulumi.Input; /** * Maximum pages cache count */ bgwriterLruMaxpages?: pulumi.Input; dbPostgresId?: pulumi.Input; /** * Timeout between deadlock checking */ deadlockTimeout?: pulumi.Input; /** * Information about database disk stats */ diskStats?: pulumi.Input[]>; /** * Maximum write queue size of `GIN` index */ ginPendingListLimit?: pulumi.Input; /** * Host for connection to database */ host?: pulumi.Input; /** * Maximum idle time for opened transaction */ idleInTransactionSessionTimeout?: pulumi.Input; /** * Maximum idle time for session */ idleSessionTimeout?: pulumi.Input; /** * IP-address database of network interface */ ip?: pulumi.Input; /** * Flag that shows allowability database only by external IP address */ isExternalIp?: pulumi.Input; /** * Threshold of elements in `FROM` that will be transformed to explicit `JOIN` */ joinCollapseLimit?: pulumi.Input; /** * Local IP-address database of network interface */ localIp?: pulumi.Input; /** * Flag that enables local network for DB */ localNetwork?: pulumi.Input; /** * Time for obtaining lock */ lockTimeout?: pulumi.Input; /** * Login for database */ login?: pulumi.Input; /** * Determines the maximum number of concurrent connections to the database server */ maxConnections?: pulumi.Input; /** * Max count of stored prepared statements */ maxPreparedTransactions?: 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; /** * Sets the number of shared memory buffers used by the server */ sharedBuffers?: pulumi.Input; /** * Current status of database (`started`, `starting`, `stoped`, `no_paid`) */ status?: pulumi.Input; /** * Sets the maximum number of temporary buffers used by each session */ tempBuffers?: pulumi.Input; /** * Sets the number of disk-page buffers in shared memory for WAL */ walBuffers?: pulumi.Input; /** * Sets the maximum memory to be used by each autovacuum worker process */ workMem?: pulumi.Input; } /** * The set of arguments for constructing a DbPostgres resource. */ export interface DbPostgresArgs { /** * Change ration before `ANALYZE` will be started */ autovacuumAnalyzeScaleFactor?: pulumi.Input; /** * Interval between background writes runs */ bgwriterDelay?: pulumi.Input; /** * Maximum pages cache count */ bgwriterLruMaxpages?: pulumi.Input; dbPostgresId?: pulumi.Input; /** * Timeout between deadlock checking */ deadlockTimeout?: pulumi.Input; /** * Maximum write queue size of `GIN` index */ ginPendingListLimit?: pulumi.Input; /** * Maximum idle time for opened transaction */ idleInTransactionSessionTimeout?: pulumi.Input; /** * Maximum idle time for session */ idleSessionTimeout?: pulumi.Input; /** * Flag that shows allowability database only by external IP address */ isExternalIp?: pulumi.Input; /** * Threshold of elements in `FROM` that will be transformed to explicit `JOIN` */ joinCollapseLimit?: pulumi.Input; /** * Flag that enables local network for DB */ localNetwork?: pulumi.Input; /** * Time for obtaining lock */ lockTimeout?: pulumi.Input; /** * Login for database */ login?: pulumi.Input; /** * Determines the maximum number of concurrent connections to the database server */ maxConnections?: pulumi.Input; /** * Max count of stored prepared statements */ maxPreparedTransactions?: 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; /** * Sets the number of shared memory buffers used by the server */ sharedBuffers?: pulumi.Input; /** * Sets the maximum number of temporary buffers used by each session */ tempBuffers?: pulumi.Input; /** * Sets the number of disk-page buffers in shared memory for WAL */ walBuffers?: pulumi.Input; /** * Sets the maximum memory to be used by each autovacuum worker process */ workMem?: pulumi.Input; }