class Google::Apis::DataprocV1::QueryList

A list of queries to run on a cluster.

Attributes

queries[RW]

Required. The queries to execute. You do not need to end a query expression with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of a Dataproc API snippet that uses a QueryList to specify a HiveJob: “hiveJob”: ` “queryList”: ` “ queries”: [ “query1”, “query2”, “query3;query4”, ] ` ` Corresponds to the JSON property `queries` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataproc_v1/classes.rb, line 2917
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataproc_v1/classes.rb, line 2922
def update!(**args)
  @queries = args[:queries] if args.key?(:queries)
end