public interface QueryListOrBuilder extends MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getQueries(int index)
Required.
|
ByteString |
getQueriesBytes(int index)
Required.
|
int |
getQueriesCount()
Required.
|
List<String> |
getQueriesList()
Required.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
isInitialized
List<String> getQueriesList()
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", ] } }
repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];
int getQueriesCount()
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", ] } }
repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];
String getQueries(int index)
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", ] } }
repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];
index
- The index of the element to return.ByteString getQueriesBytes(int index)
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", ] } }
repeated string queries = 1 [(.google.api.field_behavior) = REQUIRED];
index
- The index of the value to return.Copyright © 2022 Google LLC. All rights reserved.