Struct google_workflowexecutions1::api::ProjectMethods[][src]

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

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

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_workflowexecutions1 as workflowexecutions1;
 
use std::default::Default;
use oauth2;
use workflowexecutions1::WorkflowExecutions;
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = WorkflowExecutions::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 `locations_workflows_executions_cancel(...)`, `locations_workflows_executions_create(...)`, `locations_workflows_executions_get(...)` and `locations_workflows_executions_list(...)`
// to build up your call.
let rb = hub.projects();

Implementations

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

pub fn locations_workflows_executions_cancel(
    &self,
    request: CancelExecutionRequest,
    name: &str
) -> ProjectLocationWorkflowExecutionCancelCall<'a, C>
[src]

Create a builder to help you perform the following task:

Cancels an execution of the given name.

Arguments

  • request - No description provided.
  • name - Required. Name of the execution to be cancelled. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}

pub fn locations_workflows_executions_create(
    &self,
    request: Execution,
    parent: &str
) -> ProjectLocationWorkflowExecutionCreateCall<'a, C>
[src]

Create a builder to help you perform the following task:

Creates a new execution using the latest revision of the given workflow.

Arguments

  • request - No description provided.
  • parent - Required. Name of the workflow for which an execution should be created. Format: projects/{project}/locations/{location}/workflows/{workflow} The latest revision of the workflow will be used.

pub fn locations_workflows_executions_get(
    &self,
    name: &str
) -> ProjectLocationWorkflowExecutionGetCall<'a, C>
[src]

Create a builder to help you perform the following task:

Returns an execution of the given name.

Arguments

  • name - Required. Name of the execution to be retrieved. Format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}

pub fn locations_workflows_executions_list(
    &self,
    parent: &str
) -> ProjectLocationWorkflowExecutionListCall<'a, C>
[src]

Create a builder to help you perform the following task:

Returns a list of executions which belong to the workflow with the given name. The method returns executions of all workflow revisions. Returned executions are ordered by their start time (newest first).

Arguments

  • parent - Required. Name of the workflow for which the executions should be listed. Format: projects/{project}/locations/{location}/workflows/{workflow}

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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