Show / Hide Table of Contents

Class TablespaceAdminCredentialDetails

The credential to connect to the database to perform tablespace administration tasks.

Inheritance
object
TablespaceAdminCredentialDetails
TablespaceAdminPasswordCredentialDetails
TablespaceAdminSecretCredentialDetails
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
[JsonConverter(typeof(TablespaceAdminCredentialDetailsModelConverter))]
public class TablespaceAdminCredentialDetails

Properties

Role

Declaration
[Required(ErrorMessage = "Role is required.")]
[JsonProperty(PropertyName = "role")]
[JsonConverter(typeof(StringEnumConverter))]
public TablespaceAdminCredentialDetails.RoleEnum? Role { get; set; }
Property Value
Type Description
TablespaceAdminCredentialDetails.RoleEnum?

The role of the database user.

Remarks

Required

Username

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

The user to connect to the database.

Remarks

Required

In this article
Back to top