Workspace type

An object that represents a machine learning workspace.

type Workspace = Resource & {
  allowPublicAccessWhenBehindVnet?: boolean
  applicationInsights?: string
  containerRegistry?: string
  description?: string
  discoveryUrl?: string
  encryption?: EncryptionProperty
  friendlyName?: string
  hbiWorkspace?: boolean
  identity?: Identity
  imageBuildCompute?: string
  keyVault?: string
  location?: string
  mlFlowTrackingUri?: string
  notebookInfo?: NotebookResourceInfo
  primaryUserAssignedIdentity?: string
  privateEndpointConnections?: PrivateEndpointConnection[]
  privateLinkCount?: number
  provisioningState?: ProvisioningState
  publicNetworkAccess?: PublicNetworkAccess
  serviceManagedResourcesSettings?: ServiceManagedResourcesSettings
  serviceProvisionedResourceGroup?: string
  sharedPrivateLinkResources?: SharedPrivateLinkResource[]
  sku?: Sku
  storageAccount?: string
  storageHnsEnabled?: boolean
  systemData?: SystemData
  tags?: { [propertyName: string]: string }
  tenantId?: string
  workspaceId?: string
}