Show / Hide Table of Contents

Class UserCapabilities

Properties indicating how the user is allowed to authenticate.

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

Properties

CanUseApiKeys

Declaration
[JsonProperty(PropertyName = "canUseApiKeys")]
public bool? CanUseApiKeys { get; set; }
Property Value
Type Description
bool?

Indicates if the user can use API keys.

CanUseAuthTokens

Declaration
[JsonProperty(PropertyName = "canUseAuthTokens")]
public bool? CanUseAuthTokens { get; set; }
Property Value
Type Description
bool?

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

CanUseConsolePassword

Declaration
[JsonProperty(PropertyName = "canUseConsolePassword")]
public bool? CanUseConsolePassword { get; set; }
Property Value
Type Description
bool?

Indicates if the user can log in to the console.

CanUseCustomerSecretKeys

Declaration
[JsonProperty(PropertyName = "canUseCustomerSecretKeys")]
public bool? CanUseCustomerSecretKeys { get; set; }
Property Value
Type Description
bool?

Indicates if the user can use SigV4 symmetric keys.

CanUseDbCredentials

Declaration
[JsonProperty(PropertyName = "canUseDbCredentials")]
public bool? CanUseDbCredentials { get; set; }
Property Value
Type Description
bool?

Indicates if the user can use DB passwords.

CanUseOAuth2ClientCredentials

Declaration
[JsonProperty(PropertyName = "canUseOAuth2ClientCredentials")]
public bool? CanUseOAuth2ClientCredentials { get; set; }
Property Value
Type Description
bool?

Indicates if the user can use OAuth2 credentials and tokens.

CanUseSmtpCredentials

Declaration
[JsonProperty(PropertyName = "canUseSmtpCredentials")]
public bool? CanUseSmtpCredentials { get; set; }
Property Value
Type Description
bool?

Indicates if the user can use SMTP passwords.

In this article
Back to top