Show / Hide Table of Contents

Class EnableDatabaseManagementDetails

Data to enable the Database Management service for the database.

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

Properties

CredentialDetails

Declaration
[Required(ErrorMessage = "CredentialDetails is required.")]
[JsonProperty(PropertyName = "credentialDetails")]
public DatabaseCredentialDetails CredentialDetails { get; set; }
Property Value
Type Description
DatabaseCredentialDetails
Remarks

Required

ManagementType

Declaration
[JsonProperty(PropertyName = "managementType")]
[JsonConverter(typeof(StringEnumConverter))]
public EnableDatabaseManagementDetails.ManagementTypeEnum? ManagementType { get; set; }
Property Value
Type Description
EnableDatabaseManagementDetails.ManagementTypeEnum?

The Database Management type.

Port

Declaration
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

The port used to connect to the database.

PrivateEndPointId

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

The OCID of the private endpoint.

Remarks

Required

Protocol

Declaration
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(StringEnumConverter))]
public EnableDatabaseManagementDetails.ProtocolEnum? Protocol { get; set; }
Property Value
Type Description
EnableDatabaseManagementDetails.ProtocolEnum?

Protocol used by the database connection.

Role

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

The role of the user that will be connecting to the database.

ServiceName

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

The name of the Oracle Database service that will be used to connect to the database.

Remarks

Required

SslSecretId

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

The OCID of the Oracle Cloud Infrastructure secret.

In this article
Back to top