Struct google_file1_beta1::NetworkConfig[][src]

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

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.

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

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}.

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

Trait Implementations

impl Default for NetworkConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for NetworkConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NetworkConfig
[src]

Formats the value using the given formatter. Read more

impl Part for NetworkConfig
[src]

Auto Trait Implementations