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 ExecutionConfigUsagesItem: { /** * Default value. This value is unused. */ readonly ExecutionEnvironmentUsageUnspecified: "EXECUTION_ENVIRONMENT_USAGE_UNSPECIFIED"; /** * Use for rendering. */ readonly Render: "RENDER"; /** * Use for deploying and deployment hooks. */ readonly Deploy: "DEPLOY"; /** * Use for deployment verification. */ readonly Verify: "VERIFY"; /** * Use for predeploy job execution. */ readonly Predeploy: "PREDEPLOY"; /** * Use for postdeploy job execution. */ readonly Postdeploy: "POSTDEPLOY"; }; export type ExecutionConfigUsagesItem = (typeof ExecutionConfigUsagesItem)[keyof typeof ExecutionConfigUsagesItem]; export declare const RetryBackoffMode: { /** * No WaitMode is specified. */ readonly BackoffModeUnspecified: "BACKOFF_MODE_UNSPECIFIED"; /** * Increases the wait time linearly. */ readonly BackoffModeLinear: "BACKOFF_MODE_LINEAR"; /** * Increases the wait time exponentially. */ readonly BackoffModeExponential: "BACKOFF_MODE_EXPONENTIAL"; }; /** * Optional. The pattern of how wait time will be increased. Default is linear. Backoff mode will be ignored if `wait` is 0. */ export type RetryBackoffMode = (typeof RetryBackoffMode)[keyof typeof RetryBackoffMode];