[][src]Struct google_dataproc1::InstantiateWorkflowTemplateRequest

pub struct InstantiateWorkflowTemplateRequest {
    pub version: Option<i32>,
    pub request_id: Option<String>,
    pub parameters: Option<HashMap<String, String>>,
}

A request to instantiate a workflow template.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

version: Option<i32>

Optional. The version of workflow template to instantiate. If specified, the workflow will be instantiated only if the current version of the workflow template has the supplied version.This option cannot be used to instantiate a previous version of workflow template.

request_id: Option<String>

Optional. A tag that prevents multiple concurrent workflow instances with the same tag from running. This mitigates risk of concurrent instances started due to retries.It is recommended to always set this value to a UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier).The tag must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.

parameters: Option<HashMap<String, String>>

Optional. Map from parameter names to values that should be used for those parameters. Values may not exceed 100 characters.

Trait Implementations

impl RequestValue for InstantiateWorkflowTemplateRequest[src]

impl Clone for InstantiateWorkflowTemplateRequest[src]

impl Default for InstantiateWorkflowTemplateRequest[src]

impl Debug for InstantiateWorkflowTemplateRequest[src]

impl Serialize for InstantiateWorkflowTemplateRequest[src]

impl<'de> Deserialize<'de> for InstantiateWorkflowTemplateRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]