Show / Hide Table of Contents

Class DatabaseManagementConfig

The configuration of the Database Management service.

Inheritance
object
DatabaseManagementConfig
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
public class DatabaseManagementConfig

Properties

ConnectorId

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

The OCID of the external database connector.

DatabaseManagementStatus

Declaration
[Required(ErrorMessage = "DatabaseManagementStatus is required.")]
[JsonProperty(PropertyName = "databaseManagementStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseManagementConfig.DatabaseManagementStatusEnum? DatabaseManagementStatus { get; set; }
Property Value
Type Description
DatabaseManagementConfig.DatabaseManagementStatusEnum?

The status of the Database Management service.

Remarks

Required

LicenseModel

Declaration
[Required(ErrorMessage = "LicenseModel is required.")]
[JsonProperty(PropertyName = "licenseModel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseManagementConfig.LicenseModelEnum? LicenseModel { get; set; }
Property Value
Type Description
DatabaseManagementConfig.LicenseModelEnum?

The Oracle license model that applies to the external database.

Remarks

Required

In this article
Back to top