Struct google_compute1::api::BackendServiceMethods[][src]

pub struct BackendServiceMethods<'a, C> where
    C: '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;
use compute1::Compute;
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = Compute::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), 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();

Implementations

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

pub fn add_signed_url_key(
    &self,
    request: SignedUrlKey,
    project: &str,
    backend_service: &str
) -> BackendServiceAddSignedUrlKeyCall<'a, C>
[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>
[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 delete(
    &self,
    project: &str,
    backend_service: &str
) -> BackendServiceDeleteCall<'a, C>
[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 delete_signed_url_key(
    &self,
    project: &str,
    backend_service: &str,
    key_name: &str
) -> BackendServiceDeleteSignedUrlKeyCall<'a, C>
[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 get(
    &self,
    project: &str,
    backend_service: &str
) -> BackendServiceGetCall<'a, C>
[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 get_health(
    &self,
    request: ResourceGroupReference,
    project: &str,
    backend_service: &str
) -> BackendServiceGetHealthCall<'a, C>
[src]

Create a builder to help you perform the following task:

Gets the most recent health check results for this BackendService.

Example request body:

{ "group": "/zones/us-east1-b/instanceGroups/lb-backend-example" }

Arguments

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

pub fn insert(
    &self,
    request: BackendService,
    project: &str
) -> BackendServiceInsertCall<'a, C>
[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. For more information, see Backend services overview.

Arguments

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

pub fn list(&self, project: &str) -> BackendServiceListCall<'a, C>[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 patch(
    &self,
    request: BackendService,
    project: &str,
    backend_service: &str
) -> BackendServicePatchCall<'a, C>
[src]

Create a builder to help you perform the following task:

Patches the specified BackendService resource with the data included in the request. For more information, see Backend services overview. 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 set_security_policy(
    &self,
    request: SecurityPolicyReference,
    project: &str,
    backend_service: &str
) -> BackendServiceSetSecurityPolicyCall<'a, C>
[src]

Create a builder to help you perform the following task:

Sets the Google Cloud Armor security policy for the specified backend service. For more information, see Google Cloud Armor Overview

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 update(
    &self,
    request: BackendService,
    project: &str,
    backend_service: &str
) -> BackendServiceUpdateCall<'a, C>
[src]

Create a builder to help you perform the following task:

Updates the specified BackendService resource with the data included in the request. For more information, see Backend services overview.

Arguments

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

Trait Implementations

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

Auto Trait Implementations

impl<'a, C> !RefUnwindSafe for BackendServiceMethods<'a, C>[src]

impl<'a, C> !Send for BackendServiceMethods<'a, C>[src]

impl<'a, C> !Sync for BackendServiceMethods<'a, C>[src]

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

impl<'a, C> !UnwindSafe for BackendServiceMethods<'a, C>[src]

Blanket Implementations

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

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

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

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

impl<T> Instrument 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.