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

IP Management configuration.

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

Fields

Whether the mysqld should default to 'REQUIRE X509' for users connecting over IP.

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

Trait Implementations

impl Debug for IpConfiguration
[src]

Formats the value using the given formatter.

impl Clone for IpConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for IpConfiguration
[src]

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

impl Part for IpConfiguration
[src]