Class ProjectsResource.LocationsResource.JobsResource.ExecutionsResource.ListRequest
Lists Executions from a Job. Results are sorted by creation time, descending.
Inheritance
ProjectsResource.LocationsResource.JobsResource.ExecutionsResource.ListRequest
Inherited Members
Namespace: Google.Apis.CloudRun.v2
Assembly: Google.Apis.CloudRun.v2.dll
Syntax
public class ProjectsResource.LocationsResource.JobsResource.ExecutionsResource.ListRequest : CloudRunBaseServiceRequest<GoogleCloudRunV2ListExecutionsResponse>, IClientServiceRequest<GoogleCloudRunV2ListExecutionsResponse>, 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
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PageSize
Maximum number of Executions to return in this call.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type | Description |
---|---|
int? |
PageToken
A page token received from a previous call to ListExecutions. All other parameters must match.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Parent
Required. The Execution from which the Executions should be listed. To list all Executions
across Jobs, use "-" instead of Job name. Format:
projects/{project}/locations/{location}/jobs/{job}
, where {project}
can be project id or
number.
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
ShowDeleted
If true, returns deleted (but unexpired) resources along with active ones.
Declaration
[RequestParameter("showDeleted", RequestParameterType.Query)]
public virtual bool? ShowDeleted { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()