Struct gapi_grpc::google::cloud::bigquery::migration::v2alpha::MigrationWorkflow[][src]

pub struct MigrationWorkflow {
    pub name: String,
    pub display_name: String,
    pub tasks: HashMap<String, MigrationTask>,
    pub state: i32,
    pub create_time: Option<Timestamp>,
    pub last_update_time: Option<Timestamp>,
}

A migration workflow which specifies what needs to be done for an EDW migration.

Fields

name: String

Output only. Immutable. The unique identifier for the migration workflow. The ID is server-generated.

Example: projects/123/locations/us/workflows/345

display_name: String

The display name of the workflow. This can be set to give a workflow a descriptive name. There is no guarantee or enforcement of uniqueness.

tasks: HashMap<String, MigrationTask>

The tasks in a workflow in a named map. The name (i.e. key) has no meaning and is merely a convenient way to address a specific task in a workflow.

state: i32

Output only. That status of the workflow.

create_time: Option<Timestamp>

Time when the workflow was created.

last_update_time: Option<Timestamp>

Time when the workflow was last updated.

Implementations

impl MigrationWorkflow[src]

pub fn state(&self) -> State[src]

Returns the enum value of state, or the default if the field is set to an invalid enum value.

pub fn set_state(&mut self, value: State)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for MigrationWorkflow[src]

impl Debug for MigrationWorkflow[src]

impl Default for MigrationWorkflow[src]

impl Message for MigrationWorkflow[src]

impl PartialEq<MigrationWorkflow> for MigrationWorkflow[src]

impl StructuralPartialEq for MigrationWorkflow[src]

Auto Trait Implementations

impl RefUnwindSafe for MigrationWorkflow

impl Send for MigrationWorkflow

impl Sync for MigrationWorkflow

impl Unpin for MigrationWorkflow

impl UnwindSafe for MigrationWorkflow

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> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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 = 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]