Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.ProductSetsResource.ListRequest

Lists ProductSets in an unspecified order. Possible errors: * Returns INVALID_ARGUMENT if page_size is greater than 100, or less than 1.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListProductSetsResponse>
VisionBaseServiceRequest<ListProductSetsResponse>
ProjectsResource.LocationsResource.ProductSetsResource.ListRequest
Implements
IClientServiceRequest<ListProductSetsResponse>
IClientServiceRequest
Inherited Members
VisionBaseServiceRequest<ListProductSetsResponse>.Xgafv
VisionBaseServiceRequest<ListProductSetsResponse>.AccessToken
VisionBaseServiceRequest<ListProductSetsResponse>.Alt
VisionBaseServiceRequest<ListProductSetsResponse>.Callback
VisionBaseServiceRequest<ListProductSetsResponse>.Fields
VisionBaseServiceRequest<ListProductSetsResponse>.Key
VisionBaseServiceRequest<ListProductSetsResponse>.OauthToken
VisionBaseServiceRequest<ListProductSetsResponse>.PrettyPrint
VisionBaseServiceRequest<ListProductSetsResponse>.QuotaUser
VisionBaseServiceRequest<ListProductSetsResponse>.UploadType
VisionBaseServiceRequest<ListProductSetsResponse>.UploadProtocol
ClientServiceRequest<ListProductSetsResponse>.Execute()
ClientServiceRequest<ListProductSetsResponse>.ExecuteAsStream()
ClientServiceRequest<ListProductSetsResponse>.ExecuteAsync()
ClientServiceRequest<ListProductSetsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListProductSetsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListProductSetsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListProductSetsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListProductSetsResponse>.GenerateRequestUri()
ClientServiceRequest<ListProductSetsResponse>.GetBody()
ClientServiceRequest<ListProductSetsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListProductSetsResponse>.ETagAction
ClientServiceRequest<ListProductSetsResponse>.ModifyRequest
ClientServiceRequest<ListProductSetsResponse>.ValidateParameters
ClientServiceRequest<ListProductSetsResponse>.RequestParameters
ClientServiceRequest<ListProductSetsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Vision.v1
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class ListRequest : VisionBaseServiceRequest<ListProductSetsResponse>, IClientServiceRequest<ListProductSetsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Vision.v1.Data.ListProductSetsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Vision.v1.Data.ListProductSetsResponse>.MethodName

PageSize

The maximum number of items to return. Default 10, maximum 100.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

The next_page_token returned from a previous List request, if any.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. The project from which ProductSets should be listed. Format is projects/PROJECT_ID/locations/LOC_ID.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Vision.v1.Data.ListProductSetsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Vision.v1.VisionBaseServiceRequest<Google.Apis.Vision.v1.Data.ListProductSetsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top