GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation retrieves information about a specific Debian distribution codename within a GitLab group using the GitLab API. It is useful for users who need to access Debian distribution details associated with a particular group in GitLab, such as system administrators or developers managing package repositories.

Use Case Examples

  1. Fetch details of the Debian distribution 'sid' for a GitLab group with ID '12345'.
  2. Retrieve Debian distribution information for a group identified by its URL-encoded path.

Properties

Name Meaning
Skip Authentication Whether to skip authentication for the API request.
Authentication The authentication method used for the API request, defaulting to GitLab API key.
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method The HTTP method used for the API request, defaulting to GET.
Path Parameters Parameters used in the API request path to specify the group and Debian codename.

Output

JSON

  • id - The ID of the Debian distribution.
  • codename - The Debian codename.
  • components - Components of the Debian distribution.
  • architectures - Supported architectures for the Debian distribution.
  • description - Description of the Debian distribution.
  • gpg_key - GPG key associated with the Debian distribution.
  • created_at - Timestamp when the Debian distribution was created.
  • updated_at - Timestamp when the Debian distribution was last updated.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the 'id' and 'codename' path parameters are correctly set and URL-encoded if necessary.
  • Verify that the GitLab API key credential is valid and has sufficient permissions to access group Debian distributions.
  • Check the base URL to ensure it points to the correct GitLab instance.
  • Common error messages include 404 Not Found if the group or codename does not exist, and 401 Unauthorized if authentication fails.

Links

Discussion