[][src]Struct google_cloudasset1::ExportAssetsRequest

pub struct ExportAssetsRequest {
    pub asset_types: Option<Vec<String>>,
    pub content_type: Option<String>,
    pub output_config: Option<OutputConfig>,
    pub read_time: Option<String>,
}

Export asset request.

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

asset_types: Option<Vec<String>>

A list of asset types of which to take a snapshot for. For example: "compute.googleapis.com/Disk". If specified, only matching assets will be returned. See Introduction to Cloud Asset Inventory for all supported asset types.

content_type: Option<String>

Asset content type. If not specified, no content but the asset name will be returned.

output_config: Option<OutputConfig>

Required. Output configuration indicating where the results will be output to. All results will be in newline delimited JSON format.

read_time: Option<String>

Timestamp to take an asset snapshot. This can only be set to a timestamp between 2018-10-02 UTC (inclusive) and the current time. If not specified, the current time will be used. Due to delays in resource data collection and indexing, there is a volatile window during which running the same query may get different results.

Trait Implementations

impl RequestValue for ExportAssetsRequest[src]

impl Default for ExportAssetsRequest[src]

impl Clone for ExportAssetsRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ExportAssetsRequest[src]

impl Serialize for ExportAssetsRequest[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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.

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