Struct gapi_grpc::google::cloud::sql::v1beta4::IpConfiguration[][src]

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

IP Management configuration.

Fields

ipv4_enabled: Option<bool>

Whether the instance is assigned a public IP address or not.

private_network: String

The resource link for the VPC network from which the Cloud SQL instance is accessible for private IP. For example, /projects/myProject/global/networks/default. This setting can be updated, but it cannot be removed after it is set.

require_ssl: Option<bool>

Whether SSL connections over IP are enforced or not.

authorized_networks: Vec<AclEntry>

The list of external networks that are allowed to connect to the instance using the IP. In ‘CIDR’ notation, also known as ‘slash’ notation (for example: 192.168.100.0/24).

Trait Implementations

impl Clone for IpConfiguration[src]

impl Debug for IpConfiguration[src]

impl Default for IpConfiguration[src]

impl Message for IpConfiguration[src]

impl PartialEq<IpConfiguration> for IpConfiguration[src]

impl StructuralPartialEq for IpConfiguration[src]

Auto Trait Implementations

impl RefUnwindSafe for IpConfiguration

impl Send for IpConfiguration

impl Sync for IpConfiguration

impl Unpin for IpConfiguration

impl UnwindSafe for IpConfiguration

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]