pub struct AutoCreatedSubnetworkInfo {
pub internal_range: Option<String>,
pub internal_range_ref: Option<String>,
pub subnetwork: Option<String>,
pub subnetwork_ref: Option<String>,
}Expand description
Information for the automatically created subnetwork and its associated IR.
This type is not used in any activity, and only used as part of another schema.
Fields§
§internal_range: Option<String>Output only. URI of the automatically created Internal Range. Only set if the subnetwork mode is AUTO_CREATED during creation.
internal_range_ref: Option<String>Output only. URI of the automatically created Internal Range reference. Only set if the subnetwork mode is AUTO_CREATED during creation.
subnetwork: Option<String>Output only. URI of the automatically created subnetwork. Only set if the subnetwork mode is AUTO_CREATED during creation.
subnetwork_ref: Option<String>Output only. URI of the automatically created subnetwork reference. Only set if the subnetwork mode is AUTO_CREATED during creation.
Trait Implementations§
Source§impl Clone for AutoCreatedSubnetworkInfo
impl Clone for AutoCreatedSubnetworkInfo
Source§fn clone(&self) -> AutoCreatedSubnetworkInfo
fn clone(&self) -> AutoCreatedSubnetworkInfo
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 AutoCreatedSubnetworkInfo
impl Debug for AutoCreatedSubnetworkInfo
Source§impl Default for AutoCreatedSubnetworkInfo
impl Default for AutoCreatedSubnetworkInfo
Source§fn default() -> AutoCreatedSubnetworkInfo
fn default() -> AutoCreatedSubnetworkInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoCreatedSubnetworkInfo
impl<'de> Deserialize<'de> for AutoCreatedSubnetworkInfo
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
impl Part for AutoCreatedSubnetworkInfo
Auto Trait Implementations§
impl Freeze for AutoCreatedSubnetworkInfo
impl RefUnwindSafe for AutoCreatedSubnetworkInfo
impl Send for AutoCreatedSubnetworkInfo
impl Sync for AutoCreatedSubnetworkInfo
impl Unpin for AutoCreatedSubnetworkInfo
impl UnwindSafe for AutoCreatedSubnetworkInfo
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