{"files":{"SKILL.md":"---\nname: azure-machine-learning-datastore-management-client\ndescription: \"Azure Machine Learning Datastore Management Client API skill. Use when working with Azure Machine Learning Datastore Management Client for datastore. Covers 8 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Azure Machine Learning Datastore Management Client\nAPI version: 2019-09-30\n\n## Auth\nOAuth2\n\n## Base URL\nNot specified.\n\n## Setup\n1. Configure auth: OAuth2\n2. GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores -- get datastores list.\n3. POST /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores -- create first datastore\n\n## Endpoints\n8 endpoints across 1 group. See references/api-spec.lap for full details.\n\n### Datastore\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores | Get Datastores list. |\n| POST | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores | Create or update a Datastore. |\n| DELETE | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores | Delete all Datastores. |\n| GET | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name} | Get Datastore details. |\n| PUT | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name} | Update or create a Datastore. |\n| DELETE | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name} | Delete a Datastore. |\n| PUT | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default/{name} | Set a default Datastore. |\n| GET | /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default | Get the default Datastore. |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all datastores?\" -> GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores\n- \"Create a datastore?\" -> POST /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores\n- \"Get datastore details?\" -> GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}\n- \"Update a datastore?\" -> PUT /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}\n- \"Delete a datastore?\" -> DELETE /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}\n- \"Update a default?\" -> PUT /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default/{name}\n- \"List all default?\" -> GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default\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 Machine Learning Datastore Management Client\n@version 2019-09-30\n@auth OAuth2\n@common_fields {subscriptionId: any # The Azure Subscription ID., resourceGroupName: any # The Name of the resource group in which the workspace is located., workspaceName: any # The name of the workspace.}\n@endpoints 8\n@toc datastore(8)\n\n@endpoint GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores\n@desc Get Datastores list.\n@optional {dataStoreNames: any # List of Datastore names., continuationToken: any # The Continuation Token., count: any # Count of Datastores to be returned., includeSecret: any # Whether to include the datastore secret in the response.}\n@returns(200) The list of Datastores are returned successfully.\n\n@endpoint POST /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores\n@desc Create or update a Datastore.\n@optional {dto: map # The Datastore details., createIfNotExists: any # If set to true, the call will create an Datastore if it doesn't exist., skipValidation: any # If set to true, the call will skip Datastore validation.}\n@returns(200) The Datastore is created/updated successfully.\n\n@endpoint DELETE /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores\n@desc Delete all Datastores.\n@returns(200) All the Datastores in the workspace are deleted successfully.\n\n@endpoint GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}\n@desc Get Datastore details.\n@required {name: any # The Datastore name.}\n@returns(200) The Datastore details are returned successfully.\n\n@endpoint PUT /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}\n@desc Update or create a Datastore.\n@required {name: any # The Datastore name.}\n@optional {dto: map # The Datastore details., createIfNotExists: any # If set to true, the call will create an Datastore if it doesn't exist., skipValidation: any # If set to true, the call will skip Datastore validation.}\n@returns(200) The Datastore is created/updated successfully.\n\n@endpoint DELETE /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/datastores/{name}\n@desc Delete a Datastore.\n@required {name: any # The Datastore name.}\n@returns(200) The Datastore is deleted successfully.\n\n@endpoint PUT /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default/{name}\n@desc Set a default Datastore.\n@required {name: any # The Datastore name.}\n@returns(200) The default Datastore is set successfully.\n\n@endpoint GET /datastore/v1.0/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/default\n@desc Get the default Datastore.\n@returns(200) The default Datastore is returned successfully.\n\n@end\n"}}