public sealed class ListExecutionsRequest : IMessage<ListExecutionsRequest>, IEquatable<ListExecutionsRequest>, IDeepCloneable<ListExecutionsRequest>, IBufferMessage, IMessage, IPageRequest
Request for the [ListExecutions][google.cloud.workflows.executions.v1beta.Executions.ListExecutions] method.
Implements
IMessage<ListExecutionsRequest>, IEquatable<ListExecutionsRequest>, IDeepCloneable<ListExecutionsRequest>, IBufferMessage, IMessage, IPageRequestNamespace
Google.Cloud.Workflows.Executions.V1BetaAssembly
Google.Cloud.Workflows.Executions.V1Beta.dll
Constructors
ListExecutionsRequest()
public ListExecutionsRequest()
ListExecutionsRequest(ListExecutionsRequest)
public ListExecutionsRequest(ListExecutionsRequest other)
Parameter | |
---|---|
Name | Description |
other | ListExecutionsRequest |
Properties
PageSize
public int PageSize { get; set; }
Maximum number of executions to return per call. Max supported value depends on the selected Execution view: it's 10000 for BASIC and 100 for FULL. The default value used if the field is not specified is 100, regardless of the selected view. Values greater than the max value will be coerced down to it.
Property Value | |
---|---|
Type | Description |
Int32 |
PageToken
public string PageToken { get; set; }
A page token, received from a previous ListExecutions
call.
Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to ListExecutions
must
match the call that provided the page token.
Property Value | |
---|---|
Type | Description |
String |
Parent
public string Parent { get; set; }
Required. Name of the workflow for which the executions should be listed. Format: projects/{project}/locations/{location}/workflows/{workflow}
Property Value | |
---|---|
Type | Description |
String |
ParentAsWorkflowName
public WorkflowName ParentAsWorkflowName { get; set; }
WorkflowName-typed view over the Parent resource name property.
Property Value | |
---|---|
Type | Description |
WorkflowName |
View
public ExecutionView View { get; set; }
Optional. A view defining which fields should be filled in the returned executions. The API will default to the BASIC view.
Property Value | |
---|---|
Type | Description |
ExecutionView |