Skip to main content

tapis_workflows/models/
etl_control_system.rs

1/*
2 * Tapis Workflows API
3 *
4 * Create and manage pipelines
5 *
6 * The version of the OpenAPI document: 1.6.0
7 * Contact: cicsupport@tacc.utexas.edu
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 EtlControlSystem {
16    #[serde(rename = "system_id", skip_serializing_if = "Option::is_none")]
17    pub system_id: Option<String>,
18    #[serde(rename = "path", skip_serializing_if = "Option::is_none")]
19    pub path: Option<String>,
20    #[serde(rename = "include_patterns", skip_serializing_if = "Option::is_none")]
21    pub include_patterns: Option<Vec<String>>,
22    #[serde(rename = "exclude_patterns", skip_serializing_if = "Option::is_none")]
23    pub exclude_patterns: Option<Vec<String>>,
24}
25
26impl EtlControlSystem {
27    pub fn new() -> EtlControlSystem {
28        EtlControlSystem {
29            system_id: None,
30            path: None,
31            include_patterns: None,
32            exclude_patterns: None,
33        }
34    }
35}