pub struct Client(/* private fields */);Implementations§
source§impl Client
impl Client
sourcepub fn get(
&self,
resource_group_name: impl Into<String>,
workspace_name: impl Into<String>,
subscription_id: impl Into<String>,
peering_name: impl Into<String>
) -> RequestBuilder
pub fn get( &self, resource_group_name: impl Into<String>, workspace_name: impl Into<String>, subscription_id: impl Into<String>, peering_name: impl Into<String> ) -> RequestBuilder
Gets the workspace vNet Peering.
Arguments:
resource_group_name: The name of the resource group. The name is case insensitive.workspace_name: The name of the workspace.subscription_id: The ID of the target subscription.peering_name: The name of the workspace vNet peering.
sourcepub fn create_or_update(
&self,
virtual_network_peering_parameters: impl Into<VirtualNetworkPeering>,
resource_group_name: impl Into<String>,
workspace_name: impl Into<String>,
subscription_id: impl Into<String>,
peering_name: impl Into<String>
) -> RequestBuilder
pub fn create_or_update( &self, virtual_network_peering_parameters: impl Into<VirtualNetworkPeering>, resource_group_name: impl Into<String>, workspace_name: impl Into<String>, subscription_id: impl Into<String>, peering_name: impl Into<String> ) -> RequestBuilder
Creates vNet Peering for workspace.
Arguments:
virtual_network_peering_parameters: Parameters supplied to the create workspace vNet Peering.resource_group_name: The name of the resource group. The name is case insensitive.workspace_name: The name of the workspace.subscription_id: The ID of the target subscription.peering_name: The name of the workspace vNet peering.
sourcepub fn delete(
&self,
resource_group_name: impl Into<String>,
workspace_name: impl Into<String>,
subscription_id: impl Into<String>,
peering_name: impl Into<String>
) -> RequestBuilder
pub fn delete( &self, resource_group_name: impl Into<String>, workspace_name: impl Into<String>, subscription_id: impl Into<String>, peering_name: impl Into<String> ) -> RequestBuilder
Deletes the workspace vNetPeering.
Arguments:
resource_group_name: The name of the resource group. The name is case insensitive.workspace_name: The name of the workspace.subscription_id: The ID of the target subscription.peering_name: The name of the workspace vNet peering.
sourcepub fn list_by_workspace(
&self,
resource_group_name: impl Into<String>,
workspace_name: impl Into<String>,
subscription_id: impl Into<String>
) -> RequestBuilder
pub fn list_by_workspace( &self, resource_group_name: impl Into<String>, workspace_name: impl Into<String>, subscription_id: impl Into<String> ) -> RequestBuilder
Lists the workspace vNet Peerings.
Arguments:
resource_group_name: The name of the resource group. The name is case insensitive.workspace_name: The name of the workspace.subscription_id: The ID of the target subscription.
Auto Trait Implementations§
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
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