Skip to main content

annotation_specs

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

Overview

Nameannotation_specs
TypeResource
Idgoogle.aiplatform.annotation_specs

Fields

NameDatatypeDescription
namestringOutput only. Resource name of the AnnotationSpec.
createTimestringOutput only. Timestamp when this AnnotationSpec was created.
displayNamestringRequired. The user-defined name of the AnnotationSpec. The name can be up to 128 characters long and can consist of any UTF-8 characters.
etagstringOptional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens.
updateTimestringOutput only. Timestamp when AnnotationSpec was last updated.

Methods

NameAccessible byRequired ParamsDescription
getSELECTannotationSpecsId, datasetsId, locationsId, projectsIdGets an AnnotationSpec.

SELECT examples

Gets an AnnotationSpec.

SELECT
name,
createTime,
displayName,
etag,
updateTime
FROM google.aiplatform.annotation_specs
WHERE annotationSpecsId = '{{ annotationSpecsId }}'
AND datasetsId = '{{ datasetsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';