Skip to main content

activity.miloapis.com/v1alpha1

Package v1alpha1 contains API Schema definitions for the activity v1alpha1 API group

AuditLogFacetsQuerySpec

AuditLogFacetsQuerySpec defines which facets to retrieve from audit logs. Appears in:

AuditLogFacetsQueryStatus

AuditLogFacetsQueryStatus contains the facet results. Appears in:

AuditLogQuery

AuditLogQuery searches your control plane’s audit logs. Use this to investigate incidents, track resource changes, generate compliance reports, or analyze user activity. Results are returned in the Status field, ordered newest-first. Quick Start: apiVersion: activity.miloapis.com/v1alpha1 kind: AuditLogQuery metadata: name: recent-deletions spec: startTime: “now-30d” # last 30 days endTime: “now” filter: “verb == ‘delete’” # optional: narrow your search limit: 100 Time Formats:
  • Relative: “now-30d” (great for dashboards and recurring queries)
  • Absolute: “2024-01-01T00:00:00Z” (great for historical analysis)
Appears in:

AuditLogQuerySpec

AuditLogQuerySpec defines the search parameters. Required: startTime and endTime define your search window. Optional: filter (narrow results), limit (page size, default 100), continue (pagination). Performance: Smaller time ranges and specific filters perform better. The maximum time window is typically 30 days. If your range is too large, you’ll get an error with guidance on splitting your query into smaller chunks. Appears in:

AuditLogQueryStatus

AuditLogQueryStatus contains the query results and pagination state. Appears in:

FacetResult

FacetResult contains the distinct values for a single facet. Appears in:

FacetSpec

FacetSpec defines a single facet to retrieve. Appears in:

FacetTimeRange

FacetTimeRange specifies the time window for facet queries. Appears in:

FacetValue

FacetValue represents a single distinct value with its occurrence count. Appears in:
Last modified on March 30, 2026