Package com.google.cloud.dataplex.v1
Interface SessionEvent.QueryDetailOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SessionEvent.QueryDetail
,SessionEvent.QueryDetail.Builder
- Enclosing class:
- SessionEvent
public static interface SessionEvent.QueryDetailOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getDataProcessedBytes()
The data processed by the query.com.google.protobuf.Duration
getDuration()
Time taken for execution of the query.com.google.protobuf.DurationOrBuilder
getDurationOrBuilder()
Time taken for execution of the query.SessionEvent.QueryDetail.Engine
getEngine()
Query Execution engine.int
getEngineValue()
Query Execution engine.String
getQueryId()
The unique Query id identifying the query.com.google.protobuf.ByteString
getQueryIdBytes()
The unique Query id identifying the query.String
getQueryText()
The query text executed.com.google.protobuf.ByteString
getQueryTextBytes()
The query text executed.long
getResultSizeBytes()
The size of results the query produced.boolean
hasDuration()
Time taken for execution of the query.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getQueryId
String getQueryId()
The unique Query id identifying the query.
string query_id = 1;
- Returns:
- The queryId.
-
getQueryIdBytes
com.google.protobuf.ByteString getQueryIdBytes()
The unique Query id identifying the query.
string query_id = 1;
- Returns:
- The bytes for queryId.
-
getQueryText
String getQueryText()
The query text executed.
string query_text = 2;
- Returns:
- The queryText.
-
getQueryTextBytes
com.google.protobuf.ByteString getQueryTextBytes()
The query text executed.
string query_text = 2;
- Returns:
- The bytes for queryText.
-
getEngineValue
int getEngineValue()
Query Execution engine.
.google.cloud.dataplex.v1.SessionEvent.QueryDetail.Engine engine = 3;
- Returns:
- The enum numeric value on the wire for engine.
-
getEngine
SessionEvent.QueryDetail.Engine getEngine()
Query Execution engine.
.google.cloud.dataplex.v1.SessionEvent.QueryDetail.Engine engine = 3;
- Returns:
- The engine.
-
hasDuration
boolean hasDuration()
Time taken for execution of the query.
.google.protobuf.Duration duration = 4;
- Returns:
- Whether the duration field is set.
-
getDuration
com.google.protobuf.Duration getDuration()
Time taken for execution of the query.
.google.protobuf.Duration duration = 4;
- Returns:
- The duration.
-
getDurationOrBuilder
com.google.protobuf.DurationOrBuilder getDurationOrBuilder()
Time taken for execution of the query.
.google.protobuf.Duration duration = 4;
-
getResultSizeBytes
long getResultSizeBytes()
The size of results the query produced.
int64 result_size_bytes = 5;
- Returns:
- The resultSizeBytes.
-
getDataProcessedBytes
long getDataProcessedBytes()
The data processed by the query.
int64 data_processed_bytes = 6;
- Returns:
- The dataProcessedBytes.
-
-