Show / Hide Table of Contents

Class EtlRunSummary

Contains summary of a run.

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

Properties

CompartmentId

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

Compartment Identifier

Remarks

Required

DataReadInBytes

Declaration
[JsonProperty(PropertyName = "dataReadInBytes")]
public long? DataReadInBytes { get; set; }
Property Value
Type Description
long?

Data read by the dataflow run

DataWritten

Declaration
[JsonProperty(PropertyName = "dataWritten")]
public long? DataWritten { get; set; }
Property Value
Type Description
long?

Data written by the dataflow run

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

The name of the ETLRun.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

LifecycleDetails

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

Details of the lifecycle state

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EtlRunSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
EtlRunSummary.LifecycleStateEnum?

The current state of the etlRun.

RunDurationInMilliseconds

Declaration
[JsonProperty(PropertyName = "runDurationInMilliseconds")]
public long? RunDurationInMilliseconds { get; set; }
Property Value
Type Description
long?

Dataflow run duration

TimeCreated

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

Time when the dataflow run was created

TimeUpdated

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

Time when the dataflow run was updated

In this article
Back to top