Show / Hide Table of Contents

Class QueryDataObjectJsonResultSetRowsCollection

Collection of result set rows from the data object query.

Inheritance
object
QueryDataObjectResultSetRowsCollection
QueryDataObjectJsonResultSetRowsCollection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class QueryDataObjectJsonResultSetRowsCollection : QueryDataObjectResultSetRowsCollection

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<object> Items { get; set; }
Property Value
Type Description
List<object>

Array of result set rows.

Remarks

Required

ItemsMetadata

Declaration
[Required(ErrorMessage = "ItemsMetadata is required.")]
[JsonProperty(PropertyName = "itemsMetadata")]
public List<QueryDataObjectResultSetColumnMetadata> ItemsMetadata { get; set; }
Property Value
Type Description
List<QueryDataObjectResultSetColumnMetadata>

Array of QueryDataObjectResultSetColumnMetadata objects that describe the result set columns.

Remarks

Required

QueryExecutionTimeInSeconds

Declaration
[JsonProperty(PropertyName = "queryExecutionTimeInSeconds")]
public double QueryExecutionTimeInSeconds { get; set; }
Property Value
Type Description
double

Time taken for executing the data object query (in seconds). Consider optimizing the query or reducing the target data range, if query execution time is longer.

In this article
Back to top