action gitlab_get_v3_projects_id_deployments_deployment_id { label: "Gets a specific deployment" description: "This feature was introduced in GitLab 8.11." provider: gitlab method: GET path: "/v3/projects/{id}/deployments/{deployment_id}" encoding: json input: { type: "object" properties: { deployment_id: { type: "string" } id: { type: "string" } } required: ["deployment_id", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }