/// <summary>
 /// Gets Audit logs.
 /// </summary>
 /// <remarks>
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline.
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a Boolean condition.
 /// </param>
 /// <param name='select'>
 /// Selects which properties to include in the response.
 /// </param>
 /// <param name='orderby'>
 /// Sorts the results.
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results.
 /// </param>
 /// <param name='count'>
 /// Includes a count of the matching results in the response.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataResponseListAuditLogDto> GetAuditLogsAsync(this IAuditLogs operations, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.GetAuditLogsWithHttpMessagesAsync(expand, filter, select, orderby, top, skip, count, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
        /// <summary>
        /// Returns a CSV containing the filtered audit.
        /// </summary>
        /// <remarks>
        /// Required permissions: Audit.View.
        /// </remarks>
        /// <param name='operations'>
        /// The operations group for this extension method.
        /// </param>
        /// <param name='expand'>
        /// Expands related entities inline.
        /// </param>
        /// <param name='filter'>
        /// Filters the results, based on a Boolean condition.
        /// </param>
        /// <param name='select'>
        /// Selects which properties to include in the response.
        /// </param>
        /// <param name='orderby'>
        /// Sorts the results.
        /// </param>
        /// <param name='top'>
        /// Returns only the first n results.
        /// </param>
        /// <param name='skip'>
        /// Skips the first n results.
        /// </param>
        /// <param name='count'>
        /// Includes a count of the matching results in the odata-count header.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        public static async Task <Stream> ReportsAsync(this IAuditLogs operations, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
        {
            var _result = await operations.ReportsWithHttpMessagesAsync(expand, filter, select, orderby, top, skip, count, null, cancellationToken).ConfigureAwait(false);

            _result.Request.Dispose();
            return(_result.Body);
        }
        /// <summary>
        /// Returns a CSV containing the filtered audit.
        /// </summary>
        /// <remarks>
        /// Required permissions: Audit.View.
        /// </remarks>
        /// <param name='operations'>
        /// The operations group for this extension method.
        /// </param>
        /// <param name='cancellationToken'>
        /// The cancellation token.
        /// </param>
        public static async Task <Stream> ReportsAsync(this IAuditLogs operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
        {
            var _result = await operations.ReportsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false);

            _result.Request.Dispose();
            return(_result.Body);
        }
Ejemplo n.º 4
0
 /// <summary>
 /// Returns a CSV containing the filtered audit.
 /// </summary>
 /// <remarks>
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <object> ReportsAsync(this IAuditLogs operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.ReportsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 public IActionResult Get([FromQuery] AuditLogsSearchDto search, [FromServices] IAuditLogs query)
 {
     return(Ok(executor.ExecuteQuery(query, search)));
 }
 /// <summary>
 /// Gets Audit logs.
 /// </summary>
 /// <remarks>
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='expand'>
 /// Expands related entities inline.
 /// </param>
 /// <param name='filter'>
 /// Filters the results, based on a Boolean condition.
 /// </param>
 /// <param name='select'>
 /// Selects which properties to include in the response.
 /// </param>
 /// <param name='orderby'>
 /// Sorts the results.
 /// </param>
 /// <param name='top'>
 /// Returns only the first n results.
 /// </param>
 /// <param name='skip'>
 /// Skips the first n results.
 /// </param>
 /// <param name='count'>
 /// Includes a count of the matching results in the response.
 /// </param>
 public static ODataResponseListAuditLogDto GetAuditLogs(this IAuditLogs operations, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), int?top = default(int?), int?skip = default(int?), bool?count = default(bool?))
 {
     return(operations.GetAuditLogsAsync(expand, filter, select, orderby, top, skip, count).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Returns audit log details by audit log id
 /// </summary>
 /// <remarks>
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='auditLogId'>
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataResponseListAuditLogEntityDto> GetAuditLogDetailsByAuditlogidAsync(this IAuditLogs operations, long auditLogId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
 {
     using (var _result = await operations.GetAuditLogDetailsByAuditlogidWithHttpMessagesAsync(auditLogId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Returns audit log details by audit log id
 /// </summary>
 /// <remarks>
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='auditLogId'>
 /// </param>
 public static ODataResponseListAuditLogEntityDto GetAuditLogDetailsByAuditlogid(this IAuditLogs operations, long auditLogId)
 {
     return(operations.GetAuditLogDetailsByAuditlogidAsync(auditLogId).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Returns audit log details by audit log id
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Audit or Audit.Read.
 ///
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='auditLogId'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ODataValueOfIEnumerableOfAuditLogEntityDto> GetAuditLogDetailsByAuditlogidAsync(this IAuditLogs operations, long auditLogId, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), bool?count = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetAuditLogDetailsByAuditlogidWithHttpMessagesAsync(auditLogId, expand, filter, select, orderby, count, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
 /// <summary>
 /// Returns audit log details by audit log id
 /// </summary>
 /// <remarks>
 /// Client Credentials Flow required permissions: Audit or Audit.Read.
 ///
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='auditLogId'>
 /// </param>
 /// <param name='expand'>
 /// Indicates the related entities to be represented inline. The maximum depth
 /// is 2.
 /// </param>
 /// <param name='filter'>
 /// Restricts the set of items returned. The maximum number of expressions is
 /// 100.
 /// </param>
 /// <param name='select'>
 /// Limits the properties returned in the result.
 /// </param>
 /// <param name='orderby'>
 /// Specifies the order in which items are returned. The maximum number of
 /// expressions is 5.
 /// </param>
 /// <param name='count'>
 /// Indicates whether the total count of items within a collection are returned
 /// in the result.
 /// </param>
 public static ODataValueOfIEnumerableOfAuditLogEntityDto GetAuditLogDetailsByAuditlogid(this IAuditLogs operations, long auditLogId, string expand = default(string), string filter = default(string), string select = default(string), string orderby = default(string), bool?count = default(bool?))
 {
     return(operations.GetAuditLogDetailsByAuditlogidAsync(auditLogId, expand, filter, select, orderby, count).GetAwaiter().GetResult());
 }
 /// <summary>
 /// Returns a CSV containing the filtered audit.
 /// </summary>
 /// <remarks>
 /// Required permissions: Audit.View.
 /// </remarks>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 public static Stream Reports(this IAuditLogs operations)
 {
     return(operations.ReportsAsync().GetAwaiter().GetResult());
 }