Show / Hide Table of Contents

Class BackupCopyStatusDetails

Backup Copy Status details

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

Properties

BackupId

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

The OCID of the backup in the source region

Region

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

Region name of the remote region

Remarks

Required

State

Declaration
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BackupCopyStatusDetails.StateEnum? State { get; set; }
Property Value
Type Description
BackupCopyStatusDetails.StateEnum?

Copy States

StateDetails

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

A message describing the current state of copy in more detail

In this article
Back to top