Eugenio Romano d7db9adbf6
Update Doc 4.1.0 (#6215)
* docbuild

* docbuild

* doc license audit

* remove link redirect to testing
2020-10-08 18:33:57 +01:00

5.1 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Audit Service v3.9.0 Active 2020-08-12

Audit Service

Manages Audit apps and entries.

Class members

Methods

  • deleteAuditEntries(auditApplicationId: string, where: string): Observable<any>
    Permanently delete audit entries for an audit application.
    • auditApplicationId: string - The identifier of an audit application.
    • where: string - Audit entries to permanently delete for an audit application, given an inclusive time period or range of ids.
    • Returns Observable<any> -
  • deleteAuditEntry(auditApplicationId: string, auditEntryId: string): Observable<any>
    Permanently delete an audit entry.
    • auditApplicationId: string - The identifier of an audit application.
    • auditEntryId: string - The identifier of an audit entry.
    • Returns Observable<any> -
  • getAuditApp(auditApplicationId: string, opts?: any): Observable<AuditAppEntry>
    Get audit application info.
    • auditApplicationId: string - The identifier of an audit application.
    • opts: any - (Optional) (Optional) (Optional) Options.
    • Returns Observable<AuditAppEntry> -
  • getAuditApps(opts?: any): Observable<AuditAppPaging>
    List audit applications.
  • getAuditEntries(auditApplicationId: string, opts?: any): Observable<AuditEntryPaging>
    List audit entries for an audit application.
    • auditApplicationId: string - The identifier of an audit application.
    • opts: any - (Optional) (Optional) (Optional) Options.
    • Returns Observable<AuditEntryPaging> -
  • getAuditEntriesForNode(nodeId: string, opts?: any): Observable<AuditEntryPaging>
    List audit entries for a node.
    • nodeId: string - The identifier of a node.
    • opts: any - (Optional) (Optional) (Optional) Options.
    • Returns Observable<AuditEntryPaging> -
  • getAuditEntry(auditApplicationId: string, auditEntryId: string, opts?: any): Observable<AuditEntryEntry>
    Get audit entry.
    • auditApplicationId: string - The identifier of an audit application.
    • auditEntryId: string - The identifier of an audit entry.
    • opts: any - (Optional) (Optional) (Optional) Options.
    • Returns Observable<AuditEntryEntry> -
  • updateAuditApp(auditApplicationId: string, auditAppBodyUpdate: boolean, opts?: any): Observable<AuditApp|Function>
    Update audit application info.
    • auditApplicationId: string - The identifier of an audit application.
    • auditAppBodyUpdate: boolean - The audit application to update.
    • opts: any - (Optional) (Optional) (Optional) Options.
    • Returns Observable<AuditApp|Function> -