Class AuthenticateClientResult
Inherited Members
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. |