Show / Hide Table of Contents

Class UpdateEvaluationJobRequest

Request message for UpdateEvaluationJob.

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

Constructors

UpdateEvaluationJobRequest()

Declaration
public UpdateEvaluationJobRequest()

UpdateEvaluationJobRequest(UpdateEvaluationJobRequest)

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

Properties

EvaluationJob

Required. Evaluation job that is going to be updated.

Declaration
public EvaluationJob EvaluationJob { get; set; }
Property Value
Type Description
EvaluationJob

UpdateMask

Optional. Mask for which fields to update. You can only provide the following fields:

  • evaluationJobConfig.humanAnnotationConfig.instruction
  • evaluationJobConfig.exampleCount
  • evaluationJobConfig.exampleSamplePercentage

You can provide more than one of these fields by separating them with commas.

Declaration
public FieldMask UpdateMask { get; set; }
Property Value
Type Description
FieldMask
Back to top