[][src]Struct google_compute1::BackendServiceMethods

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

A builder providing access to all methods supported on backendService 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_signed_url_key(...)`, `aggregated_list(...)`, `delete(...)`, `delete_signed_url_key(...)`, `get(...)`, `get_health(...)`, `insert(...)`, `list(...)`, `patch(...)`, `set_security_policy(...)` and `update(...)`
// to build up your call.
let rb = hub.backend_services();

Methods

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

pub fn get_health(
    &self,
    request: ResourceGroupReference,
    project: &str,
    backend_service: &str
) -> BackendServiceGetHealthCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Gets the most recent health check results for this BackendService.

Arguments

  • request - No description provided.
  • project - No description provided.
  • backendService - Name of the BackendService resource to which the queried instance belongs.

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

Create a builder to help you perform the following task:

Deletes the specified BackendService resource.

Arguments

  • project - Project ID for this request.
  • backendService - Name of the BackendService resource to delete.

pub fn update(
    &self,
    request: BackendService,
    project: &str,
    backend_service: &str
) -> BackendServiceUpdateCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information.

Arguments

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

pub fn patch(
    &self,
    request: BackendService,
    project: &str,
    backend_service: &str
) -> BackendServicePatchCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Patches the specified BackendService resource with the data included in the request. There are several restrictions and guidelines to keep in mind when updating a backend service. Read Restrictions and Guidelines for more information. 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.
  • backendService - Name of the BackendService resource to patch.

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

Create a builder to help you perform the following task:

Returns the specified BackendService resource. Gets a list of available backend services.

Arguments

  • project - Project ID for this request.
  • backendService - Name of the BackendService resource to return.

pub fn add_signed_url_key(
    &self,
    request: SignedUrlKey,
    project: &str,
    backend_service: &str
) -> BackendServiceAddSignedUrlKeyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Adds a key for validating requests with signed URLs for this backend service.

Arguments

  • request - No description provided.
  • project - Project ID for this request.
  • backendService - Name of the BackendService resource to which the Signed URL Key should be added. The name should conform to RFC1035.

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

Create a builder to help you perform the following task:

Retrieves the list of all BackendService resources, regional and global, available to the specified project.

Arguments

  • project - Name of the project scoping this request.

pub fn set_security_policy(
    &self,
    request: SecurityPolicyReference,
    project: &str,
    backend_service: &str
) -> BackendServiceSetSecurityPolicyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Sets the security policy for the specified backend service.

Arguments

  • request - No description provided.
  • project - Project ID for this request.
  • backendService - Name of the BackendService resource to which the security policy should be set. The name should conform to RFC1035.

pub fn delete_signed_url_key(
    &self,
    project: &str,
    backend_service: &str,
    key_name: &str
) -> BackendServiceDeleteSignedUrlKeyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Deletes a key for validating requests with signed URLs for this backend service.

Arguments

  • project - Project ID for this request.
  • backendService - Name of the BackendService resource to which the Signed URL Key should be added. The name should conform to RFC1035.
  • keyName - The name of the Signed URL Key to delete.

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

Create a builder to help you perform the following task:

Retrieves the list of BackendService resources available to the specified project.

Arguments

  • project - Project ID for this request.

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

Create a builder to help you perform the following task:

Creates a BackendService resource in the specified project using the data included in the request. There are several restrictions and guidelines to keep in mind when creating a backend service. Read Restrictions and Guidelines for more information.

Arguments

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

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<'a, C, A> !RefUnwindSafe for BackendServiceMethods<'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.