circle-info
Squadcast is now SolarWinds Incident Response

V3AuditLogsAuditLogsExportHistoryResponse

Response model for audit logs export history

Example Usage

import { V3AuditLogsAuditLogsExportHistoryResponse } from "@solarwinds/squadcast-sdk-typescript/models";
import { RFCDate } from "@solarwinds/squadcast-sdk-typescript/types";

let value: V3AuditLogsAuditLogsExportHistoryResponse = {
  id: "<id>",
  name: "<value>",
  description: "imaginary developing uselessly",
  exportedAt: "<value>",
  requestedBy: {
    userID: "<id>",
    userName: "Rosemary58",
    userEmail: "<value>",
    fullName: "Hannah Toy",
  },
  downloadLink: "<value>",
  status: "<value>",
  filters: {
    startDate: new RFCDate("2024-11-23"),
    endDate: new RFCDate("2024-04-13"),
  },
};

Fields

Field
Type
Required
Description

id

string

✔️

N/A

name

string

✔️

N/A

description

string

✔️

N/A

exportedAt

string

✔️

N/A

requestedBy

✔️

Represents an actor (user) in audit logs

downloadLink

string

✔️

N/A

status

string

✔️

N/A

filters

✔️

Represents filters used in audit log queries

Last updated