export declare const AuditLogConfigLogType: { /** * Default case. Should never be this. */ readonly LogTypeUnspecified: "LOG_TYPE_UNSPECIFIED"; /** * Admin reads. Example: CloudIAM getIamPolicy */ readonly AdminRead: "ADMIN_READ"; /** * Data writes. Example: CloudSQL Users create */ readonly DataWrite: "DATA_WRITE"; /** * Data reads. Example: CloudSQL Users list */ readonly DataRead: "DATA_READ"; }; /** * The log type that this config enables. */ export type AuditLogConfigLogType = (typeof AuditLogConfigLogType)[keyof typeof AuditLogConfigLogType]; export declare const CloudSqlPropertiesType: { /** * Unspecified database type. */ readonly DatabaseTypeUnspecified: "DATABASE_TYPE_UNSPECIFIED"; /** * Cloud SQL for PostgreSQL. */ readonly Postgres: "POSTGRES"; /** * Cloud SQL for MySQL. */ readonly Mysql: "MYSQL"; }; /** * Type of the Cloud SQL database. */ export type CloudSqlPropertiesType = (typeof CloudSqlPropertiesType)[keyof typeof CloudSqlPropertiesType];