[][src]Struct google_file1::NetworkConfig

pub struct NetworkConfig {
    pub reserved_ip_range: Option<String>,
    pub modes: Option<Vec<String>>,
    pub ip_addresses: Option<Vec<String>>,
    pub network: Option<String>,
}

Network configuration for the instance.

This type is not used in any activity, and only used as part of another schema.

Fields

reserved_ip_range: Option<String>

A /29 CIDR block in one of the internal IP address ranges that identifies the range of IP addresses reserved for this instance. For example, 10.0.0.0/29 or 192.168.0.0/29. The range you specify can't overlap with either existing subnets or assigned IP address ranges for other Cloud Filestore instances in the selected VPC network.

modes: Option<Vec<String>>

Internet protocol versions for which the instance has IP addresses assigned. For this version, only MODE_IPV4 is supported.

ip_addresses: Option<Vec<String>>

Output only. IPv4 addresses in the format {octet 1}.{octet 2}.{octet 3}.{octet 4} or IPv6 addresses in the format {block 1}:{block 2}:{block 3}:{block 4}:{block 5}:{block 6}:{block 7}:{block 8}.

network: Option<String>

The name of the Google Compute Engine VPC network to which the instance is connected.

Trait Implementations

impl Part for NetworkConfig[src]

impl Default for NetworkConfig[src]

impl Clone for NetworkConfig[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for NetworkConfig[src]

impl Serialize for NetworkConfig[src]

impl<'de> Deserialize<'de> for NetworkConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]