import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DbMysql5 extends pulumi.CustomResource { /** * Get an existing DbMysql5 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?: DbMysql5State, opts?: pulumi.CustomResourceOptions): DbMysql5; /** * Returns true if the given object is an instance of DbMysql5. 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 DbMysql5; /** * Interval between indices between rows for `AUTO_INCREMENT` columns */ readonly autoIncrementIncrement: pulumi.Output; /** * Start value for `AUTO_INCREMENT` columns */ readonly autoIncrementOffset: pulumi.Output; readonly dbMysql5Id: pulumi.Output; /** * Information about database disk stats */ readonly diskStats: pulumi.Output; /** * Hash type for database */ readonly hashType: pulumi.Output; /** * Host for connection to database */ readonly host: pulumi.Output; /** * IOPS count */ readonly innodbIoCapacity: pulumi.Output; /** * Threads count for cleanup operation */ readonly innodbPurgeThreads: pulumi.Output; /** * Threads count for read operation */ readonly innodbReadIoThreads: pulumi.Output; /** * Maximum active threads count */ readonly innodbThreadConcurrency: pulumi.Output; /** * Threads count for write operation */ readonly innodbWriteIoThreads: 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; /** * Buffer size for JOIN operation */ readonly joinBufferSize: 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; /** * Max allowed size for one packet or parameter that may be sent via `mysql_stmt_send_long_data()` */ readonly maxAllowedPacket: pulumi.Output; /** * The maximum permitted number of simultaneous client connections */ readonly maxConnections: pulumi.Output; /** * Max size for user MEMORY-tables */ readonly maxHeapTableSize: 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; /** * The amount of memory allocated for caching query results */ readonly queryCacheSize: pulumi.Output; /** * Set the query cache type */ readonly queryCacheType: pulumi.Output; /** * The current server SQL mode */ readonly sqlModes: pulumi.Output; /** * Current status of database (`started`, `starting`, `stoped`, `no_paid`) */ readonly status: pulumi.Output; /** * Create a DbMysql5 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: DbMysql5Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DbMysql5 resources. */ export interface DbMysql5State { /** * Interval between indices between rows for `AUTO_INCREMENT` columns */ autoIncrementIncrement?: pulumi.Input; /** * Start value for `AUTO_INCREMENT` columns */ autoIncrementOffset?: pulumi.Input; dbMysql5Id?: pulumi.Input; /** * Information about database disk stats */ diskStats?: pulumi.Input[]>; /** * Hash type for database */ hashType?: pulumi.Input; /** * Host for connection to database */ host?: pulumi.Input; /** * IOPS count */ innodbIoCapacity?: pulumi.Input; /** * Threads count for cleanup operation */ innodbPurgeThreads?: pulumi.Input; /** * Threads count for read operation */ innodbReadIoThreads?: pulumi.Input; /** * Maximum active threads count */ innodbThreadConcurrency?: pulumi.Input; /** * Threads count for write operation */ innodbWriteIoThreads?: pulumi.Input; /** * IP-address database of network interface */ ip?: pulumi.Input; /** * Flag that shows allowability database only by external IP address */ isExternalIp?: pulumi.Input; /** * Buffer size for JOIN operation */ joinBufferSize?: 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; /** * Max allowed size for one packet or parameter that may be sent via `mysql_stmt_send_long_data()` */ maxAllowedPacket?: pulumi.Input; /** * The maximum permitted number of simultaneous client connections */ maxConnections?: pulumi.Input; /** * Max size for user MEMORY-tables */ maxHeapTableSize?: 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; /** * The amount of memory allocated for caching query results */ queryCacheSize?: pulumi.Input; /** * Set the query cache type */ queryCacheType?: pulumi.Input; /** * The current server SQL mode */ sqlModes?: pulumi.Input[]>; /** * Current status of database (`started`, `starting`, `stoped`, `no_paid`) */ status?: pulumi.Input; } /** * The set of arguments for constructing a DbMysql5 resource. */ export interface DbMysql5Args { /** * Interval between indices between rows for `AUTO_INCREMENT` columns */ autoIncrementIncrement?: pulumi.Input; /** * Start value for `AUTO_INCREMENT` columns */ autoIncrementOffset?: pulumi.Input; dbMysql5Id?: pulumi.Input; /** * Hash type for database */ hashType?: pulumi.Input; /** * IOPS count */ innodbIoCapacity?: pulumi.Input; /** * Threads count for cleanup operation */ innodbPurgeThreads?: pulumi.Input; /** * Threads count for read operation */ innodbReadIoThreads?: pulumi.Input; /** * Maximum active threads count */ innodbThreadConcurrency?: pulumi.Input; /** * Threads count for write operation */ innodbWriteIoThreads?: pulumi.Input; /** * Flag that shows allowability database only by external IP address */ isExternalIp?: pulumi.Input; /** * Buffer size for JOIN operation */ joinBufferSize?: pulumi.Input; /** * Flag that enables local network for DB */ localNetwork?: pulumi.Input; /** * Login for database */ login?: pulumi.Input; /** * Max allowed size for one packet or parameter that may be sent via `mysql_stmt_send_long_data()` */ maxAllowedPacket?: pulumi.Input; /** * The maximum permitted number of simultaneous client connections */ maxConnections?: pulumi.Input; /** * Max size for user MEMORY-tables */ maxHeapTableSize?: 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; /** * The amount of memory allocated for caching query results */ queryCacheSize?: pulumi.Input; /** * Set the query cache type */ queryCacheType?: pulumi.Input; /** * The current server SQL mode */ sqlModes?: pulumi.Input[]>; }