Show / Hide Table of Contents

Class UserCredential

Credential information

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

Properties

Enabled

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

Indicates whether this credential is enabled (TRUE) or not (FALSE)

Remarks

Required

Key

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

Name of the credential

Remarks

Required

KeyType

Declaration
[JsonProperty(PropertyName = "keyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CredentialKeyType? KeyType { get; set; }
Property Value
Type Description
CredentialKeyType?

Indicates whether this refers to a public synonym or not.

Owner

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

Owner of the credential

Remarks

Required

RelatedResource

Declaration
[JsonProperty(PropertyName = "relatedResource")]
public CredentialRelatedResource RelatedResource { get; set; }
Property Value
Type Description
CredentialRelatedResource

UserName

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

Name of the user that will be used to log in to the remote database or the remote or local operating system

Remarks

Required

WindowsDomain

Declaration
[JsonProperty(PropertyName = "windowsDomain")]
public string WindowsDomain { get; set; }
Property Value
Type Description
string

For a Windows target, the Windows domain to use when logging in

In this article
Back to top