GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation deletes a storage limit exclusion for a specific namespace in GitLab. It is useful for managing storage quotas by removing exceptions that allow certain namespaces to exceed storage limits. For example, an administrator can use this operation to revoke storage limit exclusions for a project or group namespace to enforce storage policies.

Use Case Examples

  1. Deleting a storage limit exclusion for a namespace with ID 12345 to enforce storage limits.
  2. Removing storage limit exceptions for a group namespace to control storage usage.

Properties

Name Meaning
Skip Authentication Whether to skip authentication for the request.
Authentication The authentication method used for the request, defaulting to GitLab API key.
baseUrl The base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET but DELETE is used for this operation.
Path Parameters Parameters to be included in the request path, specifically the 'id' of the namespace to delete the storage limit exclusion for.

Output

JSON

  • response - The response from the GitLab API after deleting the storage limit exclusion, typically confirming success or failure.

Dependencies

  • GitLab API key credential for authentication.

Troubleshooting

  • Ensure the 'id' path parameter is correctly set to a valid namespace ID; otherwise, the API will return an error.
  • Authentication errors may occur if the GitLab API key is missing or invalid; verify credentials are correctly configured.
  • Network or base URL issues can cause request failures; confirm the baseUrl is correct and accessible.

Links

Discussion