Struct google_datamigration1::api::SqlIpConfig
source · pub struct SqlIpConfig {
pub authorized_networks: Option<Vec<SqlAclEntry>>,
pub enable_ipv4: Option<bool>,
pub private_network: Option<String>,
pub require_ssl: Option<bool>,
}
Expand description
IP Management configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
The list of external networks that are allowed to connect to the instance using the IP. See https://en.wikipedia.org/wiki/CIDR_notation#CIDR_notation, also known as ‘slash’ notation (e.g. 192.168.100.0/24
).
enable_ipv4: Option<bool>
Whether the instance should be assigned an IPv4 address or not.
private_network: Option<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 should be enforced or not.
Trait Implementations§
source§impl Clone for SqlIpConfig
impl Clone for SqlIpConfig
source§fn clone(&self) -> SqlIpConfig
fn clone(&self) -> SqlIpConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SqlIpConfig
impl Debug for SqlIpConfig
source§impl Default for SqlIpConfig
impl Default for SqlIpConfig
source§fn default() -> SqlIpConfig
fn default() -> SqlIpConfig
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SqlIpConfig
impl<'de> Deserialize<'de> for SqlIpConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for SqlIpConfig
impl Serialize for SqlIpConfig
impl Part for SqlIpConfig
Auto Trait Implementations§
impl RefUnwindSafe for SqlIpConfig
impl Send for SqlIpConfig
impl Sync for SqlIpConfig
impl Unpin for SqlIpConfig
impl UnwindSafe for SqlIpConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more