Show / Hide Table of Contents

Class SqlDetails

Details of Sql content which needs to execute to collect Metric Extension data

Inheritance
object
SqlDetails
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 SqlDetails

Properties

Content

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

Sql statement or script file content as base64 encoded string

Remarks

Required

ScriptFileName

Declaration
[JsonProperty(PropertyName = "scriptFileName")]
public string ScriptFileName { get; set; }
Property Value
Type Description
string

If a script needs to be executed, then provide file name of the script

In this article
Back to top