Source code for models.gcp_tag_type_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class GcpTagTypeEnum(object): """Implementation of the 'GcpTagTypeEnum' enum. Specifies the tag attribute type of GCP. Going forward, there will be an additional TagTypes for AWS as well. Specifies the type of the tag GCP entity refers to. 'kNetworkTag' indicates a network tag present on instances. 'kLabel' indicates a label (key-value pair) present on instances. 'kCustomMetadata' indicates custom Metadata (key-value pair) present on instances. """ KNETWORKTAG = 'kNetworkTag' KLABEL = 'kLabel' KCUSTOMMETADATA = 'kCustomMetadata'