Show / Hide Table of Contents

Class UserCapabilities

Properties indicating how the user is allowed to authenticate.

Inheritance
System.Object
UserCapabilities
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class UserCapabilities : object

Properties

CanUseApiKeys

Declaration
public System.Nullable<bool> CanUseApiKeys { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can use API keys.

CanUseAuthTokens

Declaration
public System.Nullable<bool> CanUseAuthTokens { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can use SWIFT passwords / auth tokens.

CanUseConsolePassword

Declaration
public System.Nullable<bool> CanUseConsolePassword { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can log in to the console.

CanUseCustomerSecretKeys

Declaration
public System.Nullable<bool> CanUseCustomerSecretKeys { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can use SigV4 symmetric keys.

CanUseDbCredentials

Declaration
public System.Nullable<bool> CanUseDbCredentials { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can use DB passwords.

CanUseOAuth2ClientCredentials

Declaration
public System.Nullable<bool> CanUseOAuth2ClientCredentials { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can use OAuth2 credentials and tokens.

CanUseSmtpCredentials

Declaration
public System.Nullable<bool> CanUseSmtpCredentials { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Indicates if the user can use SMTP passwords.

In This Article
Back to top