NetworkSecurityGroupRule Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A network security group rule to apply to an inbound endpoint.
public class NetworkSecurityGroupRule : System.ClientModel.Primitives.IJsonModel<Azure.Compute.Batch.NetworkSecurityGroupRule>, System.ClientModel.Primitives.IPersistableModel<Azure.Compute.Batch.NetworkSecurityGroupRule>
type NetworkSecurityGroupRule = class
interface IJsonModel<NetworkSecurityGroupRule>
interface IPersistableModel<NetworkSecurityGroupRule>
Public Class NetworkSecurityGroupRule
Implements IJsonModel(Of NetworkSecurityGroupRule), IPersistableModel(Of NetworkSecurityGroupRule)
- Inheritance
-
NetworkSecurityGroupRule
- Implements
Constructors
NetworkSecurityGroupRule(Int32, NetworkSecurityGroupRuleAccess, String) |
Initializes a new instance of NetworkSecurityGroupRule. |
Properties
Access |
The action that should be taken for a specified IP address, subnet range or tag. |
Priority |
The priority for this rule. Priorities within a Pool must be unique and are evaluated in order of priority. The lower the number the higher the priority. For example, rules could be specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes precedence over the rule that has an order of 250. Allowed priorities are 150 to 4096. If any reserved or duplicate values are provided the request fails with HTTP status code 400. |
SourceAddressPrefix |
The source address prefix or tag to match for the rule. Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400. |
SourcePortRanges |
The source port ranges to match for the rule. Valid values are '' (for all ports 0 - 65535), a specific port (i.e. 22), or a port range (i.e. 100-200). The ports must be in the range of 0 to 65535. Each entry in this collection must not overlap any other entry (either a range or an individual port). If any other values are provided the request fails with HTTP status code 400. The default value is ''. |
Explicit Interface Implementations
IJsonModel<NetworkSecurityGroupRule>.Create(Utf8JsonReader, ModelReaderWriterOptions) |
Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model. |
IJsonModel<NetworkSecurityGroupRule>.Write(Utf8JsonWriter, ModelReaderWriterOptions) |
Writes the model to the provided Utf8JsonWriter. |
IPersistableModel<NetworkSecurityGroupRule>.Create(BinaryData, ModelReaderWriterOptions) |
Converts the provided BinaryData into a model. |
IPersistableModel<NetworkSecurityGroupRule>.GetFormatFromOptions(ModelReaderWriterOptions) |
Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service. |
IPersistableModel<NetworkSecurityGroupRule>.Write(ModelReaderWriterOptions) |
Writes the model into a BinaryData. |
Applies to
Azure SDK for .NET