Show / Hide Table of Contents

Class RefreshDetails

Describes a refresh of a fusion environment

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

Properties

SourceFusionEnvironmentId

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

The source environment id for the last refresh

Remarks

Required

TimeFinished

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

The time of when the last refresh finish

Remarks

Required

TimeOfRestorationPoint

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

The point of time of the latest DB backup for the last refresh

Remarks

Required

In this article
Back to top