execution_lineage_subgraph
Creates, updates, deletes, gets or lists an execution_lineage_subgraph
resource.
Overview
Name | execution_lineage_subgraph |
Type | Resource |
Id | google.aiplatform.execution_lineage_subgraph |
Fields
The following fields are returned by SELECT
queries:
- query_execution_inputs_and_outputs
Successful response
Name | Datatype | Description |
---|---|---|
artifacts | array | The Artifact nodes in the subgraph. |
events | array | The Event edges between Artifacts and Executions in the subgraph. |
executions | array | The Execution nodes in the subgraph. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
query_execution_inputs_and_outputs | select | projectsId , locationsId , metadataStoresId , executionsId | Obtains the set of input and output Artifacts for this Execution, in the form of LineageSubgraph that also contains the Execution and connecting Events. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
executionsId | string | |
locationsId | string | |
metadataStoresId | string | |
projectsId | string |
SELECT
examples
- query_execution_inputs_and_outputs
Obtains the set of input and output Artifacts for this Execution, in the form of LineageSubgraph that also contains the Execution and connecting Events.
SELECT
artifacts,
events,
executions
FROM google.aiplatform.execution_lineage_subgraph
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND metadataStoresId = '{{ metadataStoresId }}' -- required
AND executionsId = '{{ executionsId }}' -- required;