Show / Hide Table of Contents

Class SqlUpdateQueryProperties

Query Properties applicable to SQL type of collection method

Inheritance
object
MetricExtensionUpdateQueryProperties
SqlUpdateQueryProperties
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 SqlUpdateQueryProperties : MetricExtensionUpdateQueryProperties

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
[JsonProperty(PropertyName = "sqlDetails")]
public SqlDetails SqlDetails { get; set; }
Property Value
Type Description
SqlDetails

SqlType

Declaration
[JsonProperty(PropertyName = "sqlType")]
[JsonConverter(typeof(StringEnumConverter))]
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

In this article
Back to top