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 ProjectLifecycleState: { /** * Unspecified state. This is only used/useful for distinguishing unset values. */ readonly LifecycleStateUnspecified: "LIFECYCLE_STATE_UNSPECIFIED"; /** * The normal and active state. */ readonly Active: "ACTIVE"; /** * The project has been marked for deletion by the user (by invoking DeleteProject) or by the system (Google Cloud Platform). This can generally be reversed by invoking UndeleteProject. */ readonly DeleteRequested: "DELETE_REQUESTED"; /** * This lifecycle state is no longer used and not returned by the API. */ readonly DeleteInProgress: "DELETE_IN_PROGRESS"; }; /** * The Project lifecycle state. Read-only. */ export type ProjectLifecycleState = (typeof ProjectLifecycleState)[keyof typeof ProjectLifecycleState];