Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.JobsResource.ListRequest

Lists jobs.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<ListJobsResponse>
CloudSchedulerBaseServiceRequest<ListJobsResponse>
ProjectsResource.LocationsResource.JobsResource.ListRequest
Implements
IClientServiceRequest<ListJobsResponse>
IClientServiceRequest
Inherited Members
CloudSchedulerBaseServiceRequest<ListJobsResponse>.Xgafv
CloudSchedulerBaseServiceRequest<ListJobsResponse>.AccessToken
CloudSchedulerBaseServiceRequest<ListJobsResponse>.Alt
CloudSchedulerBaseServiceRequest<ListJobsResponse>.Callback
CloudSchedulerBaseServiceRequest<ListJobsResponse>.Fields
CloudSchedulerBaseServiceRequest<ListJobsResponse>.Key
CloudSchedulerBaseServiceRequest<ListJobsResponse>.OauthToken
CloudSchedulerBaseServiceRequest<ListJobsResponse>.PrettyPrint
CloudSchedulerBaseServiceRequest<ListJobsResponse>.QuotaUser
CloudSchedulerBaseServiceRequest<ListJobsResponse>.UploadType
CloudSchedulerBaseServiceRequest<ListJobsResponse>.UploadProtocol
ClientServiceRequest<ListJobsResponse>.Execute()
ClientServiceRequest<ListJobsResponse>.ExecuteAsStream()
ClientServiceRequest<ListJobsResponse>.ExecuteAsync()
ClientServiceRequest<ListJobsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListJobsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListJobsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListJobsResponse>.CreateRequest(bool?)
ClientServiceRequest<ListJobsResponse>.GenerateRequestUri()
ClientServiceRequest<ListJobsResponse>.GetBody()
ClientServiceRequest<ListJobsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<ListJobsResponse>.ETagAction
ClientServiceRequest<ListJobsResponse>.ModifyRequest
ClientServiceRequest<ListJobsResponse>.ValidateParameters
ClientServiceRequest<ListJobsResponse>.ApiVersion
ClientServiceRequest<ListJobsResponse>.RequestParameters
ClientServiceRequest<ListJobsResponse>.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.CloudScheduler.v1beta1
Assembly: Google.Apis.CloudScheduler.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.JobsResource.ListRequest : CloudSchedulerBaseServiceRequest<ListJobsResponse>, IClientServiceRequest<ListJobsResponse>, 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

filter can be used to specify a subset of jobs. If filter equals target_config="HttpConfig", then the http target jobs are retrieved. If filter equals target_config="PubSubConfig", then the Pub/Sub target jobs are retrieved. If filter equals labels.foo=value1 labels.foo=value2 then only jobs which are labeled with foo=value1 AND foo=value2 will be returned.

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
ClientServiceRequest<ListJobsResponse>.HttpMethod

LegacyAppEngineCron

This field is used to manage the legacy App Engine Cron jobs using the Cloud Scheduler API. If the field is set to true, the jobs in the __cron queue will be listed instead.

Declaration
[RequestParameter("legacyAppEngineCron", RequestParameterType.Query)]
public virtual bool? LegacyAppEngineCron { get; set; }
Property Value
Type Description
bool?

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<ListJobsResponse>.MethodName

PageSize

Requested page size. The maximum page size is 500. If unspecified, the page size will be the maximum. Fewer jobs than requested might be returned, even if more jobs exist; use next_page_token to determine if more jobs exist.

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

PageToken

A token identifying a page of results the server will return. To request the first page results, page_token must be empty. To request the next page of results, page_token must be the value of next_page_token returned from the previous call to ListJobs. It is an error to switch the value of filter or order_by while iterating through pages.

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

Parent

Required. The location name. For example: projects/PROJECT_ID/locations/LOCATION_ID.

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
ClientServiceRequest<ListJobsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudSchedulerBaseServiceRequest<ListJobsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX