pub struct AccessConfig {
pub name: Option<String>,
pub nat_ip: Option<String>,
pub type_: Option<String>,
}Expand description
A Compute Engine network accessConfig. Identical to the accessConfig on corresponding Compute Engine resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§name: Option<String>Name of this access configuration.
nat_ip: Option<String>An external IP address associated with this instance.
type_: Option<String>Type of this access configuration file. (Currently only ONE_TO_ONE_NAT is legal.)
Trait Implementations§
Source§impl Clone for AccessConfig
impl Clone for AccessConfig
Source§fn clone(&self) -> AccessConfig
fn clone(&self) -> AccessConfig
Returns a duplicate 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 AccessConfig
impl Debug for AccessConfig
Source§impl Default for AccessConfig
impl Default for AccessConfig
Source§fn default() -> AccessConfig
fn default() -> AccessConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessConfig
impl<'de> Deserialize<'de> for AccessConfig
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 AccessConfig
impl Serialize for AccessConfig
impl Part for AccessConfig
Auto Trait Implementations§
impl Freeze for AccessConfig
impl RefUnwindSafe for AccessConfig
impl Send for AccessConfig
impl Sync for AccessConfig
impl Unpin for AccessConfig
impl UnwindSafe for AccessConfig
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