[−][src]Struct google_compute1::InterconnectAttachmentMethods
A builder providing access to all methods supported on interconnectAttachment resources.
It is not used directly, but through the Compute hub.
Example
Instantiate a resource builder
extern crate hyper; extern crate hyper_rustls; extern crate yup_oauth2 as oauth2; extern crate google_compute1 as compute1; use std::default::Default; use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage}; use compute1::Compute; let secret: ApplicationSecret = Default::default(); let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate, hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), <MemoryStorage as Default>::default(), None); let mut hub = Compute::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth); // Usually you wouldn't bind this to a variable, but keep calling *CallBuilders* // like `aggregated_list(...)`, `delete(...)`, `get(...)`, `insert(...)`, `list(...)` and `patch(...)` // to build up your call. let rb = hub.interconnect_attachments();
Methods
impl<'a, C, A> InterconnectAttachmentMethods<'a, C, A>[src]
pub fn aggregated_list(
&self,
project: &str
) -> InterconnectAttachmentAggregatedListCall<'a, C, A>[src]
&self,
project: &str
) -> InterconnectAttachmentAggregatedListCall<'a, C, A>
Create a builder to help you perform the following task:
Retrieves an aggregated list of interconnect attachments.
Arguments
project- Project ID for this request.
pub fn patch(
&self,
request: InterconnectAttachment,
project: &str,
region: &str,
interconnect_attachment: &str
) -> InterconnectAttachmentPatchCall<'a, C, A>[src]
&self,
request: InterconnectAttachment,
project: &str,
region: &str,
interconnect_attachment: &str
) -> InterconnectAttachmentPatchCall<'a, C, A>
Create a builder to help you perform the following task:
Updates the specified interconnect attachment with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.
Arguments
request- No description provided.project- Project ID for this request.region- Name of the region scoping this request.interconnectAttachment- Name of the interconnect attachment to patch.
pub fn insert(
&self,
request: InterconnectAttachment,
project: &str,
region: &str
) -> InterconnectAttachmentInsertCall<'a, C, A>[src]
&self,
request: InterconnectAttachment,
project: &str,
region: &str
) -> InterconnectAttachmentInsertCall<'a, C, A>
Create a builder to help you perform the following task:
Creates an InterconnectAttachment in the specified project using the data included in the request.
Arguments
request- No description provided.project- Project ID for this request.region- Name of the region for this request.
pub fn get(
&self,
project: &str,
region: &str,
interconnect_attachment: &str
) -> InterconnectAttachmentGetCall<'a, C, A>[src]
&self,
project: &str,
region: &str,
interconnect_attachment: &str
) -> InterconnectAttachmentGetCall<'a, C, A>
Create a builder to help you perform the following task:
Returns the specified interconnect attachment.
Arguments
project- Project ID for this request.region- Name of the region for this request.interconnectAttachment- Name of the interconnect attachment to return.
pub fn delete(
&self,
project: &str,
region: &str,
interconnect_attachment: &str
) -> InterconnectAttachmentDeleteCall<'a, C, A>[src]
&self,
project: &str,
region: &str,
interconnect_attachment: &str
) -> InterconnectAttachmentDeleteCall<'a, C, A>
Create a builder to help you perform the following task:
Deletes the specified interconnect attachment.
Arguments
project- Project ID for this request.region- Name of the region for this request.interconnectAttachment- Name of the interconnect attachment to delete.
pub fn list(
&self,
project: &str,
region: &str
) -> InterconnectAttachmentListCall<'a, C, A>[src]
&self,
project: &str,
region: &str
) -> InterconnectAttachmentListCall<'a, C, A>
Create a builder to help you perform the following task:
Retrieves the list of interconnect attachments contained within the specified region.
Arguments
project- Project ID for this request.region- Name of the region for this request.
Trait Implementations
impl<'a, C, A> MethodsBuilder for InterconnectAttachmentMethods<'a, C, A>[src]
Auto Trait Implementations
impl<'a, C, A> !Send for InterconnectAttachmentMethods<'a, C, A>
impl<'a, C, A> !Sync for InterconnectAttachmentMethods<'a, C, A>
impl<'a, C, A> Unpin for InterconnectAttachmentMethods<'a, C, A>
impl<'a, C, A> !UnwindSafe for InterconnectAttachmentMethods<'a, C, A>
impl<'a, C, A> !RefUnwindSafe for InterconnectAttachmentMethods<'a, C, A>
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Typeable for T where
T: Any,
T: Any,