Skip to content

Commit

Permalink
feat: add UNAVAILABLE and QUEUED to state enum
Browse files Browse the repository at this point in the history
feat: add LOG_NONE to call_log_level
feat: add status, labels, duration and state_error fields to Execution
feat: add filter and order_by fields to ListExecutionsRequest

PiperOrigin-RevId: 557594531

Source-Link: googleapis/googleapis@6ba6f91

Source-Link: googleapis/googleapis-gen@6c079c0
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuV29ya2Zsb3dzLkV4ZWN1dGlvbnMuVjEvLk93bEJvdC55YW1sIiwiaCI6IjZjMDc5YzA4MjVkZjg4YmNjYzZiYzExMTM1Y2E5ZWY3MTlkNzE3ZTYifQ==
  • Loading branch information
gcf-owl-bot[bot] authored and amanda-tarafa committed Aug 17, 2023
1 parent eb60aed commit 21221cb
Show file tree
Hide file tree
Showing 6 changed files with 1,213 additions and 209 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public async Task ListExecutionsRequestObjectAsync()
{
ParentAsWorkflowName = WorkflowName.FromProjectLocationWorkflow("[PROJECT]", "[LOCATION]", "[WORKFLOW]"),
View = ExecutionView.Unspecified,
Filter = "",
OrderBy = "",
};
// Make the request
PagedAsyncEnumerable<ListExecutionsResponse, Execution> response = executionsClient.ListExecutionsAsync(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ public void ListExecutionsRequestObject()
{
ParentAsWorkflowName = WorkflowName.FromProjectLocationWorkflow("[PROJECT]", "[LOCATION]", "[WORKFLOW]"),
View = ExecutionView.Unspecified,
Filter = "",
OrderBy = "",
};
// Make the request
PagedEnumerable<ListExecutionsResponse, Execution> response = executionsClient.ListExecutions(request);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
"segments": [
{
"start": 20,
"end": 80,
"end": 82,
"type": "FULL"
},
{
"start": 37,
"end": 78,
"end": 80,
"type": "SHORT"
}
]
Expand Down Expand Up @@ -97,12 +97,12 @@
"segments": [
{
"start": 20,
"end": 82,
"end": 84,
"type": "FULL"
},
{
"start": 39,
"end": 80,
"end": 82,
"type": "SHORT"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public void ListExecutionsRequestObject()
{
ParentAsWorkflowName = WorkflowName.FromProjectLocationWorkflow("[PROJECT]", "[LOCATION]", "[WORKFLOW]"),
View = ExecutionView.Unspecified,
Filter = "",
OrderBy = "",
};
// Make the request
PagedEnumerable<ListExecutionsResponse, Execution> response = executionsClient.ListExecutions(request);
Expand Down Expand Up @@ -86,6 +88,8 @@ public async Task ListExecutionsRequestObjectAsync()
{
ParentAsWorkflowName = WorkflowName.FromProjectLocationWorkflow("[PROJECT]", "[LOCATION]", "[WORKFLOW]"),
View = ExecutionView.Unspecified,
Filter = "",
OrderBy = "",
};
// Make the request
PagedAsyncEnumerable<ListExecutionsResponse, Execution> response = executionsClient.ListExecutionsAsync(request);
Expand Down

0 comments on commit 21221cb

Please sign in to comment.