Show / Hide Table of Contents

Class NsgConfiguration

Defines the network security group configuration that allowed the traffic.

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

Properties

NsgId

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

The OCID of the network security group that allowed the traffic.

Remarks

Required

SecurityRule

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

Required

In this article
Back to top