Show / Hide Table of Contents

Class PdbStatusDetails

The number and status of PDBs in a Container Database.

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

Properties

Count

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

The number of PDBs with this status.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseStatus? Status { get; set; }
Property Value
Type Description
DatabaseStatus?

The status of the PDBs with this count.

In this article
Back to top