Show / Hide Table of Contents

Class JobStatistics3

Statistics for a load job.

Inheritance
object
JobStatistics3
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class JobStatistics3 : IDirectResponseSchema

Properties

BadRecords

Output only. The number of bad records encountered. Note that if the job has failed because of more bad records encountered than the maximum allowed in the load job configuration, then this number can be less than the total number of bad records present in the input data.

Declaration
[JsonProperty("badRecords")]
public virtual long? BadRecords { get; set; }
Property Value
Type Description
long?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

InputFileBytes

Output only. Number of bytes of source data in a load job.

Declaration
[JsonProperty("inputFileBytes")]
public virtual long? InputFileBytes { get; set; }
Property Value
Type Description
long?

InputFiles

Output only. Number of source files in a load job.

Declaration
[JsonProperty("inputFiles")]
public virtual long? InputFiles { get; set; }
Property Value
Type Description
long?

OutputBytes

Output only. Size of the loaded data in bytes. Note that while a load job is in the running state, this value may change.

Declaration
[JsonProperty("outputBytes")]
public virtual long? OutputBytes { get; set; }
Property Value
Type Description
long?

OutputRows

Output only. Number of rows imported in a load job. Note that while an import job is in the running state, this value may change.

Declaration
[JsonProperty("outputRows")]
public virtual long? OutputRows { get; set; }
Property Value
Type Description
long?

Timeline

Output only. Describes a timeline of job execution.

Declaration
[JsonProperty("timeline")]
public virtual IList<QueryTimelineSample> Timeline { get; set; }
Property Value
Type Description
IList<QueryTimelineSample>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX