Show / Hide Table of Contents

Class CreateInstructionMetadata

Metadata of a CreateInstruction operation.

Inheritance
System.Object
CreateInstructionMetadata
Implements
IMessage<CreateInstructionMetadata>
System.IEquatable<CreateInstructionMetadata>
IDeepCloneable<CreateInstructionMetadata>
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 CreateInstructionMetadata : IMessage<CreateInstructionMetadata>, IEquatable<CreateInstructionMetadata>, IDeepCloneable<CreateInstructionMetadata>, IBufferMessage, IMessage

Constructors

CreateInstructionMetadata()

Declaration
public CreateInstructionMetadata()

CreateInstructionMetadata(CreateInstructionMetadata)

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

Properties

CreateTime

Timestamp when create instruction request was created.

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

Instruction

The name of the created Instruction. projects/{project_id}/instructions/{instruction_id}

Declaration
public string Instruction { get; set; }
Property Value
Type Description
System.String

PartialFailures

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>
Back to top