Show / Hide Table of Contents

Class FirewallConfigDetails

Details to update the SQL Firewall configuration.

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

Properties

ExcludeJob

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

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

Status

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

Specifies whether the firewall is enabled or disabled.

ViolationLogAutoPurge

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

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

In this article
Back to top