Show / Hide Table of Contents

Class SourceVcnIpAddressCondition

An access control rule condition that requires a match on the specified source VCN and IP address range. This condition must be used only in conjunction with SourceVcnIdCondition.

Inheritance
object
RuleCondition
SourceVcnIpAddressCondition
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 SourceVcnIpAddressCondition : RuleCondition

Properties

AttributeValue

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

An IPv4 address range that the original client IP address (in the context of the specified VCN) of an incoming packet must match. The service accepts only classless inter-domain routing (CIDR) format (x.x.x.x/y) strings. Specify 0.0.0.0/0 to match all incoming traffic in the customer VCN.

Remarks

Required

In this article
Back to top