Skip to main content

devops_armory/cloud/gcp/vpc/net/
models.rs

1use serde_derive::{Serialize, Deserialize};
2
3#[derive(Serialize, Deserialize, Default,Debug)]
4pub struct VpcNetwork {
5    pub name: String,
6    pub description: String,
7    pub autoCreateSubnetworks: bool,
8    //pub IPv4Range: String,
9    //pub subnetworks: Vec<String>,
10}
11