Skip to main content

windmill_api/models/
acl_target_database.rs

1/*
2 * Windmill API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.817.0
7 * Contact: contact@windmill.dev
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 AclTargetDatabase {
16    #[serde(rename = "kind")]
17    pub kind: Kind,
18}
19
20impl AclTargetDatabase {
21    pub fn new(kind: Kind) -> AclTargetDatabase {
22        AclTargetDatabase {
23            kind,
24        }
25    }
26}
27/// 
28#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
29pub enum Kind {
30    #[serde(rename = "database")]
31    Database,
32}
33
34impl Default for Kind {
35    fn default() -> Kind {
36        Self::Database
37    }
38}
39