| Name |
Type |
Description |
Notes |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[default to undefined] |
| _id |
string |
The ID of the audit log entry |
[default to undefined] |
| _accountId |
string |
The ID of the account to which this audit log entry belongs |
[default to undefined] |
| date |
number |
|
[default to undefined] |
| accesses |
Array<ResourceAccess> |
Details on the actions performed and resources acted on in this audit log entry |
[default to undefined] |
| kind |
string |
|
[default to undefined] |
| name |
string |
The name of the resource this audit log entry refers to |
[default to undefined] |
| description |
string |
Description of the change recorded in the audit log entry |
[default to undefined] |
| shortDescription |
string |
Shorter version of the change recorded in the audit log entry |
[default to undefined] |
| comment |
string |
Optional comment for the audit log entry |
[optional] [default to undefined] |
| subject |
SubjectDataRep |
|
[optional] [default to undefined] |
| member |
MemberDataRep |
|
[optional] [default to undefined] |
| token |
TokenSummary |
|
[optional] [default to undefined] |
| app |
AuthorizedAppDataRep |
|
[optional] [default to undefined] |
| titleVerb |
string |
The action and resource recorded in this audit log entry |
[optional] [default to undefined] |
| title |
string |
A description of what occurred, in the format <code>member</code> <code>titleVerb</code> <code>target</code> |
[optional] [default to undefined] |
| target |
TargetResourceRep |
|
[optional] [default to undefined] |
| parent |
ParentResourceRep |
|
[optional] [default to undefined] |
import { AuditLogEntryListingRep } from 'launchdarkly-api-typescript';
const instance: AuditLogEntryListingRep = {
_links,
_id,
_accountId,
date,
accesses,
kind,
name,
description,
shortDescription,
comment,
subject,
member,
token,
app,
titleVerb,
title,
target,
parent,
};
[Back to Model list] [Back to API list] [Back to README]