ExtensionPosixUser¶
- 
class oci.identity_domains.models.ExtensionPosixUser(**kwargs)¶
- Bases: - object- POSIX User extension - Methods - __init__(**kwargs)- Initializes a new ExtensionPosixUser object with values from keyword arguments. - Attributes - gecos- Gets the gecos of this ExtensionPosixUser. - gid_number- Gets the gid_number of this ExtensionPosixUser. - home_directory- Gets the home_directory of this ExtensionPosixUser. - login_shell- Gets the login_shell of this ExtensionPosixUser. - uid_number- Gets the uid_number of this ExtensionPosixUser. - 
__init__(**kwargs)¶
- Initializes a new ExtensionPosixUser object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - uid_number (int) – The value to assign to the uid_number property of this ExtensionPosixUser.
- gid_number (int) – The value to assign to the gid_number property of this ExtensionPosixUser.
- gecos (str) – The value to assign to the gecos property of this ExtensionPosixUser.
- home_directory (str) – The value to assign to the home_directory property of this ExtensionPosixUser.
- login_shell (str) – The value to assign to the login_shell property of this ExtensionPosixUser.
 
 - 
gecos¶
- Gets the gecos of this ExtensionPosixUser. 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
 
 - Returns: - The gecos of this ExtensionPosixUser. - Return type: - str 
 - 
gid_number¶
- Gets the gid_number of this ExtensionPosixUser. Primary Group identifier of the POSIX user - SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: request
- type: integer
- uniqueness: none
 
 - Returns: - The gid_number of this ExtensionPosixUser. - Return type: - int 
 - 
home_directory¶
- Gets the home_directory of this ExtensionPosixUser. 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
 
 - Returns: - The home_directory of this ExtensionPosixUser. - Return type: - str 
 - 
login_shell¶
- Gets the login_shell of this ExtensionPosixUser. 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
 
 - Returns: - The login_shell of this ExtensionPosixUser. - Return type: - str 
 - 
uid_number¶
- Gets the uid_number of this ExtensionPosixUser. 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
 
 - Returns: - The uid_number of this ExtensionPosixUser. - Return type: - int 
 
-