Show / Hide Table of Contents

Class CreateAnnotationSpecSetRequest

Request message for CreateAnnotationSpecSet.

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

Constructors

CreateAnnotationSpecSetRequest()

Declaration
public CreateAnnotationSpecSetRequest()

CreateAnnotationSpecSetRequest(CreateAnnotationSpecSetRequest)

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

Properties

AnnotationSpecSet

Required. Annotation spec set to create. Annotation specs must be included. Only one annotation spec will be accepted for annotation specs with same display_name.

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

Parent

Required. AnnotationSpecSet resource parent, format: projects/{project_id}

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

ParentAsProjectName

ProjectName-typed view over the Parent resource name property.

Declaration
public ProjectName ParentAsProjectName { get; set; }
Property Value
Type Description
ProjectName
Back to top