Show / Hide Table of Contents

Class RunLogSummary

A summary of a log associated with a particular run.

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

Properties

Name

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

The name of the log. Example: spark_driver_stderr_20190917T114000Z.log.gz

Remarks

Required

RunId

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

The runId associated with the log.

Remarks

Required

SizeInBytes

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

The size of the object in bytes.

Source

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

The source of the log such as driver and executor.

Remarks

Required

TimeCreated

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

The date and time the object was created, as described in RFC 2616, section 14.29.

Type

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

The type of log such as stdout and stderr.

Remarks

Required

In this article
Back to top