exemptedMembers = $exemptedMembers; } /** * @return string[] */ public function getExemptedMembers() { return $this->exemptedMembers; } /** * The log type that this config enables. * * Accepted values: LOG_TYPE_UNSPECIFIED, ADMIN_READ, DATA_WRITE, DATA_READ * * @param self::LOG_TYPE_* $logType */ public function setLogType($logType) { $this->logType = $logType; } /** * @return self::LOG_TYPE_* */ public function getLogType() { return $this->logType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleIamV1AuditLogConfig::class, 'Google_Service_CloudDataplex_GoogleIamV1AuditLogConfig');