Show / Hide Table of Contents

Class SqlTuningSetAdminCredentialDetails

The credential to connect to the database to perform Sql tuning set administration tasks.

Inheritance
object
SqlTuningSetAdminCredentialDetails
SqlTuningSetAdminPasswordCredentialDetails
SqlTuningSetAdminSecretCredentialDetails
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(SqlTuningSetAdminCredentialDetailsModelConverter))]
public class SqlTuningSetAdminCredentialDetails

Properties

Role

Declaration
[Required(ErrorMessage = "Role is required.")]
[JsonProperty(PropertyName = "role")]
[JsonConverter(typeof(StringEnumConverter))]
public SqlTuningSetAdminCredentialDetails.RoleEnum? Role { get; set; }
Property Value
Type Description
SqlTuningSetAdminCredentialDetails.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