Show / Hide Table of Contents

Class SecureAccessControlRule

The access control rule for SECURE_ACCESS network type selection.

Inheritance
object
SecureAccessControlRule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class SecureAccessControlRule

Properties

IpNotation

Declaration
[Required(ErrorMessage = "IpNotation is required.")]
[JsonProperty(PropertyName = "ipNotation")]
[JsonConverter(typeof(ResponseEnumConverter))]
public IpNotationType? IpNotation { get; set; }
Property Value
Type Description
IpNotationType?

The type of IP notation.

Remarks

Required

Value

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

The associated value of the selected IP notation.

Remarks

Required

VcnIps

Declaration
[JsonProperty(PropertyName = "vcnIps")]
public string VcnIps { get; set; }
Property Value
Type Description
string

A comma-separated IP or CIDR address for VCN OCID IP notation selection.

In this article
Back to top