-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes for execution summary outline API (#543)
- Loading branch information
1 parent
bd77386
commit 4d89fad
Showing
13 changed files
with
935 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# NodeExecutionOutline | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**NodeType** | **string** | | [optional] [default to null] | ||
**NodeGroup** | **string** | | [optional] [default to null] | ||
**NodeIdentifier** | **string** | | [optional] [default to null] | ||
**Name** | **string** | | [optional] [default to null] | ||
**NodeUuid** | **string** | | [optional] [default to null] | ||
**Status** | **string** | This is the Execution Status of the entity | [optional] [default to null] | ||
**StartTs** | **int64** | | [optional] [default to null] | ||
**EndTs** | **int64** | | [optional] [default to null] | ||
**FailureInfo** | **string** | | [optional] [default to null] | ||
**NodeExecutionId** | **string** | | [optional] [default to null] | ||
**EdgeLayoutList** | [***EdgeLayoutList**](EdgeLayoutList.md) | | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# PipelineExecutionOutline | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**AccountIdentifier** | **string** | | [default to null] | ||
**OrgIdentifier** | **string** | | [default to null] | ||
**ProjectIdentifier** | **string** | | [default to null] | ||
**PipelineIdentifier** | **string** | | [optional] [default to null] | ||
**PlanExecutionId** | **string** | | [optional] [default to null] | ||
**Name** | **string** | | [optional] [default to null] | ||
**StartingNodeId** | **string** | | [optional] [default to null] | ||
**Status** | **string** | This is the Execution Status of the entity | [optional] [default to null] | ||
**FailureInfo** | **string** | | [optional] [default to null] | ||
**StagesMap** | [**map[string]NodeExecutionOutline**](NodeExecutionOutline.md) | | [optional] [default to null] | ||
**Modules** | **[]string** | | [optional] [default to null] | ||
**StartTs** | **int64** | | [optional] [default to null] | ||
**EndTs** | **int64** | | [optional] [default to null] | ||
**CreatedAt** | **int64** | | [optional] [default to null] | ||
**LastUpdatedAt** | **int64** | | [optional] [default to null] | ||
**RuntimeInputYaml** | **string** | | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# PipelineExecutionOutlineFilterDto | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Status** | **[]string** | | [optional] [default to null] | ||
**TimeRange** | [***TimeRange**](TimeRange.md) | | [optional] [default to null] | ||
**PipelineIdentifier** | **string** | | [optional] [default to null] | ||
**PlanExecutionIds** | **[]string** | | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# TimeRange | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**StartTime** | **int64** | | [optional] [default to null] | ||
**EndTime** | **int64** | | [optional] [default to null] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
Oops, something went wrong.