/// <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>
 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());
 }