Show / Hide Table of Contents

Class MySqlSqlText

MySql SQL Text type object.

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

Properties

CommandType

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

SQL event name Example: "SELECT"

Digest

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

digest Example: "323k3k99ua09a90adf"

Remarks

Required

DigestText

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

The normalized statement string. Example: "SELECT username,profile,default_tablespace,temporary_tablespace FROM dba_users"

Remarks

Required

SchemaName

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

Name of Database Schema. Example: "performance_schema"

TimeCollected

Declaration
[Required(ErrorMessage = "TimeCollected is required.")]
[JsonProperty(PropertyName = "timeCollected")]
public DateTime? TimeCollected { get; set; }
Property Value
Type Description
DateTime?

Collection timestamp. Example: "2020-05-06T00:00:00.000Z"

Remarks

Required

In this article
Back to top