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 ManagementServerType: { /** * Instance type is not mentioned. */ readonly InstanceTypeUnspecified: "INSTANCE_TYPE_UNSPECIFIED"; /** * Instance for backup and restore management (i.e., AGM). */ readonly BackupRestore: "BACKUP_RESTORE"; }; /** * Required. The type of the ManagementServer resource. */ export type ManagementServerType = (typeof ManagementServerType)[keyof typeof ManagementServerType]; export declare const NetworkConfigPeeringMode: { /** * Peering mode not set. */ readonly PeeringModeUnspecified: "PEERING_MODE_UNSPECIFIED"; /** * Connect using Private Service Access to the Management Server. Private services access provides an IP address range for multiple Google Cloud services, including Cloud BackupDR. */ readonly PrivateServiceAccess: "PRIVATE_SERVICE_ACCESS"; }; /** * Optional. The network connect mode of the ManagementServer instance. For this version, only PRIVATE_SERVICE_ACCESS is supported. */ export type NetworkConfigPeeringMode = (typeof NetworkConfigPeeringMode)[keyof typeof NetworkConfigPeeringMode];