{"files":{"SKILL.md":"---\nname: azure-devops\ndescription: \"Azure DevOps API skill. Use when working with Azure DevOps for providers, subscriptions. Covers 8 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Azure DevOps\nAPI version: 2019-07-01-preview\n\n## Auth\nOAuth2\n\n## Base URL\nhttps://management.azure.com\n\n## Setup\n1. Configure auth: OAuth2\n2. GET /providers/Microsoft.DevOps/operations -- lists all the operations supported by microsoft.devops resource provider.\n3. Explore available endpoints below\n\n## Endpoints\n8 endpoints across 2 groups. See references/api-spec.lap for full details.\n\n### Providers\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /providers/Microsoft.DevOps/operations | Lists all the operations supported by Microsoft.DevOps resource provider. |\n| GET | /providers/Microsoft.DevOps/pipelineTemplateDefinitions | Lists all pipeline templates which can be used to configure an Azure Pipeline. |\n\n### Subscriptions\n| Method | Path | Description |\n|--------|------|-------------|\n| PUT | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName} | Creates or updates an Azure Pipeline. |\n| GET | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName} | Gets an existing Azure Pipeline. |\n| PATCH | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName} | Updates the properties of an Azure Pipeline. Currently, only tags can be updated. |\n| DELETE | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName} | Deletes an Azure Pipeline. |\n| GET | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines | Lists all Azure Pipelines under the specified resource group. |\n| GET | /subscriptions/{subscriptionId}/providers/Microsoft.DevOps/pipelines | Lists all Azure Pipelines under the specified subscription. |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all operations?\" -> GET /providers/Microsoft.DevOps/operations\n- \"List all pipelineTemplateDefinitions?\" -> GET /providers/Microsoft.DevOps/pipelineTemplateDefinitions\n- \"Update a pipeline?\" -> PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n- \"Get pipeline details?\" -> GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n- \"Partially update a pipeline?\" -> PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n- \"Delete a pipeline?\" -> DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n- \"List all pipelines?\" -> GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines\n- \"How to authenticate?\" -> See Auth section above\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Create/update endpoints return the modified resource on success\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api Azure DevOps\n@base https://management.azure.com\n@version 2019-07-01-preview\n@auth OAuth2\n@common_fields {api-version: any # API version to be used with the HTTP request.}\n@endpoints 8\n@toc providers(2), subscriptions(6)\n\n@group providers\n@endpoint GET /providers/Microsoft.DevOps/operations\n@desc Lists all the operations supported by Microsoft.DevOps resource provider.\n@returns(200) The list of supported operations has been fetched successfully.\n\n@endpoint GET /providers/Microsoft.DevOps/pipelineTemplateDefinitions\n@desc Lists all pipeline templates which can be used to configure an Azure Pipeline.\n@returns(200) The pipeline template definitions have been fetched successfully.\n\n@endgroup\n\n@group subscriptions\n@endpoint PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n@desc Creates or updates an Azure Pipeline.\n@required {subscriptionId: any # Unique identifier of the Azure subscription. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)., resourceGroupName: any # Name of the resource group within the Azure subscription., pipelineName: any # The name of the Azure Pipeline resource in ARM., createOperationParameters: map # The request payload to create the Azure Pipeline.}\n@returns(200) The Azure Pipeline has been configured successfully.\n@returns(202) The request has been accepted for processing and the Azure Pipeline will be configured asynchronously.\n\n@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n@desc Gets an existing Azure Pipeline.\n@required {subscriptionId: any # Unique identifier of the Azure subscription. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)., resourceGroupName: any # Name of the resource group within the Azure subscription., pipelineName: any # The name of the Azure Pipeline resource in ARM.}\n@returns(200) The Azure Pipeline has been fetched successfully.\n\n@endpoint PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n@desc Updates the properties of an Azure Pipeline. Currently, only tags can be updated.\n@required {subscriptionId: any # Unique identifier of the Azure subscription. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)., resourceGroupName: any # Name of the resource group within the Azure subscription., pipelineName: any # The name of the Azure Pipeline resource., updateOperationParameters: map # The request payload containing the properties to update in the Azure Pipeline.}\n@returns(200) The Azure Pipeline has been updated successfully.\n\n@endpoint DELETE /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines/{pipelineName}\n@desc Deletes an Azure Pipeline.\n@required {subscriptionId: any # Unique identifier of the Azure subscription. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)., resourceGroupName: any # Name of the resource group within the Azure subscription., pipelineName: any # The name of the Azure Pipeline resource.}\n@returns(200) The Azure Pipeline has been deleted successfully.\n@returns(204) The Azure Pipeline is not found or has been deleted already.\n\n@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevOps/pipelines\n@desc Lists all Azure Pipelines under the specified resource group.\n@required {subscriptionId: any # Unique identifier of the Azure subscription. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)., resourceGroupName: any # Name of the resource group within the Azure subscription.}\n@returns(200) The Azure Pipelines have been fetched successfully.\n\n@endpoint GET /subscriptions/{subscriptionId}/providers/Microsoft.DevOps/pipelines\n@desc Lists all Azure Pipelines under the specified subscription.\n@required {subscriptionId: any # Unique identifier of the Azure subscription. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).}\n@returns(200) The Azure Pipelines have been fetched successfully.\n\n@endgroup\n\n@end\n"}}