Show / Hide Table of Contents

Class SourceIpAddressCondition

An access control rule condition that requires a match on the specified source IP address or address range.

Inheritance
object
RuleCondition
SourceIpAddressCondition
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top