public sealed class QueryResult : IMessage<QueryResult>, IEquatable<QueryResult>, IDeepCloneable<QueryResult>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Asset Inventory v1 API class QueryResult.
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
IMessageQueryResult, IEquatableQueryResult, IDeepCloneableQueryResult, 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 |
RepeatedFieldStruct |
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 |
long |