Show / Hide Table of Contents

Class SqlMonitorConfiguration

Request configuration details for the SQL monitor type.

Inheritance
object
MonitorConfiguration
SqlMonitorConfiguration
Inherited Members
MonitorConfiguration.IsFailureRetried
MonitorConfiguration.DnsConfiguration
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmsyntheticsService.Models
Assembly: OCI.DotNetSDK.Apmsynthetics.dll
Syntax
public class SqlMonitorConfiguration : MonitorConfiguration

Properties

ConnectionString

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

Database connection string.

DatabaseAuthenticationDetails

Declaration
[JsonProperty(PropertyName = "databaseAuthenticationDetails")]
public BasicAuthenticationDetails DatabaseAuthenticationDetails { get; set; }
Property Value
Type Description
BasicAuthenticationDetails

DatabaseConnectionType

Declaration
[JsonProperty(PropertyName = "databaseConnectionType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseConnectionType? DatabaseConnectionType { get; set; }
Property Value
Type Description
DatabaseConnectionType?

Database connection type. Only CUSTOM_JDBC is supported for MYSQL database type.

DatabaseRole

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

Database role.

DatabaseType

Declaration
[JsonProperty(PropertyName = "databaseType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseType? DatabaseType { get; set; }
Property Value
Type Description
DatabaseType?

Database type.

DatabaseWalletDetails

Declaration
[JsonProperty(PropertyName = "databaseWalletDetails")]
public DatabaseWalletDetails DatabaseWalletDetails { get; set; }
Property Value
Type Description
DatabaseWalletDetails

Query

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

SQL query to be executed.

In this article
Back to top