Resource: Artifact
Instance of a general artifact.
name
string
Output only. The resource name of the Artifact.
displayName
string
user provided display name of the Artifact. May be up to 128 Unicode characters.
uri
string
The uniform resource identifier of the artifact file. May be empty if there is no actual artifact file.
etag
string
An eTag used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
labels
map (key: string, value: string)
The labels with user-defined metadata to organize your Artifacts.
label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one Artifact (System labels are excluded).
Output only. timestamp when this Artifact was created.
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z"
and "2014-10-02T15:01:23.045123456Z"
.
Output only. timestamp when this Artifact was last updated.
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z"
and "2014-10-02T15:01:23.045123456Z"
.
The state of this Artifact. This is a property of the Artifact, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines), and the system does not prescribe or check the validity of state transitions.
schemaTitle
string
The title of the schema describing the metadata.
Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
schemaVersion
string
The version of the schema in schemaName to use.
Schema title and version is expected to be registered in earlier Create Schema calls. And both are used together as unique identifiers to identify schemas within the local metadata store.
Properties of the Artifact. top level metadata keys' heading and trailing spaces will be trimmed. The size of this field should not exceed 200KB.
description
string
description of the Artifact
JSON representation |
---|
{
"name": string,
"displayName": string,
"uri": string,
"etag": string,
"labels": {
string: string,
...
},
"createTime": string,
"updateTime": string,
"state": enum ( |
State
Describes the state of the Artifact.
Enums | |
---|---|
STATE_UNSPECIFIED |
Unspecified state for the Artifact. |
PENDING |
A state used by systems like Vertex AI Pipelines to indicate that the underlying data item represented by this Artifact is being created. |
LIVE |
A state indicating that the Artifact should exist, unless something external to the system deletes it. |
Methods |
|
---|---|
|
Creates an Artifact associated with a MetadataStore. |
|
Deletes an Artifact. |
|
Retrieves a specific Artifact. |
|
Lists Artifacts in the MetadataStore. |
|
Updates a stored Artifact. |
|
Purges Artifacts. |
|
Retrieves lineage of an Artifact represented through Artifacts and Executions connected by Event edges and returned as a LineageSubgraph. |