Show / Hide Table of Contents

Class UserSshPublicKey

JSON template for a POSIX account entry.

Inheritance
System.Object
UserSshPublicKey
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 UserSshPublicKey : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

ExpirationTimeUsec

An expiration time in microseconds since epoch.

Declaration
[JsonProperty("expirationTimeUsec")]
public virtual long? ExpirationTimeUsec { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Fingerprint

A SHA-256 fingerprint of the SSH public key. (Read-only)

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

Key

An SSH public key.

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

Implements

IDirectResponseSchema
Back to top