windmill-api 1.776.0

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
/*
 * Windmill API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 1.776.0
 * Contact: contact@windmill.dev
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct EditDbtWarehousesRequest {
    /// Warehouses a dbt project may run against, by name. `main` is the one a project gets when its descriptor names none. Each entry points at a resource; it never holds credentials.
    #[serde(rename = "dbt_warehouses", skip_serializing_if = "Option::is_none")]
    pub dbt_warehouses: Option<std::collections::HashMap<String, models::DbtWarehousesValue>>,
}

impl EditDbtWarehousesRequest {
    pub fn new() -> EditDbtWarehousesRequest {
        EditDbtWarehousesRequest {
            dbt_warehouses: None,
        }
    }
}