Share via


NetworkSecurityRule Class

 

A Network Security Rule within a Network Security Group.

Namespace:   Microsoft.WindowsAzure.Management.Network.Models
Assembly:  Microsoft.WindowsAzure.Management.Network (in Microsoft.WindowsAzure.Management.Network.dll)

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Management.Network.Models.NetworkSecurityRule

Syntax

public class NetworkSecurityRule
public ref class NetworkSecurityRule 
type NetworkSecurityRule = class end
Public Class NetworkSecurityRule

Constructors

Name Description
System_CAPS_pubmethod NetworkSecurityRule()

Initializes a new instance of the NetworkSecurityRule class.

Properties

Name Description
System_CAPS_pubproperty Action

Required. Allow/Deny. Whether to allow or deny traffic.

System_CAPS_pubproperty DestinationAddressPrefix

Required. CIDR value of Destination IP from which traffic is coming. You can specify star (*) to map all traffic or one of pre-defined TAGs.

System_CAPS_pubproperty DestinationPortRange

Required. Destination Port (single port) or Destination Port Range (separated by “-“) or star (*) for all ports. All numbers are inclusive. Example: 80, 80-80, 80-81, *

System_CAPS_pubproperty IsDefault

Required. Specified if this is a default Network Security Rule.

System_CAPS_pubproperty Name

Required. Name of Rule.

System_CAPS_pubproperty Priority

Required. Priority of the Rule.

System_CAPS_pubproperty Protocol

Required. TCP, UDP, *.

System_CAPS_pubproperty SourceAddressPrefix

Required. CIDR value of Source IP from which traffic is coming. You can specify star (*) to map all traffic or one of pre-defined TAGs

System_CAPS_pubproperty SourcePortRange

Required. Source Port (single port) or Source Port Range (separated by “-“) or star (*) for all ports. All numbers are inclusive. Example: 80, 80-80, 80-81, *

System_CAPS_pubproperty State

Required. The state of the Network Security Rule

System_CAPS_pubproperty Type

Required. Type of Rule. Possible values: Inbound (to be evaluated against ingress traffic), Outbound (to be evaluated against egress traffic).

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.Management.Network.Models Namespace

Return to top