Show / Hide Table of Contents

Class SqlQueryProperties

Query Properties applicable to SQL type of collection method

Inheritance
object
MetricExtensionQueryProperties
SqlQueryProperties
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class SqlQueryProperties : MetricExtensionQueryProperties

Properties

InParamDetails

Declaration
[JsonProperty(PropertyName = "inParamDetails")]
public List<SqlInParamDetails> InParamDetails { get; set; }
Property Value
Type Description
List<SqlInParamDetails>

List of values and position of PL/SQL procedure IN parameters

OutParamDetails

Declaration
[JsonProperty(PropertyName = "outParamDetails")]
public SqlOutParamDetails OutParamDetails { get; set; }
Property Value
Type Description
SqlOutParamDetails

SqlDetails

Declaration
[Required(ErrorMessage = "SqlDetails is required.")]
[JsonProperty(PropertyName = "sqlDetails")]
public SqlDetails SqlDetails { get; set; }
Property Value
Type Description
SqlDetails
Remarks

Required

SqlType

Declaration
[Required(ErrorMessage = "SqlType is required.")]
[JsonProperty(PropertyName = "sqlType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SqlQueryTypes? SqlType { get; set; }
Property Value
Type Description
SqlQueryTypes?

Type of SQL data collection method i.e. either a Statement or SQL Script File

Remarks

Required

In this article
Back to top