Show / Hide Table of Contents

Class ProjectsResource.JobsResource.ListRequest

Lists the jobs in the project. If there are no jobs that match the request parameters, the list request returns an empty response body: {}.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>
ProjectsResource.JobsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudMlV1ListJobsResponse>
IClientServiceRequest
Inherited Members
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.Xgafv
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.AccessToken
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.Alt
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.Callback
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.Fields
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.Key
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.OauthToken
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.PrettyPrint
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.QuotaUser
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.UploadType
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.Execute()
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.CreateRequest(bool?)
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.GetBody()
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ETagAction
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudMlV1ListJobsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudMachineLearningEngine.v1
Assembly: Google.Apis.CloudMachineLearningEngine.v1.dll
Syntax
public class ProjectsResource.JobsResource.ListRequest : CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>, IClientServiceRequest<GoogleCloudMlV1ListJobsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, string)

Constructs a new List request.

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

Properties

Filter

Optional. Specifies the subset of jobs to retrieve. You can filter on the value of one or more attributes of the job object. For example, retrieve jobs with a job identifier that starts with 'census': gcloud ai-platform jobs list --filter='jobId:census*' List all failed jobs with names that start with 'rnn': gcloud ai-platform jobs list --filter='jobId:rnn* AND state:FAILED' For more examples, see the guide to monitoring jobs.

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
string

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
string
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudMachineLearningEngine.v1.Data.GoogleCloudMlV1ListJobsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudMachineLearningEngine.v1.Data.GoogleCloudMlV1ListJobsResponse>.MethodName

PageSize

Optional. The number of jobs to retrieve per "page" of results. If there are more remaining results than this number, the response message will contain a valid value in the next_page_token field. The default value is 20, and the maximum page size is 100.

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

PageToken

Optional. A page token to request the next page of results. You get the token from the next_page_token field of the response from the previous call.

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

Parent

Required. The name of the project for which to list jobs.

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

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudMachineLearningEngine.v1.Data.GoogleCloudMlV1ListJobsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudMachineLearningEngineBaseServiceRequest<GoogleCloudMlV1ListJobsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top Generated by DocFX