Show / Hide Table of Contents

Class DataObjectQuery

Information required to form and execute query on a data object.

Inheritance
object
DataObjectQuery
DataObjectStandardQuery
DataObjectTemplatizedQuery
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
[JsonConverter(typeof(DataObjectQueryModelConverter))]
public class DataObjectQuery

Properties

BindParams

Declaration
[JsonProperty(PropertyName = "bindParams")]
public List<DataObjectBindParameter> BindParams { get; set; }
Property Value
Type Description
List<DataObjectBindParameter>

List of bind parameters to be applied in the query.

QueryExecutionTimeoutInSeconds

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

Timeout (in seconds) to be set for the data object query execution.

In this article
Back to top