Skip to main content

AuditLogActorType

The type of actor that performed an audit-logged action.

Every audit log event records who (or what) triggered it. The actor type tells you whether the action was performed by a human, an automated system, or a deployment process.

enum AuditLogActorType {
ACCOUNT
SERVICE_ACCOUNT
DEPLOYMENT
SYSTEM
}

Values

AuditLogActorType.ACCOUNT {#account}

A human user authenticated with their personal account.

AuditLogActorType.SERVICE_ACCOUNT {#service-account}

A service account authenticated via API key or access token.

AuditLogActorType.DEPLOYMENT {#deployment}

An automated deployment process (e.g., Terraform apply).

AuditLogActorType.SYSTEM {#system}

An internal system action with no specific user or service account. Also used for legacy events recorded before actor tracking was introduced.

Member Of

AuditLogActorTypeFilter input ● V1AuditLogActor object