tembo_api_client/models/
app_config.rs

1/*
2 * Tembo Cloud
3 *
4 * Platform API for Tembo Cloud             </br>             </br>             To find a Tembo Data API, please find it here:             </br>             </br>             [AWS US East 1](https://api.data-1.use1.tembo.io/swagger-ui/)
5 *
6 * The version of the OpenAPI document: v1.0.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AppConfig {
16    #[serde(
17        rename = "env",
18        default,
19        with = "::serde_with::rust::double_option",
20        skip_serializing_if = "Option::is_none"
21    )]
22    pub env: Option<Option<Vec<models::EnvVar>>>,
23    #[serde(
24        rename = "resources",
25        default,
26        with = "::serde_with::rust::double_option",
27        skip_serializing_if = "Option::is_none"
28    )]
29    pub resources: Option<Option<Box<models::ResourceRequirements>>>,
30}
31
32impl AppConfig {
33    pub fn new() -> AppConfig {
34        AppConfig {
35            env: None,
36            resources: None,
37        }
38    }
39}