diff --git a/gitlab4j-api/src/main/java/org/gitlab4j/api/AuditEventApi.java b/gitlab4j-api/src/main/java/org/gitlab4j/api/AuditEventApi.java index e2c019e4..55ae4cac 100644 --- a/gitlab4j-api/src/main/java/org/gitlab4j/api/AuditEventApi.java +++ b/gitlab4j-api/src/main/java/org/gitlab4j/api/AuditEventApi.java @@ -25,16 +25,16 @@ public AuditEventApi(GitLabApi gitLabApi) { * *
GET /audit_events/
*
- * @param created_after Return group audit events created on or after the given time.
- * @param created_before Return group audit events created on or before the given time.
+ * @param createdAfter Return group audit events created on or after the given time.
+ * @param createdBefore Return group audit events created on or before the given time.
* @param entityType Return audit events for the given entity type. Valid values are: User, Group, or Project.
* @param entityId Return audit events for the given entity ID. Requires entityType attribute to be present.
* @return a List of group Audit events
* @throws GitLabApiException if any exception occurs
*/
- public ListGET /audit_events
*
- * @param created_after Return group audit events created on or after the given time.
- * @param created_before Return group audit events created on or before the given time.
+ * @param createdAfter Return group audit events created on or after the given time.
+ * @param createdBefore Return group audit events created on or before the given time.
* @param entityType Return audit events for the given entity type. Valid values are: User, Group, or Project.
* @param entityId Return audit events for the given entity ID. Requires entityType attribute to be present.
* @param itemsPerPage the number of Audit Event instances that will be fetched per page
@@ -52,11 +52,11 @@ public ListGET /groups/:id/audit_events
*
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path
- * @param created_after Group audit events created on or after the given time.
- * @param created_before Group audit events created on or before the given time.
+ * @param createdAfter Group audit events created on or after the given time.
+ * @param createdBefore Group audit events created on or before the given time.
* @return a List of group Audit events
* @throws GitLabApiException if any exception occurs
*/
- public ListGET /groups/:id/audit_events
*
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path
- * @param created_after Group audit events created on or after the given time.
- * @param created_before Group audit events created on or before the given time.
+ * @param createdAfter Group audit events created on or after the given time.
+ * @param createdBefore Group audit events created on or before the given time.
* @param itemsPerPage the number of Audit Event instances that will be fetched per page
* @return a Pager of group Audit events
* @throws GitLabApiException if any exception occurs
*/
public PagerGET /groups/:id/audit_events
*
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path
- * @param created_after Group audit events created on or after the given time.
- * @param created_before Group audit events created on or before the given time.
+ * @param createdAfter Group audit events created on or after the given time.
+ * @param createdBefore Group audit events created on or before the given time.
* @return a Stream of group Audit events
* @throws GitLabApiException if any exception occurs
*/
- public StreamGET /projects/:id/audit_events
*
* @param projectIdOrPath the project ID, path of the project, or a project instance holding the project ID or path
- * @param created_after Project audit events created on or after the given time.
- * @param created_before Project audit events created on or before the given time.
+ * @param createdAfter Project audit events created on or after the given time.
+ * @param createdBefore Project audit events created on or before the given time.
* @return a List of project Audit events
* @throws GitLabApiException if any exception occurs
*/
- public ListGET /projects/:id/audit_events
*
* @param projectIdOrPath the project ID, path of the project, or a Project instance holding the project ID or path
- * @param created_after Project audit events created on or after the given time.
- * @param created_before Project audit events created on or before the given time.
+ * @param createdAfter Project audit events created on or after the given time.
+ * @param createdBefore Project audit events created on or before the given time.
* @param itemsPerPage the number of Audit Event instances that will be fetched per page
* @return a Pager of project Audit events
* @throws GitLabApiException if any exception occurs
*/
public PagerGET /projects/:id/audit_events
*
* @param projectIdOrPath the project ID, path of the project, or a Project instance holding the project ID or path
- * @param created_after Project audit events created on or after the given time.
- * @param created_before Project audit events created on or before the given time.
+ * @param createdAfter Project audit events created on or after the given time.
+ * @param createdBefore Project audit events created on or before the given time.
* @return a Stream of project Audit events
* @throws GitLabApiException if any exception occurs
*/
- public Stream