pub struct SubscriptionNetworking {
pub deployment_cidr: Option<String>,
pub vpc_id: Option<String>,
pub subnet_id: Option<String>,
pub security_group_id: Option<String>,
}Expand description
Networking configuration in a subscription region
Fields§
§deployment_cidr: Option<String>Deployment CIDR.
Wire field is deploymentCIDR (capital CIDR), so an explicit rename is
needed — rename_all = "camelCase" would produce deploymentCidr and
silently drop the real value (same casing pitfall as #108/#121).
vpc_id: Option<String>VPC ID
subnet_id: Option<String>Subnet ID
security_group_id: Option<String>Security group ID associated with the deployment.
Trait Implementations§
Source§impl Clone for SubscriptionNetworking
impl Clone for SubscriptionNetworking
Source§fn clone(&self) -> SubscriptionNetworking
fn clone(&self) -> SubscriptionNetworking
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SubscriptionNetworking
impl Debug for SubscriptionNetworking
Source§impl<'de> Deserialize<'de> for SubscriptionNetworking
impl<'de> Deserialize<'de> for SubscriptionNetworking
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
Auto Trait Implementations§
impl Freeze for SubscriptionNetworking
impl RefUnwindSafe for SubscriptionNetworking
impl Send for SubscriptionNetworking
impl Sync for SubscriptionNetworking
impl Unpin for SubscriptionNetworking
impl UnsafeUnpin for SubscriptionNetworking
impl UnwindSafe for SubscriptionNetworking
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