Show / Hide Table of Contents

Class BulkCreateSqlFirewallAllowedSqlsDetails

The details used to append the violation logs as allowed SQLs

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

Properties

LogType

Declaration
[Required(ErrorMessage = "LogType is required.")]
[JsonProperty(PropertyName = "logType")]
[JsonConverter(typeof(StringEnumConverter))]
public LogType? LogType { get; set; }
Property Value
Type Description
LogType?

The type of log to be added as an allowed sql.

Remarks

Required

Selection

Declaration
[Required(ErrorMessage = "Selection is required.")]
[JsonProperty(PropertyName = "selection")]
public SelectionDetails Selection { get; set; }
Property Value
Type Description
SelectionDetails
Remarks

Required

SqlFirewallPolicyId

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

The OCID of the SQL firewall policy where new allowed SQLs needs to be added.

Remarks

Required

In this article
Back to top