workspaces_notebook_keys
Creates, updates, deletes, gets or lists a workspaces_notebook_keys resource.
Overview
| Name | workspaces_notebook_keys |
| Type | Resource |
| Id | azure.ml_services.workspaces_notebook_keys |
Fields
The following fields are returned by SELECT queries:
- list
The request was successful; the request was well-formed and received properly.
| Name | Datatype | Description |
|---|---|---|
primaryAccessKey | string | The primary access key of the Notebook |
secondaryAccessKey | string | The secondary access key of the Notebook |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, workspaceName |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | Azure Machine Learning Workspace Name |
SELECT examples
- list
The request was successful; the request was well-formed and received properly.
SELECT
primaryAccessKey,
secondaryAccessKey
FROM azure.ml_services.workspaces_notebook_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;