Skip to main content

workspaces_keys

Creates, updates, deletes, gets or lists a workspaces_keys resource.

Overview

Nameworkspaces_keys
TypeResource
Idazure.ml_services.workspaces_keys

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
appInsightsInstrumentationKeystringThe access key of the workspace app insights
containerRegistryCredentialsobject
notebookAccessKeysobject
userStorageArmIdstringThe arm Id key of the workspace storage
userStorageKeystringThe access key of the workspace storage

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, 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.

NameDatatypeDescription
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringAzure Machine Learning Workspace Name

SELECT examples

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
;