Struct google_sqladmin1_beta4::IpConfiguration[][src]

pub struct IpConfiguration {
    pub require_ssl: Option<bool>,
    pub ipv4_enabled: Option<bool>,
    pub authorized_networks: Option<Vec<AclEntry>>,
    pub private_network: Option<String>,
}

IP Management configuration.

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

Fields

Whether SSL connections over IP should be enforced or not.

Whether the instance should be assigned an IP address or not.

The list of external networks that are allowed to connect to the instance using the IP. In CIDR notation, also known as 'slash' notation (e.g. 192.168.100.0/24).

Reserved for future use.

Trait Implementations

impl Default for IpConfiguration
[src]

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

impl Clone for IpConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IpConfiguration
[src]

Formats the value using the given formatter. Read more

impl Part for IpConfiguration
[src]

Auto Trait Implementations