Show / Hide Table of Contents

Class UpdateSqlFirewallConfigDetails

Details to update the SQL Firewall config.

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

Properties

ExcludeJob

Declaration
[JsonProperty(PropertyName = "excludeJob")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateSqlFirewallConfigDetails.ExcludeJobEnum? ExcludeJob { get; set; }
Property Value
Type Description
UpdateSqlFirewallConfigDetails.ExcludeJobEnum?

Specifies whether the firewall should include or exclude the database internal job activities.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateSqlFirewallConfigDetails.StatusEnum? Status { get; set; }
Property Value
Type Description
UpdateSqlFirewallConfigDetails.StatusEnum?

Specifies whether the firewall is enabled or disabled on the target database.

ViolationLogAutoPurge

Declaration
[JsonProperty(PropertyName = "violationLogAutoPurge")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateSqlFirewallConfigDetails.ViolationLogAutoPurgeEnum? ViolationLogAutoPurge { get; set; }
Property Value
Type Description
UpdateSqlFirewallConfigDetails.ViolationLogAutoPurgeEnum?

Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.

In this article
Back to top