Show / Hide Table of Contents

Class SecurityPolicyEntryStateSummary

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

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

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

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 associated.

Remarks

Required

In this article
Back to top