Show / Hide Table of Contents

Class LoginProfile

The user profile information used for logging in to a virtual machine on Google Compute Engine.

Inheritance
System.Object
LoginProfile
Implements
Google.Apis.Requests.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.CloudOSLogin.v1.Data
Assembly: Google.Apis.CloudOSLogin.v1.dll
Syntax
public class LoginProfile : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Name

Required. A unique user ID.

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

PosixAccounts

The list of POSIX accounts associated with the user.

Declaration
[JsonProperty("posixAccounts")]
public virtual IList<PosixAccount> PosixAccounts { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<PosixAccount>

SshPublicKeys

A map from SSH public key fingerprint to the associated key object.

Declaration
[JsonProperty("sshPublicKeys")]
public virtual IDictionary<string, SshPublicKey> SshPublicKeys { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, SshPublicKey>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top