Class: Google::Cloud::Dataproc::V1::QueryList
- Inherits:
-
Object
- Object
- Google::Cloud::Dataproc::V1::QueryList
- Defined in:
- lib/google/cloud/dataproc/v1/doc/google/cloud/dataproc/v1/jobs.rb
Overview
A list of queries to run on a cluster.
Instance Attribute Summary collapse
-
#queries ⇒ Array<String>
Required.
Instance Attribute Details
#queries ⇒ Array<String>
Returns 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",
]
}
}
199 |
# File 'lib/google/cloud/dataproc/v1/doc/google/cloud/dataproc/v1/jobs.rb', line 199 class QueryList; end |