Show / Hide Table of Contents

Class UserPosixAccount

JSON template for a POSIX account entry.

Inheritance
System.Object
UserPosixAccount
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Admin.Directory.directory_v1.Data
Assembly: Google.Apis.Admin.Directory.directory_v1.dll
Syntax
public class UserPosixAccount : IDirectResponseSchema

Properties

AccountId

A POSIX account field identifier.

Declaration
[JsonProperty("accountId")]
public virtual string AccountId { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Gecos

The GECOS (user information) for this account.

Declaration
[JsonProperty("gecos")]
public virtual string Gecos { get; set; }
Property Value
Type Description
System.String

Gid

The default group ID.

Declaration
[JsonProperty("gid")]
public virtual ulong? Gid { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

HomeDirectory

The path to the home directory for this account.

Declaration
[JsonProperty("homeDirectory")]
public virtual string HomeDirectory { get; set; }
Property Value
Type Description
System.String

OperatingSystemType

The operating system type for this account.

Declaration
[JsonProperty("operatingSystemType")]
public virtual string OperatingSystemType { get; set; }
Property Value
Type Description
System.String

Primary

If this is user's primary account within the SystemId.

Declaration
[JsonProperty("primary")]
public virtual bool? Primary { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Shell

The path to the login shell for this account.

Declaration
[JsonProperty("shell")]
public virtual string Shell { get; set; }
Property Value
Type Description
System.String

SystemId

System identifier for which account Username or Uid apply to.

Declaration
[JsonProperty("systemId")]
public virtual string SystemId { get; set; }
Property Value
Type Description
System.String

Uid

The POSIX compliant user ID.

Declaration
[JsonProperty("uid")]
public virtual ulong? Uid { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Username

The username of the account.

Declaration
[JsonProperty("username")]
public virtual string Username { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top