Show / Hide Table of Contents

Class AutonomousDatabaseStandbySummary

Autonomous Data Guard standby database details.

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

Properties

AvailabilityDomain

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

The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.

LagTimeInSeconds

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

The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.

LifecycleDetails

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

Additional information about the current lifecycle state.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AutonomousDatabaseStandbySummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
AutonomousDatabaseStandbySummary.LifecycleStateEnum?

The current state of the Autonomous Database.

MaintenanceTargetComponent

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

The component chosen for maintenance.

TimeDataGuardRoleChanged

Declaration
[JsonProperty(PropertyName = "timeDataGuardRoleChanged")]
public DateTime? TimeDataGuardRoleChanged { get; set; }
Property Value
Type Description
DateTime?

The date and time the Autonomous Data Guard role was switched for the standby Autonomous Database.

TimeDisasterRecoveryRoleChanged

Declaration
[JsonProperty(PropertyName = "timeDisasterRecoveryRoleChanged")]
public DateTime? TimeDisasterRecoveryRoleChanged { get; set; }
Property Value
Type Description
DateTime?

The date and time the Disaster Recovery role was switched for the standby Autonomous Database.

TimeMaintenanceBegin

Declaration
[JsonProperty(PropertyName = "timeMaintenanceBegin")]
public DateTime? TimeMaintenanceBegin { get; set; }
Property Value
Type Description
DateTime?

The date and time when maintenance will begin.

TimeMaintenanceEnd

Declaration
[JsonProperty(PropertyName = "timeMaintenanceEnd")]
public DateTime? TimeMaintenanceEnd { get; set; }
Property Value
Type Description
DateTime?

The date and time when maintenance will end.

In this article
Back to top