Show / Hide Table of Contents

Class RunSummary

A summary of the run.

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

Properties

ApplicationId

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

The application ID.

Remarks

Required

CompartmentId

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

The OCID of a compartment.

Remarks

Required

DataReadInBytes

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

The data read by the run in bytes.

DataWrittenInBytes

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

The data written by the run in bytes.

DefinedTags

Declaration
[Required(ErrorMessage = "DefinedTags is required.")]
[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. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

Remarks

Required

DisplayName

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

A user-friendly name. This name is not necessarily unique.

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Remarks

Required

Id

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

The ID of a run.

Remarks

Required

Language

Declaration
[Required(ErrorMessage = "Language is required.")]
[JsonProperty(PropertyName = "language")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApplicationLanguage? Language { get; set; }
Property Value
Type Description
ApplicationLanguage?

The Spark language.

Remarks

Required

LifecycleDetails

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

The detailed messages about the lifecycle state.

LifecycleState

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

The current state of this run.

Remarks

Required

OpcRequestId

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

Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

OwnerPrincipalId

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

The OCID of the user who created the resource.

OwnerUserName

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

The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.

PoolId

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

The OCID of a pool. Unique Id to indentify a dataflow pool resource.

RunDurationInMilliseconds

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

The duration of the run in milliseconds.

TimeCreated

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

The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z

Remarks

Required

TotalOCpu

Declaration
[JsonProperty(PropertyName = "totalOCpu")]
public int? TotalOCpu { get; set; }
Property Value
Type Description
int?

The total number of oCPU requested by the run.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApplicationType? Type { get; set; }
Property Value
Type Description
ApplicationType?

The Spark application processing type.

In this article
Back to top