Struct google_cloudasset1_beta1::ExportAssetsRequest[][src]

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

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

A list of asset types of which to take a snapshot for. For example: "google.compute.disk". If specified, only matching assets will be returned.

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.

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

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

Trait Implementations

impl Default for ExportAssetsRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for ExportAssetsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ExportAssetsRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ExportAssetsRequest
[src]

Auto Trait Implementations