[][src]Struct google_compute1::NetworkMethods

pub struct NetworkMethods<'a, C, A> where
    C: 'a,
    A: 'a, 
{ /* fields omitted */ }

A builder providing access to all methods supported on network 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 `add_peering(...)`, `delete(...)`, `get(...)`, `insert(...)`, `list(...)`, `patch(...)`, `remove_peering(...)` and `switch_to_custom_mode(...)`
// to build up your call.
let rb = hub.networks();

Methods

impl<'a, C, A> NetworkMethods<'a, C, A>[src]

pub fn add_peering(
    &self,
    request: NetworksAddPeeringRequest,
    project: &str,
    network: &str
) -> NetworkAddPeeringCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Adds a peering to the specified network.

Arguments

  • request - No description provided.
  • project - Project ID for this request.
  • network - Name of the network resource to add peering to.

pub fn get(&self, project: &str, network: &str) -> NetworkGetCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Returns the specified network. Gets a list of available networks by making a list() request.

Arguments

  • project - Project ID for this request.
  • network - Name of the network to return.

pub fn insert(
    &self,
    request: Network,
    project: &str
) -> NetworkInsertCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Creates a network in the specified project using the data included in the request.

Arguments

  • request - No description provided.
  • project - Project ID for this request.

pub fn switch_to_custom_mode(
    &self,
    project: &str,
    network: &str
) -> NetworkSwitchToCustomModeCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Switches the network mode from auto subnet mode to custom subnet mode.

Arguments

  • project - Project ID for this request.
  • network - Name of the network to be updated.

pub fn patch(
    &self,
    request: Network,
    project: &str,
    network: &str
) -> NetworkPatchCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Patches the specified network with the data included in the request. Only the following fields can be modified: routingConfig.routingMode.

Arguments

  • request - No description provided.
  • project - Project ID for this request.
  • network - Name of the network to update.

pub fn remove_peering(
    &self,
    request: NetworksRemovePeeringRequest,
    project: &str,
    network: &str
) -> NetworkRemovePeeringCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Removes a peering from the specified network.

Arguments

  • request - No description provided.
  • project - Project ID for this request.
  • network - Name of the network resource to remove peering from.

pub fn delete(
    &self,
    project: &str,
    network: &str
) -> NetworkDeleteCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Deletes the specified network.

Arguments

  • project - Project ID for this request.
  • network - Name of the network to delete.

pub fn list(&self, project: &str) -> NetworkListCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Retrieves the list of networks available to the specified project.

Arguments

  • project - Project ID for this request.

Trait Implementations

impl<'a, C, A> MethodsBuilder for NetworkMethods<'a, C, A>[src]

Auto Trait Implementations

impl<'a, C, A> !Send for NetworkMethods<'a, C, A>

impl<'a, C, A> Unpin for NetworkMethods<'a, C, A>

impl<'a, C, A> !Sync for NetworkMethods<'a, C, A>

impl<'a, C, A> !UnwindSafe for NetworkMethods<'a, C, A>

impl<'a, C, A> !RefUnwindSafe for NetworkMethods<'a, C, A>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.