Show / Hide Table of Contents

Class RestCredential

The user credential information.

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

Properties

Password

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

The password of the user.

Remarks

Required

SslTrustStoreLocation

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

The full path of the SSL truststore location in the agent.

SslTrustStorePassword

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

The password of the SSL truststore location in the agent.

SslTrustStoreType

Declaration
[JsonProperty(PropertyName = "sslTrustStoreType")]
[JsonConverter(typeof(StringEnumConverter))]
public RestCredential.SslTrustStoreTypeEnum? SslTrustStoreType { get; set; }
Property Value
Type Description
RestCredential.SslTrustStoreTypeEnum?

The SSL truststore type.

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