Show / Hide Table of Contents

Class IngressSecurityListConfiguration

Defines the subnet ingress security list configuration that allowed the traffic.

Inheritance
object
AllowedSecurityConfiguration
IngressSecurityListConfiguration
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 IngressSecurityListConfiguration : AllowedSecurityConfiguration

Properties

SecurityListId

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

The OCID of the security list that allowed the traffic.

Remarks

Required

SecurityRule

Declaration
[Required(ErrorMessage = "SecurityRule is required.")]
[JsonProperty(PropertyName = "securityRule")]
public IngressSecurityRule SecurityRule { get; set; }
Property Value
Type Description
IngressSecurityRule
Remarks

Required

In this article
Back to top