render_cdk 0.0.21

This crate provides a streamlined interface for interacting with Render, a platform that allows you to build, deploy, and scale your apps with ease.
Documentation
#![allow(missing_docs)]
#![allow(unused)]
#![allow(non_snake_case)]
// [JSON] parsing.
use serde::{Deserialize, Serialize};

// [render_cdk] modules.
use super::storage::PostgresCidrAllowList;

// [DEBUG] utils.
use colored::Colorize;

#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct PostgresConf {
    pub databaseName: Option<String>,
    pub databaseUser: Option<String>,
    pub enableHighAvailability: bool,
    pub plan: String,
    pub version: String,
    pub name: Option<String>,
    pub ownerId: String,
    pub ipAllowList: Option<Vec<PostgresCidrAllowList>>,
}