GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node interacts with the GitLab API to update application plan limits via a PUT request to the /api/v4/application/plan_limits endpoint. It is useful for automating the management of plan limits in GitLab applications, such as adjusting resource quotas or usage limits programmatically.

Use Case Examples

  1. Automatically update GitLab application plan limits based on usage metrics.
  2. Integrate plan limit adjustments into a CI/CD pipeline to enforce resource constraints.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL for the GitLab instance, defaulting to https://gitlab.com.
Method The HTTP method to use for the request, defaulting to PUT for this operation.
Parameter Schema Defines the schema for the parameters required by the putApiV4ApplicationPlanLimits operation.
Request Body Schema Defines the schema for the request body for the putApiV4ApplicationPlanLimits operation.
Request Path The API endpoint path for updating application plan limits, fixed to /api/v4/application/plan_limits.

Output

JSON

  • response - The JSON response from the GitLab API after updating the application plan limits.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the GitLab API key credential is correctly configured and has sufficient permissions to update application plan limits.
  • Verify the baseUrl is correct and accessible, especially if using a self-hosted GitLab instance.
  • Check that the request body conforms to the expected schema for the putApiV4ApplicationPlanLimits operation to avoid validation errors.

Links

Discussion