pub struct Vpc {
pub id: String,
pub name: String,
pub description: String,
pub dns_name: String,
pub ipv6_prefix: String,
pub project_id: String,
pub system_router_id: String,
pub time_created: DisplayOptionDateTime,
pub time_modified: DisplayOptionDateTime,
}
Expand description
Client view of a Vpc
Fields§
§id: String
unique, immutable, system-controlled identifier for each resource
name: String
Names must begin with a lower case ASCII letter, be composed exclusively of lowercase ASCII, uppercase ASCII, numbers, and ‘-’, and may not end with a ‘-’. Names cannot be a UUID though they may contain a UUID.
description: String
human-readable free-form text about a resource
dns_name: String
Names must begin with a lower case ASCII letter, be composed exclusively of lowercase ASCII, uppercase ASCII, numbers, and ‘-’, and may not end with a ‘-’. Names cannot be a UUID though they may contain a UUID.
ipv6_prefix: String
An IPv6 subnet, including prefix and subnet mask
project_id: String
id for the project containing this VPC
system_router_id: String
id for the system router where subnet default routes are registered
time_created: DisplayOptionDateTime
timestamp when this resource was created
time_modified: DisplayOptionDateTime
timestamp when this resource was last modified
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Vpc
impl<'de> Deserialize<'de> for Vpc
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for Vpc
impl JsonSchema for Vpc
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more