| IDRARestServerGetAuditReport Method |
Get Audit Reports generated from DRA and auditing servers configured.
UriTemplate: /dra/auditReport/get
Namespace:
NetIQ.DRA.RestServiceLibrary
Assembly:
NetIQ.DRA.RestServiceLibrary (in NetIQ.DRA.RestServiceLibrary.dll) Version: 10.2.2.1
Syntax [OperationContractAttribute]
[WebInvokeAttribute(Method = "POST", ResponseFormat = WebMessageFormat.Json,
RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "/dra/auditReport/get")]
Stream GetAuditReport(
string transactionId,
int reportType,
string[] identifiers,
string classType,
string startDate,
string endDate,
int rows,
int pageSize,
int pageNo,
ReportingServer[] servers,
ConnectionParameters connectionParameters
)
<OperationContractAttribute>
<WebInvokeAttribute(Method := "POST", ResponseFormat := WebMessageFormat.Json,
RequestFormat := WebMessageFormat.Json, BodyStyle := WebMessageBodyStyle.Wrapped,
UriTemplate := "/dra/auditReport/get")>
Function GetAuditReport (
transactionId As String,
reportType As Integer,
identifiers As String(),
classType As String,
startDate As String,
endDate As String,
rows As Integer,
pageSize As Integer,
pageNo As Integer,
servers As ReportingServer(),
connectionParameters As ConnectionParameters
) As Stream
Parameters
- transactionId
- Type: SystemString
Unique transaction ID to hold transaction details to identify the request is new or fetch data from snapshot. - reportType
- Type: SystemInt32
The type of report. Currently, two types of report type 'Changes Made To' and 'Changes Made By' are supported. - identifiers
- Type: SystemString
A list of object identifiers. The format can be distinguished names, OnePoint paths, LDAP paths, or friendly paths. - classType
- Type: SystemString
The class of object specified in identifiers. - startDate
- Type: SystemString
The start time and date of the date range to query for changes. - endDate
- Type: SystemString
The end time and date of the date range to query for changes. - rows
- Type: SystemInt32
Optional, number of result rows to fetch from server. Default is 100. - pageSize
- Type: SystemInt32
Optional, number of report data per page. Default is 25. - pageNo
- Type: SystemInt32
Conditional, page number of report data required during subsequent calls. - servers
- Type: NetIQ.DRA.Common.Rest.DataModelsReportingServer
Optional, array of ReportingServer to query for report results. Each ReportingServer should specify serverName and serverType - connectionParameters
- Type: NetIQ.DRA.Common.Rest.DataModelsConnectionParameters
Optional ConnectionParameters to specify a DRA server and Assistant Admin credentials.
Return Value
Type:
StreamA
GetChangeHistoryReportResponse containing the operation results.
See Also