GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation allows updating the Google Cloud Platform Artifact Registry integration settings for a specific GitLab group by making a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/google-cloud-platform-artifact-registry`. It is useful for automating the management of group-level integrations in GitLab, such as configuring artifact registry settings programmatically.

Use Case Examples

  1. Updating the Artifact Registry integration settings for a GitLab group with ID 12345 to enable or modify its configuration.
  2. Automating the integration setup for multiple GitLab groups in a CI/CD pipeline.

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 of the GitLab instance to which the request is sent, defaulting to https://gitlab.com.
Method The HTTP method to use for the request, defaulting to PUT for this operation.
Path Parameters The path parameters for the API request, specifically the group ID (`id`) to identify which group's integration to update.

Output

JSON

  • statusCode - HTTP status code returned by the API after the request.
  • responseBody - The JSON response body from the GitLab API containing the updated integration details or error information.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID (`id`) path parameter is correctly set and corresponds to an existing GitLab group.
  • Verify that the API key credential has sufficient permissions to update group integrations.
  • Check the base URL to ensure it points to the correct GitLab instance.
  • If skipping authentication, be aware that the request may fail due to lack of authorization.

Links

Discussion