executions_execution_events
Creates, updates, deletes, gets or lists a executions_execution_events
resource.
Overview
Name | executions_execution_events |
Type | Resource |
Id | google.aiplatform.executions_execution_events |
Fields
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
add_execution_events | INSERT | executionsId, locationsId, metadataStoresId, projectsId | Adds 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.
- All Properties
- Manifest
/*+ create */
INSERT INTO google.aiplatform.executions_execution_events (
executionsId,
locationsId,
metadataStoresId,
projectsId,
events
)
SELECT
'{{ executionsId }}',
'{{ locationsId }}',
'{{ metadataStoresId }}',
'{{ projectsId }}',
'{{ events }}'
;
- name: your_resource_model_name
props:
- name: events
value:
- - name: eventTime
value: string
- name: execution
value: string
- name: labels
value: object
- name: type
value: string
- name: artifact
value: string