Show / Hide Table of Contents

Class CreateRefreshActivityDetails

The information about current refresh.

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

Properties

IsDataMaskingOpted

Declaration
[JsonProperty(PropertyName = "isDataMaskingOpted")]
public bool? IsDataMaskingOpted { get; set; }
Property Value
Type Description
bool?

Represents if the customer opted for Data Masking or not during refreshActivity.

SourceFusionEnvironmentId

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

The OCID of the source environment

Remarks

Required

TimeScheduledStart

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

Current time the refresh activity is scheduled to start. An RFC3339 formatted datetime string.

In this article
Back to top