Show / Hide Table of Contents

Class AssociatedDatabaseSummary

The summary of a database currently using a Database Management private endpoint.

Inheritance
object
AssociatedDatabaseSummary
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 AssociatedDatabaseSummary

Properties

CompartmentId

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

The compartment OCID of the database.

Remarks

Required

Id

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

The OCID of the database.

Remarks

Required

Name

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

The name of the database.

Remarks

Required

TimeRegistered

Declaration
[Required(ErrorMessage = "TimeRegistered is required.")]
[JsonProperty(PropertyName = "timeRegistered")]
public DateTime? TimeRegistered { get; set; }
Property Value
Type Description
DateTime?

The time when Database Management was enabled for the database.

Remarks

Required

In this article
Back to top