Show / Hide Table of Contents

Class UpdateUserCapabilitiesDetails

Inheritance
System.Object
UpdateUserCapabilitiesDetails
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class UpdateUserCapabilitiesDetails : 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