Class TagField (3.4.3)

TagField(mapping=None, *, ignore_unknown_fields=False, **kwargs)

Contains the value and additional information on a field within a Tag.

Attributes

NameDescription
display_name str
Output only. The display name of this field.
double_value float
The value of a tag field with a double type.
string_value str
The value of a tag field with a string type. The maximum length is 2000 UTF-8 characters.
bool_value bool
The value of a tag field with a boolean type.
timestamp_value google.protobuf.timestamp_pb2.Timestamp
The value of a tag field with a timestamp type.
enum_value google.cloud.datacatalog_v1.types.TagField.EnumValue
The value of a tag field with an enum type. This value must be one of the allowed values listed in this enum.
richtext_value str
The value of a tag field with a rich text type. The maximum length is 10 MiB as this value holds HTML descriptions including encoded images. The maximum length of the text without images is 100 KiB.
order int
Output only. The order of this field with respect to other fields in this tag. Can be set by Tag. For example, a higher value can indicate a more important field. The value can be negative. Multiple fields can have the same order, and field orders within a tag don't have to be sequential.

Classes

EnumValue

EnumValue(mapping=None, *, ignore_unknown_fields=False, **kwargs)

An enum value. .. attribute:: display_name

The display name of the enum value.

:type: str