Skip to main content

execution_lineage_subgraph

Creates, updates, deletes, gets or lists an execution_lineage_subgraph resource.

Overview

Nameexecution_lineage_subgraph
TypeResource
Idgoogle.aiplatform.execution_lineage_subgraph

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
artifactsarrayThe Artifact nodes in the subgraph.
eventsarrayThe Event edges between Artifacts and Executions in the subgraph.
executionsarrayThe Execution nodes in the subgraph.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
query_execution_inputs_and_outputsselectprojectsId, locationsId, metadataStoresId, executionsIdObtains 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.

NameDatatypeDescription
executionsIdstring
locationsIdstring
metadataStoresIdstring
projectsIdstring

SELECT examples

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;