Show / Hide Table of Contents

Class NetworkPerimeterIpAddresses

IPAddresses or Ranges assigned to the NetworkPerimeter

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

Properties

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NetworkPerimeterIpAddresses.TypeEnum? Type { get; set; }
Property Value
Type Description
NetworkPerimeterIpAddresses.TypeEnum?

type of the ip address value
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

Value

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

Value of exact ipaddress or the range in CIDR or the range with start and end ip addresses
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

Version

Declaration
[JsonProperty(PropertyName = "version")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NetworkPerimeterIpAddresses.VersionEnum? Version { get; set; }
Property Value
Type Description
NetworkPerimeterIpAddresses.VersionEnum?

Indicates the type of Ip Address example, IPV4 or IPV6
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top