pub struct Client(/* private fields */);Implementations§
Source§impl Client
impl Client
Sourcepub fn list(&self, resource_uri: impl Into<String>) -> RequestBuilder
pub fn list(&self, resource_uri: impl Into<String>) -> RequestBuilder
List BgpPeer resources by parent
Arguments:
resource_uri: The fully qualified Azure Resource manager identifier of the resource.
Sourcepub fn get(
&self,
resource_uri: impl Into<String>,
bgp_peer_name: impl Into<String>,
) -> RequestBuilder
pub fn get( &self, resource_uri: impl Into<String>, bgp_peer_name: impl Into<String>, ) -> RequestBuilder
Get a BgpPeer
Arguments:
resource_uri: The fully qualified Azure Resource manager identifier of the resource.bgp_peer_name: The name of the BgpPeer
Sourcepub fn create_or_update(
&self,
resource_uri: impl Into<String>,
bgp_peer_name: impl Into<String>,
resource: impl Into<BgpPeer>,
) -> RequestBuilder
pub fn create_or_update( &self, resource_uri: impl Into<String>, bgp_peer_name: impl Into<String>, resource: impl Into<BgpPeer>, ) -> RequestBuilder
Create a BgpPeer
Arguments:
resource_uri: The fully qualified Azure Resource manager identifier of the resource.bgp_peer_name: The name of the BgpPeerresource: Resource create parameters.
Auto Trait Implementations§
impl Freeze for Client
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