Class SourceIpAddressCondition
An access control rule condition that requires a match on the specified source IP address or address range.
Inherited Members
Namespace: Oci.FusionappsService.Models
Assembly: OCI.DotNetSDK.Fusionapps.dll
Syntax
public class SourceIpAddressCondition : RuleCondition
Properties
AttributeValue
Declaration
[Required(ErrorMessage = "AttributeValue is required.")]
[JsonProperty(PropertyName = "attributeValue")]
public string AttributeValue { get; set; }
Property Value
Type | Description |
---|---|
string | An IPv4 or IPv6 address range that the source IP address of an incoming packet must match. The service accepts only classless inter-domain routing (CIDR) format (x.x.x.x/y or x:x::x/y) strings. Specify 0.0.0.0/0 or ::/0 to match all incoming traffic. Example: "192.168.0.0/16" |
Remarks
Required