Class CreateAutonomousDatabaseFromBackupTimestampDetails
Details to create a point-in-time clone of an Oracle Autonomous Database by specifying a timestamp. Point-in-time clones use backups as the source of the data for the clone.
Inherited Members
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class CreateAutonomousDatabaseFromBackupTimestampDetails : CreateAutonomousDatabaseBase
Properties
AutonomousDatabaseId
Declaration
[Required(ErrorMessage = "AutonomousDatabaseId is required.")]
[JsonProperty(PropertyName = "autonomousDatabaseId")]
public string AutonomousDatabaseId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the source Autonomous Database that you will clone to create a new Autonomous Database. |
Remarks
Required
CloneType
Declaration
[Required(ErrorMessage = "CloneType is required.")]
[JsonProperty(PropertyName = "cloneType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateAutonomousDatabaseFromBackupTimestampDetails.CloneTypeEnum? CloneType { get; set; }
Property Value
Type | Description |
---|---|
CreateAutonomousDatabaseFromBackupTimestampDetails.CloneTypeEnum? | The Autonomous Database clone type. |
Remarks
Required
Timestamp
Declaration
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past. |
UseLatestAvailableBackupTimeStamp
Declaration
[JsonProperty(PropertyName = "useLatestAvailableBackupTimeStamp")]
public bool? UseLatestAvailableBackupTimeStamp { get; set; }
Property Value
Type | Description |
---|---|
bool? | Clone from latest available backup timestamp. |