Class CreateCredentialBasicDetails
Details for the Credential for the Basic type.
Inherited Members
Namespace: Oci.DatabasetoolsruntimeService.Models
Assembly: OCI.DotNetSDK.Databasetoolsruntime.dll
Syntax
public class CreateCredentialBasicDetails : CreateCredentialDetails
Properties
Password
Declaration
[Required(ErrorMessage = "Password is required.")]
[JsonProperty(PropertyName = "password")]
public string Password { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The password for the new credential. |
Remarks
Required
UserName
Declaration
[Required(ErrorMessage = "UserName is required.")]
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The username for the new credential. |
Remarks
Required