Show / Hide Table of Contents

Class AuthenticateClientResult

Inheritance
object
AuthenticateClientResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydataplaneService.Models
Assembly: OCI.DotNetSDK.Identitydataplane.dll
Syntax
public class AuthenticateClientResult

Properties

ErrorMessage

Declaration
[JsonProperty(PropertyName = "errorMessage")]
public string ErrorMessage { get; set; }
Property Value
Type Description
string

If the authentication fails for the original caller (not failing authentication of the calling service, in which case we return 401), we return a 200, but with null principal and an error message

Principal

Declaration
[JsonProperty(PropertyName = "principal")]
public Principal Principal { get; set; }
Property Value
Type Description
Principal

The original caller's resolved principal object if the authentication succeeds, null otherwise.

In this article
Back to top