Show / Hide Table of Contents

Class DeniedSecurityActionDetails

Defines details for the security action taken on denied traffic.

Inheritance
object
DeniedSecurityActionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.dll
Syntax
public class DeniedSecurityActionDetails

Properties

EvaluatedNsgIds

Declaration
[JsonProperty(PropertyName = "evaluatedNsgIds")]
public List<string> EvaluatedNsgIds { get; set; }
Property Value
Type Description
List<string>

List of OCIDs of evaluated network security groups associated with the OCI resource's VNIC.

EvaluatedSecurityListIds

Declaration
[JsonProperty(PropertyName = "evaluatedSecurityListIds")]
public List<string> EvaluatedSecurityListIds { get; set; }
Property Value
Type Description
List<string>

The list of OCIDs of evaluated security lists associcated with the OCI resource's subnet.

IsRestrictedOrPartial

Declaration
[Required(ErrorMessage = "IsRestrictedOrPartial is required.")]
[JsonProperty(PropertyName = "isRestrictedOrPartial")]
public bool? IsRestrictedOrPartial { get; set; }
Property Value
Type Description
bool?

If true, the evaluated security list and network security group ID details are incomplete.

Remarks

Required

In this article
Back to top