Class: Google::Apis::OsloginV1::PosixAccount
- Inherits:
-
Object
- Object
- Google::Apis::OsloginV1::PosixAccount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oslogin_v1/classes.rb,
lib/google/apis/oslogin_v1/representations.rb,
lib/google/apis/oslogin_v1/representations.rb
Overview
The POSIX account information associated with a Google account.
Instance Attribute Summary collapse
-
#account_id ⇒ String
Output only.
-
#gecos ⇒ String
The GECOS (user information) entry for this account.
-
#gid ⇒ Fixnum
The default group ID.
-
#home_directory ⇒ String
The path to the home directory for this account.
-
#name ⇒ String
Output only.
-
#operating_system_type ⇒ String
The operating system type where this account applies.
-
#primary ⇒ Boolean
(also: #primary?)
Only one POSIX account can be marked as primary.
-
#shell ⇒ String
The path to the logic shell for this account.
-
#system_id ⇒ String
System identifier for which account the username or uid applies to.
-
#uid ⇒ Fixnum
The user ID.
-
#username ⇒ String
The username of the POSIX account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PosixAccount
constructor
A new instance of PosixAccount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PosixAccount
Returns a new instance of PosixAccount.
160 161 162 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_id ⇒ String
Output only. A POSIX account identifier.
Corresponds to the JSON property accountId
106 107 108 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 106 def account_id @account_id end |
#gecos ⇒ String
The GECOS (user information) entry for this account.
Corresponds to the JSON property gecos
111 112 113 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 111 def gecos @gecos end |
#gid ⇒ Fixnum
The default group ID.
Corresponds to the JSON property gid
116 117 118 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 116 def gid @gid end |
#home_directory ⇒ String
The path to the home directory for this account.
Corresponds to the JSON property homeDirectory
121 122 123 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 121 def home_directory @home_directory end |
#name ⇒ String
Output only. The canonical resource name.
Corresponds to the JSON property name
126 127 128 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 126 def name @name end |
#operating_system_type ⇒ String
The operating system type where this account applies.
Corresponds to the JSON property operatingSystemType
131 132 133 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 131 def @operating_system_type end |
#primary ⇒ Boolean Also known as: primary?
Only one POSIX account can be marked as primary.
Corresponds to the JSON property primary
136 137 138 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 136 def primary @primary end |
#shell ⇒ String
The path to the logic shell for this account.
Corresponds to the JSON property shell
142 143 144 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 142 def shell @shell end |
#system_id ⇒ String
System identifier for which account the username or uid applies to. By default,
the empty value is used.
Corresponds to the JSON property systemId
148 149 150 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 148 def system_id @system_id end |
#uid ⇒ Fixnum
The user ID.
Corresponds to the JSON property uid
153 154 155 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 153 def uid @uid end |
#username ⇒ String
The username of the POSIX account.
Corresponds to the JSON property username
158 159 160 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 158 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/google/apis/oslogin_v1/classes.rb', line 165 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @gecos = args[:gecos] if args.key?(:gecos) @gid = args[:gid] if args.key?(:gid) @home_directory = args[:home_directory] if args.key?(:home_directory) @name = args[:name] if args.key?(:name) @operating_system_type = args[:operating_system_type] if args.key?(:operating_system_type) @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 |