Google Cloud Asset Inventory v1 API - Class QueryResult (3.10.0)

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.

Inheritance

object > QueryResult

Namespace

Google.Cloud.Asset.V1

Assembly

Google.Cloud.Asset.V1.dll

Constructors

QueryResult()

public QueryResult()

QueryResult(QueryResult)

public QueryResult(QueryResult other)
Parameter
NameDescription
otherQueryResult

Properties

NextPageToken

public string NextPageToken { get; set; }

Token to retrieve the next page of the results.

Property Value
TypeDescription
string

Rows

public RepeatedField<Struct> Rows { get; }

Each row hold a query result in the format of Struct.

Property Value
TypeDescription
RepeatedFieldStruct

Schema

public TableSchema Schema { get; set; }

Describes the format of the [rows].

Property Value
TypeDescription
TableSchema

TotalRows

public long TotalRows { get; set; }

Total rows of the whole query results.

Property Value
TypeDescription
long