Show / Hide Table of Contents

Class ListAnnotationSpecSetsRequest

Request message for ListAnnotationSpecSets.

Inheritance
System.Object
ListAnnotationSpecSetsRequest
Implements
IMessage<ListAnnotationSpecSetsRequest>
System.IEquatable<ListAnnotationSpecSetsRequest>
IDeepCloneable<ListAnnotationSpecSetsRequest>
Google.Protobuf.IBufferMessage
IMessage
IPageRequest
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 ListAnnotationSpecSetsRequest : IMessage<ListAnnotationSpecSetsRequest>, IEquatable<ListAnnotationSpecSetsRequest>, IDeepCloneable<ListAnnotationSpecSetsRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

ListAnnotationSpecSetsRequest()

Declaration
public ListAnnotationSpecSetsRequest()

ListAnnotationSpecSetsRequest(ListAnnotationSpecSetsRequest)

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

Properties

Filter

Optional. Filter is not supported at this moment.

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

PageSize

Optional. Requested page size. Server may return fewer results than requested. Default value is 100.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
IPageRequest.PageSize

PageToken

Optional. A token identifying a page of results for the server to return. Typically obtained by [ListAnnotationSpecSetsResponse.next_page_token][google.cloud.datalabeling.v1beta1.ListAnnotationSpecSetsResponse.next_page_token] of the previous [DataLabelingService.ListAnnotationSpecSets] call. Return first page if empty.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageRequest.PageToken

Parent

Required. Parent of AnnotationSpecSet resource, 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