Show / Hide Table of Contents

Class FirewallConfig

The SQL Firewall related configurations.

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

Properties

ExcludeJob

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

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

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FirewallConfig.StatusEnum? Status { get; set; }
Property Value
Type Description
FirewallConfig.StatusEnum?

Specifies if the firewall is enabled or disabled.

Remarks

Required

TimeStatusUpdated

Declaration
[JsonProperty(PropertyName = "timeStatusUpdated")]
public DateTime? TimeStatusUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the firewall configuration was last updated, in the format defined by RFC3339.

ViolationLogAutoPurge

Declaration
[Required(ErrorMessage = "ViolationLogAutoPurge is required.")]
[JsonProperty(PropertyName = "violationLogAutoPurge")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FirewallConfig.ViolationLogAutoPurgeEnum? ViolationLogAutoPurge { get; set; }
Property Value
Type Description
FirewallConfig.ViolationLogAutoPurgeEnum?

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

Remarks

Required

In this article
Back to top