Struct google_dataproc1::QueryList[][src]

pub struct QueryList {
    pub queries: Option<Vec<String>>,
}

A list of queries to run on a cluster.

This type is not used in any activity, and only used as part of another schema.

Fields

Required. The queries to execute. You do not need to terminate a query with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of an Cloud Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": [ "query1", "query2", "query3;query4", ] } }

Trait Implementations

impl Default for QueryList
[src]

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

impl Clone for QueryList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QueryList
[src]

Formats the value using the given formatter. Read more

impl Part for QueryList
[src]

Auto Trait Implementations

impl Send for QueryList

impl Sync for QueryList