public sealed class QueryResult : IMessage<QueryResult>, IEquatable<QueryResult>, IDeepCloneable<QueryResult>, IBufferMessage, IMessage
Execution results of the query.
The result is formatted as rows represented by BigQuery compatible [schema]. When pagination is necessary, it will contains the page token to retrieve the results of following pages.
Implements
IMessage<QueryResult>, IEquatable<QueryResult>, IDeepCloneable<QueryResult>, IBufferMessage, IMessageNamespace
Google.Cloud.Asset.V1Assembly
Google.Cloud.Asset.V1.dll
Constructors
QueryResult()
public QueryResult()
QueryResult(QueryResult)
public QueryResult(QueryResult other)
Parameter | |
---|---|
Name | Description |
other | QueryResult |
Properties
NextPageToken
public string NextPageToken { get; set; }
Token to retrieve the next page of the results.
Property Value | |
---|---|
Type | Description |
String |
Rows
public RepeatedField<Struct> Rows { get; }
Each row hold a query result in the format of Struct
.
Property Value | |
---|---|
Type | Description |
RepeatedField<Struct> |
Schema
public TableSchema Schema { get; set; }
Describes the format of the [rows].
Property Value | |
---|---|
Type | Description |
TableSchema |
TotalRows
public long TotalRows { get; set; }
Total rows of the whole query results.
Property Value | |
---|---|
Type | Description |
Int64 |