annotation_specs
Creates, updates, deletes, gets or lists a annotation_specs
resource.
Overview
Name | annotation_specs |
Type | Resource |
Id | google.aiplatform.annotation_specs |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Output only. Resource name of the AnnotationSpec. |
createTime | string | Output only. Timestamp when this AnnotationSpec was created. |
displayName | string | Required. The user-defined name of the AnnotationSpec. The name can be up to 128 characters long and can consist of any UTF-8 characters. |
etag | string | Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. |
updateTime | string | Output only. Timestamp when AnnotationSpec was last updated. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | annotationSpecsId, datasetsId, locationsId, projectsId | Gets 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 }}';