Show / Hide Table of Contents

Class SecurityPolicyEntryState

The resource represents the state of a specific entry type deployment on a target.

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

Properties

DeploymentStatus

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

The current deployment status of the security policy deployment and the security policy entry associated.

Remarks

Required

DeploymentStatusDetails

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

Details about the current deployment status.

EntryDetails

Declaration
[JsonProperty(PropertyName = "entryDetails")]
public EntryDetails EntryDetails { get; set; }
Property Value
Type Description
EntryDetails

EntryType

Declaration
[Required(ErrorMessage = "EntryType is required.")]
[JsonProperty(PropertyName = "entryType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SecurityPolicyEntryState.EntryTypeEnum? EntryType { get; set; }
Property Value
Type Description
SecurityPolicyEntryState.EntryTypeEnum?

The security policy entry type. Allowed values:

  • FIREWALL_POLICY - The SQL Firewall policy entry type.
  • AUDIT_POLICY - The audit policy entry type.
  • CONFIG - Config changes deployment.
Remarks

Required

Id

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

Unique id of the security policy entry state.

Remarks

Required

SecurityPolicyDeploymentId

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

The OCID of the security policy deployment associated.

SecurityPolicyEntryId

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

The OCID of the security policy entry type associated.

Remarks

Required

TargetId

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

The OCID of the target on which the security policy is deployed.

Remarks

Required

In this article
Back to top