Show / Hide Table of Contents

Class NamespacesResource.TasksResource.ListRequest

List tasks.

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

Continue

Optional. Optional encoded string to continue paging.

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

FieldSelector

Optional. Not supported by Cloud Run.

Declaration
[RequestParameter("fieldSelector", RequestParameterType.Query)]
public virtual string FieldSelector { 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<ListTasksResponse>.HttpMethod

IncludeUninitialized

Optional. Not supported by Cloud Run.

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

LabelSelector

Optional. Allows to filter resources based on a label. Supported operations are =, !=, exists, in, and notIn. For example, to list all tasks of execution "foo" in succeeded state: run.googleapis.com/execution=foo,run.googleapis.com/runningState=Succeeded. Supported states are:

  • Pending: Initial state of all tasks. The task has not yet started but eventually will. * Running: Container instances for this task are running or will be running shortly. * Succeeded: No more container instances to run for the task, and the last attempt succeeded. * Failed: No more container instances to run for the task, and the last attempt failed. This task has run out of retry attempts. * Cancelled: Task was running but got stopped because its parent execution has been aborted. * Abandoned: The task has not yet started and never will because its parent execution has been aborted.
Declaration
[RequestParameter("labelSelector", RequestParameterType.Query)]
public virtual string LabelSelector { get; set; }
Property Value
Type Description
string

Limit

Optional. The maximum number of records that should be returned.

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

MethodName

Gets the method name.

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

Parent

Required. The namespace from which the tasks should be listed. Replace {namespace} with the project ID or number. It takes the form namespaces/{namespace}. For example: namespaces/PROJECT_ID

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

ResourceVersion

Optional. Not supported by Cloud Run.

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

RestPath

Gets the REST path.

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

Watch

Optional. Not supported by Cloud Run.

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

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
CloudRunBaseServiceRequest<ListTasksResponse>.InitParameters()

Implements

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