Show / Hide Table of Contents

Class LabelOperationMetadata

Metadata of a labeling operation, such as LabelImage or LabelVideo. Next tag: 20

Inheritance
System.Object
LabelOperationMetadata
Implements
IMessage<LabelOperationMetadata>
System.IEquatable<LabelOperationMetadata>
IDeepCloneable<LabelOperationMetadata>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class LabelOperationMetadata : IMessage<LabelOperationMetadata>, IEquatable<LabelOperationMetadata>, IDeepCloneable<LabelOperationMetadata>, IBufferMessage, IMessage

Constructors

LabelOperationMetadata()

Declaration
public LabelOperationMetadata()

LabelOperationMetadata(LabelOperationMetadata)

Declaration
public LabelOperationMetadata(LabelOperationMetadata other)
Parameters
Type Name Description
LabelOperationMetadata other

Properties

CreateTime

Output only. Timestamp when labeling request was created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Timestamp

DetailsCase

Declaration
public LabelOperationMetadata.DetailsOneofCase DetailsCase { get; }
Property Value
Type Description
LabelOperationMetadata.DetailsOneofCase

ImageBoundingBoxDetails

Details of label image bounding box operation.

Declaration
public LabelImageBoundingBoxOperationMetadata ImageBoundingBoxDetails { get; set; }
Property Value
Type Description
LabelImageBoundingBoxOperationMetadata

ImageBoundingPolyDetails

Details of label image bounding poly operation.

Declaration
public LabelImageBoundingPolyOperationMetadata ImageBoundingPolyDetails { get; set; }
Property Value
Type Description
LabelImageBoundingPolyOperationMetadata

ImageClassificationDetails

Details of label image classification operation.

Declaration
public LabelImageClassificationOperationMetadata ImageClassificationDetails { get; set; }
Property Value
Type Description
LabelImageClassificationOperationMetadata

ImageOrientedBoundingBoxDetails

Details of label image oriented bounding box operation.

Declaration
public LabelImageOrientedBoundingBoxOperationMetadata ImageOrientedBoundingBoxDetails { get; set; }
Property Value
Type Description
LabelImageOrientedBoundingBoxOperationMetadata

ImagePolylineDetails

Details of label image polyline operation.

Declaration
public LabelImagePolylineOperationMetadata ImagePolylineDetails { get; set; }
Property Value
Type Description
LabelImagePolylineOperationMetadata

ImageSegmentationDetails

Details of label image segmentation operation.

Declaration
public LabelImageSegmentationOperationMetadata ImageSegmentationDetails { get; set; }
Property Value
Type Description
LabelImageSegmentationOperationMetadata

PartialFailures

Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.

Declaration
public RepeatedField<Status> PartialFailures { get; }
Property Value
Type Description
RepeatedField<Status>

ProgressPercent

Output only. Progress of label operation. Range: [0, 100].

Declaration
public int ProgressPercent { get; set; }
Property Value
Type Description
System.Int32

TextClassificationDetails

Details of label text classification operation.

Declaration
public LabelTextClassificationOperationMetadata TextClassificationDetails { get; set; }
Property Value
Type Description
LabelTextClassificationOperationMetadata

TextEntityExtractionDetails

Details of label text entity extraction operation.

Declaration
public LabelTextEntityExtractionOperationMetadata TextEntityExtractionDetails { get; set; }
Property Value
Type Description
LabelTextEntityExtractionOperationMetadata

VideoClassificationDetails

Details of label video classification operation.

Declaration
public LabelVideoClassificationOperationMetadata VideoClassificationDetails { get; set; }
Property Value
Type Description
LabelVideoClassificationOperationMetadata

VideoEventDetails

Details of label video event operation.

Declaration
public LabelVideoEventOperationMetadata VideoEventDetails { get; set; }
Property Value
Type Description
LabelVideoEventOperationMetadata

VideoObjectDetectionDetails

Details of label video object detection operation.

Declaration
public LabelVideoObjectDetectionOperationMetadata VideoObjectDetectionDetails { get; set; }
Property Value
Type Description
LabelVideoObjectDetectionOperationMetadata

VideoObjectTrackingDetails

Details of label video object tracking operation.

Declaration
public LabelVideoObjectTrackingOperationMetadata VideoObjectTrackingDetails { get; set; }
Property Value
Type Description
LabelVideoObjectTrackingOperationMetadata
Back to top