Show / Hide Table of Contents

Class UpdateCredentialBasicDetails

Credential information to be updated for the BASIC type.

Inheritance
object
UpdateCredentialDetails
UpdateCredentialBasicDetails
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 UpdateCredentialBasicDetails : UpdateCredentialDetails

Properties

Password

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

The password for the new credential.

UserName

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

The username for the new credential.

In this article
Back to top