Show / Hide Table of Contents

Class ExtensionPosixUser

POSIX User extension

Inheritance
object
ExtensionPosixUser
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 ExtensionPosixUser

Properties

Gecos

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

General information about the POSIX account such as their real name and phone number
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

GidNumber

Declaration
[JsonProperty(PropertyName = "gidNumber")]
public int? GidNumber { get; set; }
Property Value
Type Description
int?

Primary Group identifier of the POSIX user
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: integer
  • uniqueness: none

HomeDirectory

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

The absolute path to the home directory of the POSIX account
SCIM++ Properties:

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

LoginShell

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

The path to the login shell of the POSIX account
SCIM++ Properties:

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

UidNumber

Declaration
[JsonProperty(PropertyName = "uidNumber")]
public int? UidNumber { get; set; }
Property Value
Type Description
int?

Integer uniquely identifying a user in a POSIX administrative domain
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: request
  • type: integer
  • uniqueness: server
In this article
Back to top