use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[cfg_attr(feature = "openapi", derive(utoipa::ToSchema))]
#[cfg_attr(feature = "jsonschema", derive(schemars::JsonSchema))]
#[serde(rename_all = "camelCase")]
pub struct GcpPostgresImportData {
pub instance_name: String,
pub database: String,
pub password_secret_name: String,
pub psc_service_attachment: String,
pub psc_address_name: String,
pub psc_forwarding_rule_name: String,
pub endpoint_ip: String,
pub region: String,
pub database_version: String,
}