Class: Google::Cloud::Dataproc::V1::QueryList

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/dataproc/v1/jobs.rb

Overview

A list of queries to run on a cluster.

Instance Attribute Summary collapse

Instance Attribute Details

#queries::Array<::String>

Returns 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",
    ]
  }
}.

Returns:

  • (::Array<::String>)

    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",
        ]
      }
    }
    


258
259
260
261
# File 'proto_docs/google/cloud/dataproc/v1/jobs.rb', line 258

class QueryList
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods
end