Skip to main content

contexts_context_artifacts_and_executions

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

Overview

Namecontexts_context_artifacts_and_executions
TypeResource
Idgoogle.aiplatform.contexts_context_artifacts_and_executions

Fields

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

Methods

NameAccessible byRequired ParamsDescription
add_context_artifacts_and_executionsINSERTcontextsId, locationsId, metadataStoresId, projectsIdAdds a set of Artifacts and Executions to a Context. If any of the Artifacts or Executions have already been added to a Context, they are simply skipped.

INSERT example

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

/*+ create */
INSERT INTO google.aiplatform.contexts_context_artifacts_and_executions (
contextsId,
locationsId,
metadataStoresId,
projectsId,
artifacts,
executions
)
SELECT
'{{ contextsId }}',
'{{ locationsId }}',
'{{ metadataStoresId }}',
'{{ projectsId }}',
'{{ artifacts }}',
'{{ executions }}'
;