Struct google_apigee1::api::GoogleCloudApigeeV1Export[][src]

pub struct GoogleCloudApigeeV1Export {
    pub created: Option<String>,
    pub datastore_name: Option<String>,
    pub description: Option<String>,
    pub error: Option<String>,
    pub execution_time: Option<String>,
    pub name: Option<String>,
    pub self_: Option<String>,
    pub state: Option<String>,
    pub updated: Option<String>,
}

Details of an export job.

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

created: Option<String>

Output only. Time the export job was created.

datastore_name: Option<String>

Name of the datastore that is the destination of the export job [datastore]

description: Option<String>

Description of the export job.

error: Option<String>

Output only. Error is set when export fails

execution_time: Option<String>

Output only. Execution time for this export job. If the job is still in progress, it will be set to the amount of time that has elapsed sincecreated, in seconds. Else, it will set to (updated - created), in seconds.

name: Option<String>

Display name of the export job.

self_: Option<String>

Output only. Self link of the export job. A URI that can be used to retrieve the status of an export job. Example: /organizations/myorg/environments/myenv/analytics/exports/9cfc0d85-0f30-46d6-ae6f-318d0cb961bd

state: Option<String>

Output only. Status of the export job. Valid values include enqueued, running, completed, and failed.

updated: Option<String>

Output only. Time the export job was last updated.

Trait Implementations

impl Clone for GoogleCloudApigeeV1Export[src]

impl Debug for GoogleCloudApigeeV1Export[src]

impl Default for GoogleCloudApigeeV1Export[src]

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

impl ResponseResult for GoogleCloudApigeeV1Export[src]

impl Serialize for GoogleCloudApigeeV1Export[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.