Show / Hide Table of Contents

Class EgressSecurityListConfiguration

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

Inheritance
object
AllowedSecurityConfiguration
EgressSecurityListConfiguration
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 EgressSecurityListConfiguration : 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 EgressSecurityRule SecurityRule { get; set; }
Property Value
Type Description
EgressSecurityRule
Remarks

Required

In this article
Back to top