Class: Google::Apis::OsloginV1::PosixAccount

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/oslogin_v1/classes.rb,
generated/google/apis/oslogin_v1/representations.rb,
generated/google/apis/oslogin_v1/representations.rb

Overview

The POSIX account information associated with a Google account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ PosixAccount

Returns a new instance of PosixAccount.



157
158
159
# File 'generated/google/apis/oslogin_v1/classes.rb', line 157

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idString

Output only. A POSIX account identifier. Corresponds to the JSON property accountId

Returns:

  • (String)


103
104
105
# File 'generated/google/apis/oslogin_v1/classes.rb', line 103

def 
  @account_id
end

#gecosString

The GECOS (user information) entry for this account. Corresponds to the JSON property gecos

Returns:

  • (String)


108
109
110
# File 'generated/google/apis/oslogin_v1/classes.rb', line 108

def gecos
  @gecos
end

#gidFixnum

The default group ID. Corresponds to the JSON property gid

Returns:

  • (Fixnum)


113
114
115
# File 'generated/google/apis/oslogin_v1/classes.rb', line 113

def gid
  @gid
end

#home_directoryString

The path to the home directory for this account. Corresponds to the JSON property homeDirectory

Returns:

  • (String)


118
119
120
# File 'generated/google/apis/oslogin_v1/classes.rb', line 118

def home_directory
  @home_directory
end

#nameString

Output only. The canonical resource name. Corresponds to the JSON property name

Returns:

  • (String)


123
124
125
# File 'generated/google/apis/oslogin_v1/classes.rb', line 123

def name
  @name
end

#operating_system_typeString

The operating system type where this account applies. Corresponds to the JSON property operatingSystemType

Returns:

  • (String)


128
129
130
# File 'generated/google/apis/oslogin_v1/classes.rb', line 128

def operating_system_type
  @operating_system_type
end

#primaryBoolean Also known as: primary?

Only one POSIX account can be marked as primary. Corresponds to the JSON property primary

Returns:

  • (Boolean)


133
134
135
# File 'generated/google/apis/oslogin_v1/classes.rb', line 133

def primary
  @primary
end

#shellString

The path to the logic shell for this account. Corresponds to the JSON property shell

Returns:

  • (String)


139
140
141
# File 'generated/google/apis/oslogin_v1/classes.rb', line 139

def shell
  @shell
end

#system_idString

System identifier for which account the username or uid applies to. By default, the empty value is used. Corresponds to the JSON property systemId

Returns:

  • (String)


145
146
147
# File 'generated/google/apis/oslogin_v1/classes.rb', line 145

def system_id
  @system_id
end

#uidFixnum

The user ID. Corresponds to the JSON property uid

Returns:

  • (Fixnum)


150
151
152
# File 'generated/google/apis/oslogin_v1/classes.rb', line 150

def uid
  @uid
end

#usernameString

The username of the POSIX account. Corresponds to the JSON property username

Returns:

  • (String)


155
156
157
# File 'generated/google/apis/oslogin_v1/classes.rb', line 155

def username
  @username
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



162
163
164
165
166
167
168
169
170
171
172
173
174
# File 'generated/google/apis/oslogin_v1/classes.rb', line 162

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