Skip to main content

executions_execution_events

Creates, updates, deletes, gets or lists a executions_execution_events resource.

Overview

Nameexecutions_execution_events
TypeResource
Idgoogle.aiplatform.executions_execution_events

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
add_execution_eventsINSERTexecutionsId, locationsId, metadataStoresId, projectsIdAdds Events to the specified Execution. An Event indicates whether an Artifact was used as an input or output for an Execution. If an Event already exists between the Execution and the Artifact, the Event is skipped.

INSERT example

Use the following StackQL query and manifest file to create a new executions_execution_events resource.

/*+ create */
INSERT INTO google.aiplatform.executions_execution_events (
executionsId,
locationsId,
metadataStoresId,
projectsId,
events
)
SELECT
'{{ executionsId }}',
'{{ locationsId }}',
'{{ metadataStoresId }}',
'{{ projectsId }}',
'{{ events }}'
;