Show / Hide Table of Contents

Class CredentialAuthenticatorInfo

Inheritance
object
CredentialAuthenticatorInfo
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 CredentialAuthenticatorInfo

Properties

ClientId

Declaration
[Required(ErrorMessage = "ClientId is required.")]
[JsonProperty(PropertyName = "clientId")]
public string ClientId { get; set; }
Property Value
Type Description
string

The id of the client.

Remarks

Required

CredentialIdentifier

Declaration
[Required(ErrorMessage = "CredentialIdentifier is required.")]
[JsonProperty(PropertyName = "credentialIdentifier")]
public string CredentialIdentifier { get; set; }
Property Value
Type Description
string

The credential identifier.

Remarks

Required

CredentialList

Declaration
[Required(ErrorMessage = "CredentialList is required.")]
[JsonProperty(PropertyName = "credentialList")]
public List<string> CredentialList { get; set; }
Property Value
Type Description
List<string>

The credential list.

Remarks

Required

RawCredential

Declaration
[Required(ErrorMessage = "RawCredential is required.")]
[JsonProperty(PropertyName = "rawCredential")]
public string RawCredential { get; set; }
Property Value
Type Description
string

The raw credential.

Remarks

Required

Service

Declaration
[Required(ErrorMessage = "Service is required.")]
[JsonProperty(PropertyName = "service")]
public string Service { get; set; }
Property Value
Type Description
string

The name of the service that is making this authorization request.

Remarks

Required

TenantId

Declaration
[Required(ErrorMessage = "TenantId is required.")]
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; set; }
Property Value
Type Description
string

The id of the tenant.

Remarks

Required

TenantName

Declaration
[Required(ErrorMessage = "TenantName is required.")]
[JsonProperty(PropertyName = "tenantName")]
public string TenantName { get; set; }
Property Value
Type Description
string

The name of the tenant.

Remarks

Required

UserId

Declaration
[Required(ErrorMessage = "UserId is required.")]
[JsonProperty(PropertyName = "userId")]
public string UserId { get; set; }
Property Value
Type Description
string

The id of the user.

Remarks

Required

UserName

Declaration
[Required(ErrorMessage = "UserName is required.")]
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
Type Description
string

The name of the user.

Remarks

Required

In this article
Back to top