GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation retrieves details of a specific project repository storage move in GitLab by its ID. It is useful for monitoring or managing storage moves of project repositories within GitLab, such as checking the status or metadata of a storage move.

Use Case Examples

  1. Get details of a repository storage move by providing its unique ID to track its progress or verify its completion.
  2. Use in automation workflows to fetch storage move information for reporting or auditing purposes.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used for the request, defaulting to GitLab API key.
baseUrl Base URL of the GitLab instance to send the request to.
Method HTTP method to use for the request, default is GET.
Parameter Schema Schema defining the path parameter 'repository_storage_move_id' which is required to identify the storage move.
Request Body Schema Schema for the request body, null for this GET operation.
Request Path API endpoint path template with placeholder for repository_storage_move_id.
Path Parameters Collection of path parameters including 'repository_storage_move_id' which must be provided to specify the storage move to retrieve.

Output

JSON

  • id - Unique identifier of the repository storage move.
  • source_storage_name - Name of the source storage from which the repository is moved.
  • destination_storage_name - Name of the destination storage to which the repository is moved.
  • state - Current state of the storage move (e.g., 'finished', 'failed').
  • created_at - Timestamp when the storage move was created.
  • updated_at - Timestamp when the storage move was last updated.
  • project_id - ID of the project associated with the storage move.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the 'repository_storage_move_id' path parameter is provided and valid; missing or incorrect ID will cause request failure.
  • Authentication errors may occur if the GitLab API key is missing or invalid; verify credentials are correctly configured.
  • Network or base URL misconfiguration can lead to connection errors; confirm the baseUrl is correct for your GitLab instance.

Links

Discussion