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
Inherited Members
Namespace: Google.Apis.CloudAsset.v1.Data
Assembly: Google.Apis.CloudAsset.v1.dll
Syntax
public class QueryResult : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextPageToken
Token to retrieve the next page of the results.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Rows
Each row hold a query result in the format of Struct
.
Declaration
[JsonProperty("rows")]
public virtual IList<IDictionary<string, object>> Rows { get; set; }
Property Value
Type | Description |
---|---|
IList<IDictionary<string, object>> |
Schema
Describes the format of the [rows].
Declaration
[JsonProperty("schema")]
public virtual TableSchema Schema { get; set; }
Property Value
Type | Description |
---|---|
TableSchema |
TotalRows
Total rows of the whole query results.
Declaration
[JsonProperty("totalRows")]
public virtual long? TotalRows { get; set; }
Property Value
Type | Description |
---|---|
long? |