Show / Hide Table of Contents

Class SqlFirewallAllowedSqlDimensions

The dimensions available for SQL Firewall allow SQL analytics.

Inheritance
object
SqlFirewallAllowedSqlDimensions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class SqlFirewallAllowedSqlDimensions

Properties

DbUserName

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

The database user name.

LifecycleState

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

The current state of the SQL Firewall allowed SQL.

SqlFirewallPolicyId

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

The OCID of the SQL Firewall policy corresponding to the SQL Firewall allowed SQL.

SqlLevel

Declaration
[JsonProperty(PropertyName = "sqlLevel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SqlFirewallAllowedSqlDimensions.SqlLevelEnum? SqlLevel { get; set; }
Property Value
Type Description
SqlFirewallAllowedSqlDimensions.SqlLevelEnum?

Specifies the level of SQL included for this SQL Firewall policy. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.

In this article
Back to top