workspaces_keys
Creates, updates, deletes, gets or lists a workspaces_keys
resource.
Overview
Name | workspaces_keys |
Type | Resource |
Id | azure.ml_services.workspaces_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 |
---|---|---|
appInsightsInstrumentationKey | string | The access key of the workspace app insights |
containerRegistryCredentials | object | |
notebookAccessKeys | object | |
userStorageArmId | string | The arm Id key of the workspace storage |
userStorageKey | string | The access key of the workspace storage |
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
appInsightsInstrumentationKey,
containerRegistryCredentials,
notebookAccessKeys,
userStorageArmId,
userStorageKey
FROM azure.ml_services.workspaces_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;