Show / Hide Table of Contents

Class ModelsResource.ListRequest

Lists all models in the specified dataset. Requires the READER dataset role. After retrieving the list of models, you can get information about a particular model by calling the models.get method.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListModelsResponse>
BigqueryBaseServiceRequest<ListModelsResponse>
ModelsResource.ListRequest
Implements
IClientServiceRequest<ListModelsResponse>
IClientServiceRequest
Inherited Members
BigqueryBaseServiceRequest<ListModelsResponse>.Alt
BigqueryBaseServiceRequest<ListModelsResponse>.Fields
BigqueryBaseServiceRequest<ListModelsResponse>.Key
BigqueryBaseServiceRequest<ListModelsResponse>.OauthToken
BigqueryBaseServiceRequest<ListModelsResponse>.PrettyPrint
BigqueryBaseServiceRequest<ListModelsResponse>.QuotaUser
BigqueryBaseServiceRequest<ListModelsResponse>.UserIp
ClientServiceRequest<ListModelsResponse>.Execute()
ClientServiceRequest<ListModelsResponse>.ExecuteAsStream()
ClientServiceRequest<ListModelsResponse>.ExecuteAsync()
ClientServiceRequest<ListModelsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListModelsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListModelsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListModelsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListModelsResponse>.GenerateRequestUri()
ClientServiceRequest<ListModelsResponse>.GetBody()
ClientServiceRequest<ListModelsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListModelsResponse>.ETagAction
ClientServiceRequest<ListModelsResponse>.ModifyRequest
ClientServiceRequest<ListModelsResponse>.ValidateParameters
ClientServiceRequest<ListModelsResponse>.RequestParameters
ClientServiceRequest<ListModelsResponse>.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.Bigquery.v2
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ListRequest : BigqueryBaseServiceRequest<ListModelsResponse>, IClientServiceRequest<ListModelsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String, String)

Constructs a new List request.

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

Properties

DatasetId

Required. Dataset ID of the models to list.

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

HttpMethod

Gets the HTTP method.

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

MaxResults

The maximum number of results to return in a single response page. Leverage the page tokens to iterate through the entire collection.

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MethodName

Gets the method name.

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

PageToken

Page token, returned by a previous call to request the next page of results

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

ProjectId

Required. Project ID of the models to list.

Declaration
[RequestParameter("projectId", RequestParameterType.Path)]
public virtual string ProjectId { 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.Bigquery.v2.Data.ListModelsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Bigquery.v2.BigqueryBaseServiceRequest<Google.Apis.Bigquery.v2.Data.ListModelsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top