Show / Hide Table of Contents

Class DataMaskingActivitySummary

Summary of the data masking activity.

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

Properties

Id

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

Unique identifier that is immutable on creation.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public DataMaskingActivity.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
DataMaskingActivity.LifecycleStateEnum?

The current state of the data masking activity Scheduled, In progress , Failed, Completed

Remarks

Required

TimeMaskingFinish

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

The time the data masking activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.

Remarks

Required

TimeMaskingStart

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

The time the data masking activity started. An RFC3339 formatted datetime string.

Remarks

Required

In this article
Back to top