entity = $entity; } /** * @return string */ public function getEntity() { return $this->entity; } /** * Type of entity. * * Accepted values: ENTITY_TYPE_UNSPECIFIED, TABLE, FILESET * * @param self::ENTITY_TYPE_* $entityType */ public function setEntityType($entityType) { $this->entityType = $entityType; } /** * @return self::ENTITY_TYPE_* */ public function getEntityType() { return $this->entityType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDataplexV1GovernanceEventEntity::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1GovernanceEventEntity');