#[non_exhaustive]pub enum BindNetwork {
VpcNetwork(String),
VmwareEngineNetwork(String),
}Expand description
Required. The relative resource name of the network to bind to the management DNS zone. This network can be a consumer VPC network or a VMware engine network.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
VpcNetwork(String)
Network to bind is a standard consumer VPC.
Specify the name in the following form for consumer
VPC network: projects/{project}/global/networks/{network_id}.
{project} can either be a project number or a project ID.
VmwareEngineNetwork(String)
Network to bind is a VMware Engine network.
Specify the name in the following form for VMware engine network:
projects/{project}/locations/global/vmwareEngineNetworks/{vmware_engine_network_id}.
{project} can either be a project number or a project ID.
Trait Implementations§
Source§impl Clone for BindNetwork
impl Clone for BindNetwork
Source§fn clone(&self) -> BindNetwork
fn clone(&self) -> BindNetwork
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 BindNetwork
impl Debug for BindNetwork
Source§impl PartialEq for BindNetwork
impl PartialEq for BindNetwork
impl StructuralPartialEq for BindNetwork
Auto Trait Implementations§
impl Freeze for BindNetwork
impl RefUnwindSafe for BindNetwork
impl Send for BindNetwork
impl Sync for BindNetwork
impl Unpin for BindNetwork
impl UnwindSafe for BindNetwork
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