Google Cloud Dataproc v1 API - Class QueryList (5.10.0)

public sealed class QueryList : IMessage<QueryList>, IEquatable<QueryList>, IDeepCloneable<QueryList>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Dataproc v1 API class QueryList.

A list of queries to run on a cluster.

Inheritance

object > QueryList

Namespace

Google.Cloud.Dataproc.V1

Assembly

Google.Cloud.Dataproc.V1.dll

Constructors

QueryList()

public QueryList()

QueryList(QueryList)

public QueryList(QueryList other)
Parameter
NameDescription
otherQueryList

Properties

Queries

public RepeatedField<string> Queries { get; }

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",
    ]
  }
}
Property Value
TypeDescription
RepeatedFieldstring