Class: Google::Apis::AdminDirectoryV1::UserPosixAccount
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::UserPosixAccount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for a POSIX account entry. Description of the field family: go/ fbs-posix.
Instance Attribute Summary collapse
-
#gecos ⇒ String
The GECOS (user information) for this account.
-
#gid ⇒ Fixnum
The default group ID.
-
#home_directory ⇒ String
The path to the home directory for this account.
-
#primary ⇒ Boolean
(also: #primary?)
If this is user's primary account within the SystemId.
-
#shell ⇒ String
The path to the login shell for this account.
-
#system_id ⇒ String
System identifier for which account Username or Uid apply to.
-
#uid ⇒ Fixnum
The POSIX compliant user ID.
-
#username ⇒ String
The username of the account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserPosixAccount
constructor
A new instance of UserPosixAccount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserPosixAccount
Returns a new instance of UserPosixAccount
3309 3310 3311 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3309 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gecos ⇒ String
The GECOS (user information) for this account.
Corresponds to the JSON property gecos
3271 3272 3273 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3271 def gecos @gecos end |
#gid ⇒ Fixnum
The default group ID.
Corresponds to the JSON property gid
3276 3277 3278 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3276 def gid @gid end |
#home_directory ⇒ String
The path to the home directory for this account.
Corresponds to the JSON property homeDirectory
3281 3282 3283 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3281 def home_directory @home_directory end |
#primary ⇒ Boolean Also known as: primary?
If this is user's primary account within the SystemId.
Corresponds to the JSON property primary
3286 3287 3288 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3286 def primary @primary end |
#shell ⇒ String
The path to the login shell for this account.
Corresponds to the JSON property shell
3292 3293 3294 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3292 def shell @shell end |
#system_id ⇒ String
System identifier for which account Username or Uid apply to.
Corresponds to the JSON property systemId
3297 3298 3299 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3297 def system_id @system_id end |
#uid ⇒ Fixnum
The POSIX compliant user ID.
Corresponds to the JSON property uid
3302 3303 3304 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3302 def uid @uid end |
#username ⇒ String
The username of the account.
Corresponds to the JSON property username
3307 3308 3309 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3307 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3314 def update!(**args) @gecos = args[:gecos] if args.key?(:gecos) @gid = args[:gid] if args.key?(:gid) @home_directory = args[:home_directory] if args.key?(:home_directory) @primary = args[:primary] if args.key?(:primary) @shell = args[:shell] if args.key?(:shell) @system_id = args[:system_id] if args.key?(:system_id) @uid = args[:uid] if args.key?(:uid) @username = args[:username] if args.key?(:username) end |