[][src]Struct google_cloudfunctions1::ProjectMethods

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

A builder providing access to all methods supported on project resources. It is not used directly, but through the CloudFunctions hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_cloudfunctions1 as cloudfunctions1;
 
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use cloudfunctions1::CloudFunctions;
 
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 = CloudFunctions::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 `locations_functions_call(...)`, `locations_functions_create(...)`, `locations_functions_delete(...)`, `locations_functions_generate_download_url(...)`, `locations_functions_generate_upload_url(...)`, `locations_functions_get(...)`, `locations_functions_get_iam_policy(...)`, `locations_functions_list(...)`, `locations_functions_patch(...)`, `locations_functions_set_iam_policy(...)`, `locations_functions_test_iam_permissions(...)` and `locations_list(...)`
// to build up your call.
let rb = hub.projects();

Methods

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

pub fn locations_functions_set_iam_policy(
    &self,
    request: SetIamPolicyRequest,
    resource: &str
) -> ProjectLocationFunctionSetIamPolicyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Sets the IAM access control policy on the specified function. Replaces any existing policy.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field.

pub fn locations_list(&self, name: &str) -> ProjectLocationListCall<'a, C, A>[src]

Create a builder to help you perform the following task:

Lists information about the supported locations for this service.

Arguments

  • name - The resource that owns the locations collection, if applicable.

pub fn locations_functions_delete(
    &self,
    name: &str
) -> ProjectLocationFunctionDeleteCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Deletes a function with the given name from the specified project. If the given function is used by some trigger, the trigger will be updated to remove this function.

Arguments

  • name - The name of the function which should be deleted.

pub fn locations_functions_get_iam_policy(
    &self,
    resource: &str
) -> ProjectLocationFunctionGetIamPolicyCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Gets the IAM access control policy for a function. Returns an empty policy if the function exists and does not have a policy set.

Arguments

  • resource - REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field.

pub fn locations_functions_get(
    &self,
    name: &str
) -> ProjectLocationFunctionGetCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns a function with the given name from the requested project.

Arguments

  • name - The name of the function which details should be obtained.

pub fn locations_functions_test_iam_permissions(
    &self,
    request: TestIamPermissionsRequest,
    resource: &str
) -> ProjectLocationFunctionTestIamPermissionCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Tests the specified permissions against the IAM access control policy for a function. If the function does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Arguments

  • request - No description provided.
  • resource - REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field.

pub fn locations_functions_create(
    &self,
    request: CloudFunction,
    location: &str
) -> ProjectLocationFunctionCreateCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Creates a new function. If a function with the given name already exists in the specified project, the long running operation will return ALREADY_EXISTS error.

Arguments

  • request - No description provided.
  • location - The project and location in which the function should be created, specified in the format projects/*/locations/*

pub fn locations_functions_patch(
    &self,
    request: CloudFunction,
    name: &str
) -> ProjectLocationFunctionPatchCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Updates existing function.

Arguments

  • request - No description provided.
  • name - A user-defined name of the function. Function names must be unique globally and match pattern projects/*/locations/*/functions/*

pub fn locations_functions_generate_upload_url(
    &self,
    request: GenerateUploadUrlRequest,
    parent: &str
) -> ProjectLocationFunctionGenerateUploadUrlCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns a signed URL for uploading a function source code. For more information about the signed URL usage see: https://cloud.google.com/storage/docs/access-control/signed-urls. Once the function source code upload is complete, the used signed URL should be provided in CreateFunction or UpdateFunction request as a reference to the function source code.

When uploading source code to the generated signed URL, please follow these restrictions:

  • Source file type should be a zip file.
  • Source file size should not exceed 100MB limit.
  • No credentials should be attached - the signed URLs provide access to the target bucket using internal service identity; if credentials were attached, the identity from the credentials would be used, but that identity does not have permissions to upload files to the URL.

When making a HTTP PUT request, these two headers need to be specified:

  • content-type: application/zip
  • x-goog-content-length-range: 0,104857600

And this header SHOULD NOT be specified:

  • Authorization: Bearer YOUR_TOKEN

Arguments

  • request - No description provided.
  • parent - The project and location in which the Google Cloud Storage signed URL should be generated, specified in the format projects/*/locations/*.

pub fn locations_functions_call(
    &self,
    request: CallFunctionRequest,
    name: &str
) -> ProjectLocationFunctionCallCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Synchronously invokes a deployed Cloud Function. To be used for testing purposes as very limited traffic is allowed. For more information on the actual limits, refer to Rate Limits.

Arguments

  • request - No description provided.
  • name - The name of the function to be called.

pub fn locations_functions_generate_download_url(
    &self,
    request: GenerateDownloadUrlRequest,
    name: &str
) -> ProjectLocationFunctionGenerateDownloadUrlCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns a signed URL for downloading deployed function source code. The URL is only valid for a limited period and should be used within minutes after generation. For more information about the signed URL usage see: https://cloud.google.com/storage/docs/access-control/signed-urls

Arguments

  • request - No description provided.
  • name - The name of function for which source code Google Cloud Storage signed URL should be generated.

pub fn locations_functions_list(
    &self,
    parent: &str
) -> ProjectLocationFunctionListCall<'a, C, A>
[src]

Create a builder to help you perform the following task:

Returns a list of functions that belong to the requested project.

Arguments

  • parent - The project and location from which the function should be listed, specified in the format projects/*/locations/* If you want to list functions in all locations, use "-" in place of a location.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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