azure-native.machinelearningservices.Workspace
Explore with Pulumi AI
An object that represents a machine learning workspace. API Version: 2021-01-01.
Example Usage
Create Workspace
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workspace = new AzureNative.MachineLearningServices.Workspace("workspace", new()
{
ApplicationInsights = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights",
ContainerRegistry = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry",
Description = "test description",
Encryption = new AzureNative.MachineLearningServices.Inputs.EncryptionPropertyArgs
{
Identity = new AzureNative.MachineLearningServices.Inputs.IdentityForCmkArgs
{
UserAssignedIdentity = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai",
},
KeyVaultProperties = new AzureNative.MachineLearningServices.Inputs.KeyVaultPropertiesArgs
{
IdentityClientId = "",
KeyIdentifier = "https://testkv.vault.azure.net/keys/testkey/aabbccddee112233445566778899aabb",
KeyVaultArmId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
},
Status = "Enabled",
},
FriendlyName = "HelloName",
HbiWorkspace = false,
Identity = new AzureNative.MachineLearningServices.Inputs.IdentityArgs
{
Type = AzureNative.MachineLearningServices.ResourceIdentityType.SystemAssigned_UserAssigned,
UserAssignedIdentities =
{
{ "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai", null },
},
},
KeyVault = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
Location = "eastus2euap",
ResourceGroupName = "workspace-1234",
SharedPrivateLinkResources = new[]
{
new AzureNative.MachineLearningServices.Inputs.SharedPrivateLinkResourceArgs
{
GroupId = "Sql",
Name = "testdbresource",
PrivateLinkResourceId = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.DocumentDB/databaseAccounts/testdbresource/privateLinkResources/Sql",
RequestMessage = "Please approve",
Status = "Approved",
},
},
Sku = new AzureNative.MachineLearningServices.Inputs.SkuArgs
{
Name = "Basic",
Tier = "Basic",
},
StorageAccount = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
WorkspaceName = "testworkspace",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewWorkspace(ctx, "workspace", &machinelearningservices.WorkspaceArgs{
ApplicationInsights: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights"),
ContainerRegistry: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry"),
Description: pulumi.String("test description"),
Encryption: machinelearningservices.EncryptionPropertyResponse{
Identity: &machinelearningservices.IdentityForCmkArgs{
UserAssignedIdentity: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai"),
},
KeyVaultProperties: &machinelearningservices.KeyVaultPropertiesArgs{
IdentityClientId: pulumi.String(""),
KeyIdentifier: pulumi.String("https://testkv.vault.azure.net/keys/testkey/aabbccddee112233445566778899aabb"),
KeyVaultArmId: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv"),
},
Status: pulumi.String("Enabled"),
},
FriendlyName: pulumi.String("HelloName"),
HbiWorkspace: pulumi.Bool(false),
Identity: &machinelearningservices.IdentityArgs{
Type: machinelearningservices.ResourceIdentityType_SystemAssigned_UserAssigned,
UserAssignedIdentities: pulumi.AnyMap{
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai": nil,
},
},
KeyVault: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv"),
Location: pulumi.String("eastus2euap"),
ResourceGroupName: pulumi.String("workspace-1234"),
SharedPrivateLinkResources: []machinelearningservices.SharedPrivateLinkResourceArgs{
{
GroupId: pulumi.String("Sql"),
Name: pulumi.String("testdbresource"),
PrivateLinkResourceId: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.DocumentDB/databaseAccounts/testdbresource/privateLinkResources/Sql"),
RequestMessage: pulumi.String("Please approve"),
Status: pulumi.String("Approved"),
},
},
Sku: &machinelearningservices.SkuArgs{
Name: pulumi.String("Basic"),
Tier: pulumi.String("Basic"),
},
StorageAccount: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount"),
WorkspaceName: pulumi.String("testworkspace"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.Workspace;
import com.pulumi.azurenative.machinelearningservices.WorkspaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var workspace = new Workspace("workspace", WorkspaceArgs.builder()
.applicationInsights("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights")
.containerRegistry("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry")
.description("test description")
.encryption(Map.ofEntries(
Map.entry("identity", Map.of("userAssignedIdentity", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai")),
Map.entry("keyVaultProperties", Map.ofEntries(
Map.entry("identityClientId", ""),
Map.entry("keyIdentifier", "https://testkv.vault.azure.net/keys/testkey/aabbccddee112233445566778899aabb"),
Map.entry("keyVaultArmId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv")
)),
Map.entry("status", "Enabled")
))
.friendlyName("HelloName")
.hbiWorkspace(false)
.identity(Map.ofEntries(
Map.entry("type", "SystemAssigned,UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai", ))
))
.keyVault("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv")
.location("eastus2euap")
.resourceGroupName("workspace-1234")
.sharedPrivateLinkResources(Map.ofEntries(
Map.entry("groupId", "Sql"),
Map.entry("name", "testdbresource"),
Map.entry("privateLinkResourceId", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.DocumentDB/databaseAccounts/testdbresource/privateLinkResources/Sql"),
Map.entry("requestMessage", "Please approve"),
Map.entry("status", "Approved")
))
.sku(Map.ofEntries(
Map.entry("name", "Basic"),
Map.entry("tier", "Basic")
))
.storageAccount("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount")
.workspaceName("testworkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workspace = azure_native.machinelearningservices.Workspace("workspace",
application_insights="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights",
container_registry="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry",
description="test description",
encryption=azure_native.machinelearningservices.EncryptionPropertyResponseArgs(
identity=azure_native.machinelearningservices.IdentityForCmkArgs(
user_assigned_identity="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai",
),
key_vault_properties=azure_native.machinelearningservices.KeyVaultPropertiesArgs(
identity_client_id="",
key_identifier="https://testkv.vault.azure.net/keys/testkey/aabbccddee112233445566778899aabb",
key_vault_arm_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
),
status="Enabled",
),
friendly_name="HelloName",
hbi_workspace=False,
identity=azure_native.machinelearningservices.IdentityArgs(
type=azure_native.machinelearningservices.ResourceIdentityType.SYSTEM_ASSIGNED_USER_ASSIGNED,
user_assigned_identities={
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai": {},
},
),
key_vault="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
location="eastus2euap",
resource_group_name="workspace-1234",
shared_private_link_resources=[azure_native.machinelearningservices.SharedPrivateLinkResourceArgs(
group_id="Sql",
name="testdbresource",
private_link_resource_id="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.DocumentDB/databaseAccounts/testdbresource/privateLinkResources/Sql",
request_message="Please approve",
status="Approved",
)],
sku=azure_native.machinelearningservices.SkuArgs(
name="Basic",
tier="Basic",
),
storage_account="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
workspace_name="testworkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspace = new azure_native.machinelearningservices.Workspace("workspace", {
applicationInsights: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights",
containerRegistry: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry",
description: "test description",
encryption: {
identity: {
userAssignedIdentity: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai",
},
keyVaultProperties: {
identityClientId: "",
keyIdentifier: "https://testkv.vault.azure.net/keys/testkey/aabbccddee112233445566778899aabb",
keyVaultArmId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
},
status: "Enabled",
},
friendlyName: "HelloName",
hbiWorkspace: false,
identity: {
type: azure_native.machinelearningservices.ResourceIdentityType.SystemAssigned_UserAssigned,
userAssignedIdentities: {
"/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai": {},
},
},
keyVault: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv",
location: "eastus2euap",
resourceGroupName: "workspace-1234",
sharedPrivateLinkResources: [{
groupId: "Sql",
name: "testdbresource",
privateLinkResourceId: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.DocumentDB/databaseAccounts/testdbresource/privateLinkResources/Sql",
requestMessage: "Please approve",
status: "Approved",
}],
sku: {
name: "Basic",
tier: "Basic",
},
storageAccount: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
workspaceName: "testworkspace",
});
resources:
workspace:
type: azure-native:machinelearningservices:Workspace
properties:
applicationInsights: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/microsoft.insights/components/testinsights
containerRegistry: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ContainerRegistry/registries/testRegistry
description: test description
encryption:
identity:
userAssignedIdentity: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai
keyVaultProperties:
identityClientId:
keyIdentifier: https://testkv.vault.azure.net/keys/testkey/aabbccddee112233445566778899aabb
keyVaultArmId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv
status: Enabled
friendlyName: HelloName
hbiWorkspace: false
identity:
type: SystemAssigned,UserAssigned
userAssignedIdentities:
? /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testuai
: {}
keyVault: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.KeyVault/vaults/testkv
location: eastus2euap
resourceGroupName: workspace-1234
sharedPrivateLinkResources:
- groupId: Sql
name: testdbresource
privateLinkResourceId: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.DocumentDB/databaseAccounts/testdbresource/privateLinkResources/Sql
requestMessage: Please approve
status: Approved
sku:
name: Basic
tier: Basic
storageAccount: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/accountcrud-1234/providers/Microsoft.Storage/storageAccounts/testStorageAccount
workspaceName: testworkspace
Create Workspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workspace(name: string, args: WorkspaceArgs, opts?: CustomResourceOptions);
@overload
def Workspace(resource_name: str,
args: WorkspaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Workspace(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
key_vault: Optional[str] = None,
workspace_name: Optional[str] = None,
image_build_compute: Optional[str] = None,
discovery_url: Optional[str] = None,
encryption: Optional[EncryptionPropertyArgs] = None,
friendly_name: Optional[str] = None,
hbi_workspace: Optional[bool] = None,
identity: Optional[IdentityArgs] = None,
description: Optional[str] = None,
container_registry: Optional[str] = None,
primary_user_assigned_identity: Optional[str] = None,
location: Optional[str] = None,
application_insights: Optional[str] = None,
service_managed_resources_settings: Optional[ServiceManagedResourcesSettingsArgs] = None,
shared_private_link_resources: Optional[Sequence[SharedPrivateLinkResourceArgs]] = None,
sku: Optional[SkuArgs] = None,
storage_account: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
allow_public_access_when_behind_vnet: Optional[bool] = None)
func NewWorkspace(ctx *Context, name string, args WorkspaceArgs, opts ...ResourceOption) (*Workspace, error)
public Workspace(string name, WorkspaceArgs args, CustomResourceOptions? opts = null)
public Workspace(String name, WorkspaceArgs args)
public Workspace(String name, WorkspaceArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:Workspace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleworkspaceResourceResourceFromMachinelearningservices = new AzureNative.Machinelearningservices.Workspace("exampleworkspaceResourceResourceFromMachinelearningservices", new()
{
ResourceGroupName = "string",
KeyVault = "string",
WorkspaceName = "string",
ImageBuildCompute = "string",
DiscoveryUrl = "string",
Encryption =
{
{ "keyVaultProperties",
{
{ "keyIdentifier", "string" },
{ "keyVaultArmId", "string" },
{ "identityClientId", "string" },
} },
{ "status", "string" },
{ "identity",
{
{ "userAssignedIdentity", "string" },
} },
},
FriendlyName = "string",
HbiWorkspace = false,
Identity =
{
{ "type", "SystemAssigned" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Description = "string",
ContainerRegistry = "string",
PrimaryUserAssignedIdentity = "string",
Location = "string",
ApplicationInsights = "string",
ServiceManagedResourcesSettings =
{
{ "cosmosDb",
{
{ "collectionsThroughput", 0 },
} },
},
SharedPrivateLinkResources = new[]
{
{
{ "groupId", "string" },
{ "name", "string" },
{ "privateLinkResourceId", "string" },
{ "requestMessage", "string" },
{ "status", "string" },
},
},
Sku =
{
{ "name", "string" },
{ "tier", "string" },
},
StorageAccount = "string",
Tags =
{
{ "string", "string" },
},
AllowPublicAccessWhenBehindVnet = false,
});
example, err := machinelearningservices.NewWorkspace(ctx, "exampleworkspaceResourceResourceFromMachinelearningservices", &machinelearningservices.WorkspaceArgs{
ResourceGroupName: "string",
KeyVault: "string",
WorkspaceName: "string",
ImageBuildCompute: "string",
DiscoveryUrl: "string",
Encryption: map[string]interface{}{
"keyVaultProperties": map[string]interface{}{
"keyIdentifier": "string",
"keyVaultArmId": "string",
"identityClientId": "string",
},
"status": "string",
"identity": map[string]interface{}{
"userAssignedIdentity": "string",
},
},
FriendlyName: "string",
HbiWorkspace: false,
Identity: map[string]interface{}{
"type": "SystemAssigned",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Description: "string",
ContainerRegistry: "string",
PrimaryUserAssignedIdentity: "string",
Location: "string",
ApplicationInsights: "string",
ServiceManagedResourcesSettings: map[string]interface{}{
"cosmosDb": map[string]interface{}{
"collectionsThroughput": 0,
},
},
SharedPrivateLinkResources: []map[string]interface{}{
map[string]interface{}{
"groupId": "string",
"name": "string",
"privateLinkResourceId": "string",
"requestMessage": "string",
"status": "string",
},
},
Sku: map[string]interface{}{
"name": "string",
"tier": "string",
},
StorageAccount: "string",
Tags: map[string]interface{}{
"string": "string",
},
AllowPublicAccessWhenBehindVnet: false,
})
var exampleworkspaceResourceResourceFromMachinelearningservices = new Workspace("exampleworkspaceResourceResourceFromMachinelearningservices", WorkspaceArgs.builder()
.resourceGroupName("string")
.keyVault("string")
.workspaceName("string")
.imageBuildCompute("string")
.discoveryUrl("string")
.encryption(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.friendlyName("string")
.hbiWorkspace(false)
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.description("string")
.containerRegistry("string")
.primaryUserAssignedIdentity("string")
.location("string")
.applicationInsights("string")
.serviceManagedResourcesSettings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sharedPrivateLinkResources(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.storageAccount("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.allowPublicAccessWhenBehindVnet(false)
.build());
exampleworkspace_resource_resource_from_machinelearningservices = azure_native.machinelearningservices.Workspace("exampleworkspaceResourceResourceFromMachinelearningservices",
resource_group_name=string,
key_vault=string,
workspace_name=string,
image_build_compute=string,
discovery_url=string,
encryption={
keyVaultProperties: {
keyIdentifier: string,
keyVaultArmId: string,
identityClientId: string,
},
status: string,
identity: {
userAssignedIdentity: string,
},
},
friendly_name=string,
hbi_workspace=False,
identity={
type: SystemAssigned,
userAssignedIdentities: {
string: any,
},
},
description=string,
container_registry=string,
primary_user_assigned_identity=string,
location=string,
application_insights=string,
service_managed_resources_settings={
cosmosDb: {
collectionsThroughput: 0,
},
},
shared_private_link_resources=[{
groupId: string,
name: string,
privateLinkResourceId: string,
requestMessage: string,
status: string,
}],
sku={
name: string,
tier: string,
},
storage_account=string,
tags={
string: string,
},
allow_public_access_when_behind_vnet=False)
const exampleworkspaceResourceResourceFromMachinelearningservices = new azure_native.machinelearningservices.Workspace("exampleworkspaceResourceResourceFromMachinelearningservices", {
resourceGroupName: "string",
keyVault: "string",
workspaceName: "string",
imageBuildCompute: "string",
discoveryUrl: "string",
encryption: {
keyVaultProperties: {
keyIdentifier: "string",
keyVaultArmId: "string",
identityClientId: "string",
},
status: "string",
identity: {
userAssignedIdentity: "string",
},
},
friendlyName: "string",
hbiWorkspace: false,
identity: {
type: "SystemAssigned",
userAssignedIdentities: {
string: "any",
},
},
description: "string",
containerRegistry: "string",
primaryUserAssignedIdentity: "string",
location: "string",
applicationInsights: "string",
serviceManagedResourcesSettings: {
cosmosDb: {
collectionsThroughput: 0,
},
},
sharedPrivateLinkResources: [{
groupId: "string",
name: "string",
privateLinkResourceId: "string",
requestMessage: "string",
status: "string",
}],
sku: {
name: "string",
tier: "string",
},
storageAccount: "string",
tags: {
string: "string",
},
allowPublicAccessWhenBehindVnet: false,
});
type: azure-native:machinelearningservices:Workspace
properties:
allowPublicAccessWhenBehindVnet: false
applicationInsights: string
containerRegistry: string
description: string
discoveryUrl: string
encryption:
identity:
userAssignedIdentity: string
keyVaultProperties:
identityClientId: string
keyIdentifier: string
keyVaultArmId: string
status: string
friendlyName: string
hbiWorkspace: false
identity:
type: SystemAssigned
userAssignedIdentities:
string: any
imageBuildCompute: string
keyVault: string
location: string
primaryUserAssignedIdentity: string
resourceGroupName: string
serviceManagedResourcesSettings:
cosmosDb:
collectionsThroughput: 0
sharedPrivateLinkResources:
- groupId: string
name: string
privateLinkResourceId: string
requestMessage: string
status: string
sku:
name: string
tier: string
storageAccount: string
tags:
string: string
workspaceName: string
Workspace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Workspace resource accepts the following input properties:
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Allow
Public boolAccess When Behind Vnet - The flag to indicate whether to allow public access when behind VNet.
- Application
Insights string - ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
- Container
Registry string - ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created
- Description string
- The description of this workspace.
- Discovery
Url string - Url for the discovery service to identify regional endpoints for machine learning experimentation services
- Encryption
Pulumi.
Azure Native. Machine Learning Services. Inputs. Encryption Property - The encryption settings of Azure ML workspace.
- Friendly
Name string - The friendly name for this workspace. This name in mutable
- Hbi
Workspace bool - The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
- Identity
Pulumi.
Azure Native. Machine Learning Services. Inputs. Identity - The identity of the resource.
- Image
Build stringCompute - The compute name for image build
- Key
Vault string - ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created
- Location string
- Specifies the location of the resource.
- Primary
User stringAssigned Identity - The user assigned identity resource id that represents the workspace identity.
- Service
Managed Pulumi.Resources Settings Azure Native. Machine Learning Services. Inputs. Service Managed Resources Settings - The service managed resource settings.
- List<Pulumi.
Azure Native. Machine Learning Services. Inputs. Shared Private Link Resource> - The list of shared private link resources in this workspace.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Sku - The sku of the workspace.
- Storage
Account string - ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
- Dictionary<string, string>
- Contains resource tags defined as key/value pairs.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- Resource
Group stringName - Name of the resource group in which workspace is located.
- Allow
Public boolAccess When Behind Vnet - The flag to indicate whether to allow public access when behind VNet.
- Application
Insights string - ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
- Container
Registry string - ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created
- Description string
- The description of this workspace.
- Discovery
Url string - Url for the discovery service to identify regional endpoints for machine learning experimentation services
- Encryption
Encryption
Property Args - The encryption settings of Azure ML workspace.
- Friendly
Name string - The friendly name for this workspace. This name in mutable
- Hbi
Workspace bool - The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
- Identity
Identity
Args - The identity of the resource.
- Image
Build stringCompute - The compute name for image build
- Key
Vault string - ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created
- Location string
- Specifies the location of the resource.
- Primary
User stringAssigned Identity - The user assigned identity resource id that represents the workspace identity.
- Service
Managed ServiceResources Settings Managed Resources Settings Args - The service managed resource settings.
- []Shared
Private Link Resource Args - The list of shared private link resources in this workspace.
- Sku
Sku
Args - The sku of the workspace.
- Storage
Account string - ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
- map[string]string
- Contains resource tags defined as key/value pairs.
- Workspace
Name string - Name of Azure Machine Learning workspace.
- resource
Group StringName - Name of the resource group in which workspace is located.
- allow
Public BooleanAccess When Behind Vnet - The flag to indicate whether to allow public access when behind VNet.
- application
Insights String - ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
- container
Registry String - ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created
- description String
- The description of this workspace.
- discovery
Url String - Url for the discovery service to identify regional endpoints for machine learning experimentation services
- encryption
Encryption
Property - The encryption settings of Azure ML workspace.
- friendly
Name String - The friendly name for this workspace. This name in mutable
- hbi
Workspace Boolean - The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
- identity Identity
- The identity of the resource.
- image
Build StringCompute - The compute name for image build
- key
Vault String - ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created
- location String
- Specifies the location of the resource.
- primary
User StringAssigned Identity - The user assigned identity resource id that represents the workspace identity.
- service
Managed ServiceResources Settings Managed Resources Settings - The service managed resource settings.
- List<Shared
Private Link Resource> - The list of shared private link resources in this workspace.
- sku Sku
- The sku of the workspace.
- storage
Account String - ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
- Map<String,String>
- Contains resource tags defined as key/value pairs.
- workspace
Name String - Name of Azure Machine Learning workspace.
- resource
Group stringName - Name of the resource group in which workspace is located.
- allow
Public booleanAccess When Behind Vnet - The flag to indicate whether to allow public access when behind VNet.
- application
Insights string - ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
- container
Registry string - ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created
- description string
- The description of this workspace.
- discovery
Url string - Url for the discovery service to identify regional endpoints for machine learning experimentation services
- encryption
Encryption
Property - The encryption settings of Azure ML workspace.
- friendly
Name string - The friendly name for this workspace. This name in mutable
- hbi
Workspace boolean - The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
- identity Identity
- The identity of the resource.
- image
Build stringCompute - The compute name for image build
- key
Vault string - ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created
- location string
- Specifies the location of the resource.
- primary
User stringAssigned Identity - The user assigned identity resource id that represents the workspace identity.
- service
Managed ServiceResources Settings Managed Resources Settings - The service managed resource settings.
- Shared
Private Link Resource[] - The list of shared private link resources in this workspace.
- sku Sku
- The sku of the workspace.
- storage
Account string - ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
- {[key: string]: string}
- Contains resource tags defined as key/value pairs.
- workspace
Name string - Name of Azure Machine Learning workspace.
- resource_
group_ strname - Name of the resource group in which workspace is located.
- allow_
public_ boolaccess_ when_ behind_ vnet - The flag to indicate whether to allow public access when behind VNet.
- application_
insights str - ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
- container_
registry str - ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created
- description str
- The description of this workspace.
- discovery_
url str - Url for the discovery service to identify regional endpoints for machine learning experimentation services
- encryption
Encryption
Property Args - The encryption settings of Azure ML workspace.
- friendly_
name str - The friendly name for this workspace. This name in mutable
- hbi_
workspace bool - The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
- identity
Identity
Args - The identity of the resource.
- image_
build_ strcompute - The compute name for image build
- key_
vault str - ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created
- location str
- Specifies the location of the resource.
- primary_
user_ strassigned_ identity - The user assigned identity resource id that represents the workspace identity.
- service_
managed_ Serviceresources_ settings Managed Resources Settings Args - The service managed resource settings.
- Sequence[Shared
Private Link Resource Args] - The list of shared private link resources in this workspace.
- sku
Sku
Args - The sku of the workspace.
- storage_
account str - ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
- Mapping[str, str]
- Contains resource tags defined as key/value pairs.
- workspace_
name str - Name of Azure Machine Learning workspace.
- resource
Group StringName - Name of the resource group in which workspace is located.
- allow
Public BooleanAccess When Behind Vnet - The flag to indicate whether to allow public access when behind VNet.
- application
Insights String - ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
- container
Registry String - ARM id of the container registry associated with this workspace. This cannot be changed once the workspace has been created
- description String
- The description of this workspace.
- discovery
Url String - Url for the discovery service to identify regional endpoints for machine learning experimentation services
- encryption Property Map
- The encryption settings of Azure ML workspace.
- friendly
Name String - The friendly name for this workspace. This name in mutable
- hbi
Workspace Boolean - The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
- identity Property Map
- The identity of the resource.
- image
Build StringCompute - The compute name for image build
- key
Vault String - ARM id of the key vault associated with this workspace. This cannot be changed once the workspace has been created
- location String
- Specifies the location of the resource.
- primary
User StringAssigned Identity - The user assigned identity resource id that represents the workspace identity.
- service
Managed Property MapResources Settings - The service managed resource settings.
- List<Property Map>
- The list of shared private link resources in this workspace.
- sku Property Map
- The sku of the workspace.
- storage
Account String - ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
- Map<String>
- Contains resource tags defined as key/value pairs.
- workspace
Name String - Name of Azure Machine Learning workspace.
Outputs
All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- Notebook
Info Pulumi.Azure Native. Machine Learning Services. Outputs. Notebook Resource Info Response - The notebook info of Azure ML workspace.
- Private
Endpoint List<Pulumi.Connections Azure Native. Machine Learning Services. Outputs. Private Endpoint Connection Response> - The list of private endpoint connections in the workspace.
- Private
Link intCount - Count of private connections in the workspace
- Provisioning
State string - The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
- Service
Provisioned stringResource Group - The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
- System
Data Pulumi.Azure Native. Machine Learning Services. Outputs. System Data Response - Read only system data
- Type string
- Specifies the type of the resource.
- Workspace
Id string - The immutable id associated with this workspace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Specifies the name of the resource.
- Notebook
Info NotebookResource Info Response - The notebook info of Azure ML workspace.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - The list of private endpoint connections in the workspace.
- Private
Link intCount - Count of private connections in the workspace
- Provisioning
State string - The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
- Service
Provisioned stringResource Group - The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
- System
Data SystemData Response - Read only system data
- Type string
- Specifies the type of the resource.
- Workspace
Id string - The immutable id associated with this workspace.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- notebook
Info NotebookResource Info Response - The notebook info of Azure ML workspace.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - The list of private endpoint connections in the workspace.
- private
Link IntegerCount - Count of private connections in the workspace
- provisioning
State String - The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
- service
Provisioned StringResource Group - The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
- system
Data SystemData Response - Read only system data
- type String
- Specifies the type of the resource.
- workspace
Id String - The immutable id associated with this workspace.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Specifies the name of the resource.
- notebook
Info NotebookResource Info Response - The notebook info of Azure ML workspace.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - The list of private endpoint connections in the workspace.
- private
Link numberCount - Count of private connections in the workspace
- provisioning
State string - The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
- service
Provisioned stringResource Group - The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
- system
Data SystemData Response - Read only system data
- type string
- Specifies the type of the resource.
- workspace
Id string - The immutable id associated with this workspace.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Specifies the name of the resource.
- notebook_
info NotebookResource Info Response - The notebook info of Azure ML workspace.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - The list of private endpoint connections in the workspace.
- private_
link_ intcount - Count of private connections in the workspace
- provisioning_
state str - The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
- service_
provisioned_ strresource_ group - The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
- system_
data SystemData Response - Read only system data
- type str
- Specifies the type of the resource.
- workspace_
id str - The immutable id associated with this workspace.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Specifies the name of the resource.
- notebook
Info Property Map - The notebook info of Azure ML workspace.
- private
Endpoint List<Property Map>Connections - The list of private endpoint connections in the workspace.
- private
Link NumberCount - Count of private connections in the workspace
- provisioning
State String - The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
- service
Provisioned StringResource Group - The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
- system
Data Property Map - Read only system data
- type String
- Specifies the type of the resource.
- workspace
Id String - The immutable id associated with this workspace.
Supporting Types
CosmosDbSettings, CosmosDbSettingsArgs
- Collections
Throughput int - The throughput of the collections in cosmosdb database
- Collections
Throughput int - The throughput of the collections in cosmosdb database
- collections
Throughput Integer - The throughput of the collections in cosmosdb database
- collections
Throughput number - The throughput of the collections in cosmosdb database
- collections_
throughput int - The throughput of the collections in cosmosdb database
- collections
Throughput Number - The throughput of the collections in cosmosdb database
CosmosDbSettingsResponse, CosmosDbSettingsResponseArgs
- Collections
Throughput int - The throughput of the collections in cosmosdb database
- Collections
Throughput int - The throughput of the collections in cosmosdb database
- collections
Throughput Integer - The throughput of the collections in cosmosdb database
- collections
Throughput number - The throughput of the collections in cosmosdb database
- collections_
throughput int - The throughput of the collections in cosmosdb database
- collections
Throughput Number - The throughput of the collections in cosmosdb database
EncryptionProperty, EncryptionPropertyArgs
- Key
Vault Pulumi.Properties Azure Native. Machine Learning Services. Inputs. Key Vault Properties - Customer Key vault properties.
- Status
string | Pulumi.
Azure Native. Machine Learning Services. Encryption Status - Indicates whether or not the encryption is enabled for the workspace.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Inputs. Identity For Cmk - The identity that will be used to access the key vault for encryption at rest.
- Key
Vault KeyProperties Vault Properties - Customer Key vault properties.
- Status
string | Encryption
Status - Indicates whether or not the encryption is enabled for the workspace.
- Identity
Identity
For Cmk - The identity that will be used to access the key vault for encryption at rest.
- key
Vault KeyProperties Vault Properties - Customer Key vault properties.
- status
String | Encryption
Status - Indicates whether or not the encryption is enabled for the workspace.
- identity
Identity
For Cmk - The identity that will be used to access the key vault for encryption at rest.
- key
Vault KeyProperties Vault Properties - Customer Key vault properties.
- status
string | Encryption
Status - Indicates whether or not the encryption is enabled for the workspace.
- identity
Identity
For Cmk - The identity that will be used to access the key vault for encryption at rest.
- key_
vault_ Keyproperties Vault Properties - Customer Key vault properties.
- status
str | Encryption
Status - Indicates whether or not the encryption is enabled for the workspace.
- identity
Identity
For Cmk - The identity that will be used to access the key vault for encryption at rest.
- key
Vault Property MapProperties - Customer Key vault properties.
- status String | "Enabled" | "Disabled"
- Indicates whether or not the encryption is enabled for the workspace.
- identity Property Map
- The identity that will be used to access the key vault for encryption at rest.
EncryptionPropertyResponse, EncryptionPropertyResponseArgs
- Key
Vault Pulumi.Properties Azure Native. Machine Learning Services. Inputs. Key Vault Properties Response - Customer Key vault properties.
- Status string
- Indicates whether or not the encryption is enabled for the workspace.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Inputs. Identity For Cmk Response - The identity that will be used to access the key vault for encryption at rest.
- Key
Vault KeyProperties Vault Properties Response - Customer Key vault properties.
- Status string
- Indicates whether or not the encryption is enabled for the workspace.
- Identity
Identity
For Cmk Response - The identity that will be used to access the key vault for encryption at rest.
- key
Vault KeyProperties Vault Properties Response - Customer Key vault properties.
- status String
- Indicates whether or not the encryption is enabled for the workspace.
- identity
Identity
For Cmk Response - The identity that will be used to access the key vault for encryption at rest.
- key
Vault KeyProperties Vault Properties Response - Customer Key vault properties.
- status string
- Indicates whether or not the encryption is enabled for the workspace.
- identity
Identity
For Cmk Response - The identity that will be used to access the key vault for encryption at rest.
- key_
vault_ Keyproperties Vault Properties Response - Customer Key vault properties.
- status str
- Indicates whether or not the encryption is enabled for the workspace.
- identity
Identity
For Cmk Response - The identity that will be used to access the key vault for encryption at rest.
- key
Vault Property MapProperties - Customer Key vault properties.
- status String
- Indicates whether or not the encryption is enabled for the workspace.
- identity Property Map
- The identity that will be used to access the key vault for encryption at rest.
EncryptionStatus, EncryptionStatusArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Encryption
Status Enabled - Enabled
- Encryption
Status Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
Identity, IdentityArgs
- Type
Pulumi.
Azure Native. Machine Learning Services. Resource Identity Type - The identity type.
- User
Assigned Dictionary<string, object>Identities - The user assigned identities associated with the resource.
- Type
Resource
Identity Type - The identity type.
- User
Assigned map[string]interface{}Identities - The user assigned identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned Map<String,Object>Identities - The user assigned identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned {[key: string]: any}Identities - The user assigned identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user_
assigned_ Mapping[str, Any]identities - The user assigned identities associated with the resource.
- type
"System
Assigned" | "System Assigned,User Assigned" | "User Assigned" | "None" - The identity type.
- user
Assigned Map<Any>Identities - The user assigned identities associated with the resource.
IdentityForCmk, IdentityForCmkArgs
- User
Assigned stringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- User
Assigned stringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user
Assigned StringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user
Assigned stringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user_
assigned_ stridentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user
Assigned StringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
IdentityForCmkResponse, IdentityForCmkResponseArgs
- User
Assigned stringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- User
Assigned stringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user
Assigned StringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user
Assigned stringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user_
assigned_ stridentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
- user
Assigned StringIdentity - The ArmId of the user assigned identity that will be used to access the customer managed key vault
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Machine Learning Services. Inputs. User Assigned Identity Response> - The user assigned identities associated with the resource.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The user assigned identities associated with the resource.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The user assigned identities associated with the resource.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The user assigned identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - The user assigned identities associated with the resource.
KeyVaultProperties, KeyVaultPropertiesArgs
- Key
Identifier string - Key vault uri to access the encryption key.
- Key
Vault stringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- Identity
Client stringId - For future use - The client id of the identity which will be used to access key vault.
- Key
Identifier string - Key vault uri to access the encryption key.
- Key
Vault stringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- Identity
Client stringId - For future use - The client id of the identity which will be used to access key vault.
- key
Identifier String - Key vault uri to access the encryption key.
- key
Vault StringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity
Client StringId - For future use - The client id of the identity which will be used to access key vault.
- key
Identifier string - Key vault uri to access the encryption key.
- key
Vault stringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity
Client stringId - For future use - The client id of the identity which will be used to access key vault.
- key_
identifier str - Key vault uri to access the encryption key.
- key_
vault_ strarm_ id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity_
client_ strid - For future use - The client id of the identity which will be used to access key vault.
- key
Identifier String - Key vault uri to access the encryption key.
- key
Vault StringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity
Client StringId - For future use - The client id of the identity which will be used to access key vault.
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Key
Identifier string - Key vault uri to access the encryption key.
- Key
Vault stringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- Identity
Client stringId - For future use - The client id of the identity which will be used to access key vault.
- Key
Identifier string - Key vault uri to access the encryption key.
- Key
Vault stringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- Identity
Client stringId - For future use - The client id of the identity which will be used to access key vault.
- key
Identifier String - Key vault uri to access the encryption key.
- key
Vault StringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity
Client StringId - For future use - The client id of the identity which will be used to access key vault.
- key
Identifier string - Key vault uri to access the encryption key.
- key
Vault stringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity
Client stringId - For future use - The client id of the identity which will be used to access key vault.
- key_
identifier str - Key vault uri to access the encryption key.
- key_
vault_ strarm_ id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity_
client_ strid - For future use - The client id of the identity which will be used to access key vault.
- key
Identifier String - Key vault uri to access the encryption key.
- key
Vault StringArm Id - The ArmId of the keyVault where the customer owned encryption key is present.
- identity
Client StringId - For future use - The client id of the identity which will be used to access key vault.
NotebookPreparationErrorResponse, NotebookPreparationErrorResponseArgs
- Error
Message string - Status
Code int
- Error
Message string - Status
Code int
- error
Message String - status
Code Integer
- error
Message string - status
Code number
- error_
message str - status_
code int
- error
Message String - status
Code Number
NotebookResourceInfoResponse, NotebookResourceInfoResponseArgs
- Fqdn string
- Notebook
Preparation Pulumi.Error Azure Native. Machine Learning Services. Inputs. Notebook Preparation Error Response - The error that occurs when preparing notebook.
- Resource
Id string - the data plane resourceId that used to initialize notebook component
- Fqdn string
- Notebook
Preparation NotebookError Preparation Error Response - The error that occurs when preparing notebook.
- Resource
Id string - the data plane resourceId that used to initialize notebook component
- fqdn String
- notebook
Preparation NotebookError Preparation Error Response - The error that occurs when preparing notebook.
- resource
Id String - the data plane resourceId that used to initialize notebook component
- fqdn string
- notebook
Preparation NotebookError Preparation Error Response - The error that occurs when preparing notebook.
- resource
Id string - the data plane resourceId that used to initialize notebook component
- fqdn str
- notebook_
preparation_ Notebookerror Preparation Error Response - The error that occurs when preparing notebook.
- resource_
id str - the data plane resourceId that used to initialize notebook component
- fqdn String
- notebook
Preparation Property MapError - The error that occurs when preparing notebook.
- resource
Id String - the data plane resourceId that used to initialize notebook component
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Specifies the resource ID.
- Name string
- Specifies the name of the resource.
- Private
Link Pulumi.Service Connection State Azure Native. Machine Learning Services. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- System
Data Pulumi.Azure Native. Machine Learning Services. Inputs. System Data Response - Read only system data
- Type string
- Specifies the type of the resource.
- Identity
Pulumi.
Azure Native. Machine Learning Services. Inputs. Identity Response - The identity of the resource.
- Location string
- Specifies the location of the resource.
- Private
Endpoint Pulumi.Azure Native. Machine Learning Services. Inputs. Private Endpoint Response - The resource of private end point.
- Sku
Pulumi.
Azure Native. Machine Learning Services. Inputs. Sku Response - The sku of the workspace.
- Dictionary<string, string>
- Contains resource tags defined as key/value pairs.
- Id string
- Specifies the resource ID.
- Name string
- Specifies the name of the resource.
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- System
Data SystemData Response - Read only system data
- Type string
- Specifies the type of the resource.
- Identity
Identity
Response - The identity of the resource.
- Location string
- Specifies the location of the resource.
- Private
Endpoint PrivateEndpoint Response - The resource of private end point.
- Sku
Sku
Response - The sku of the workspace.
- map[string]string
- Contains resource tags defined as key/value pairs.
- id String
- Specifies the resource ID.
- name String
- Specifies the name of the resource.
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- system
Data SystemData Response - Read only system data
- type String
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- location String
- Specifies the location of the resource.
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- sku
Sku
Response - The sku of the workspace.
- Map<String,String>
- Contains resource tags defined as key/value pairs.
- id string
- Specifies the resource ID.
- name string
- Specifies the name of the resource.
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection resource.
- system
Data SystemData Response - Read only system data
- type string
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- location string
- Specifies the location of the resource.
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- sku
Sku
Response - The sku of the workspace.
- {[key: string]: string}
- Contains resource tags defined as key/value pairs.
- id str
- Specifies the resource ID.
- name str
- Specifies the name of the resource.
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection resource.
- system_
data SystemData Response - Read only system data
- type str
- Specifies the type of the resource.
- identity
Identity
Response - The identity of the resource.
- location str
- Specifies the location of the resource.
- private_
endpoint PrivateEndpoint Response - The resource of private end point.
- sku
Sku
Response - The sku of the workspace.
- Mapping[str, str]
- Contains resource tags defined as key/value pairs.
- id String
- Specifies the resource ID.
- name String
- Specifies the name of the resource.
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- system
Data Property Map - Read only system data
- type String
- Specifies the type of the resource.
- identity Property Map
- The identity of the resource.
- location String
- Specifies the location of the resource.
- private
Endpoint Property Map - The resource of private end point.
- sku Property Map
- The sku of the workspace.
- Map<String>
- Contains resource tags defined as key/value pairs.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint
- Subnet
Arm stringId - The ARM identifier for Subnet resource that private endpoint links to
- Id string
- The ARM identifier for Private Endpoint
- Subnet
Arm stringId - The ARM identifier for Subnet resource that private endpoint links to
- id String
- The ARM identifier for Private Endpoint
- subnet
Arm StringId - The ARM identifier for Subnet resource that private endpoint links to
- id string
- The ARM identifier for Private Endpoint
- subnet
Arm stringId - The ARM identifier for Subnet resource that private endpoint links to
- id str
- The ARM identifier for Private Endpoint
- subnet_
arm_ strid - The ARM identifier for Subnet resource that private endpoint links to
- id String
- The ARM identifier for Private Endpoint
- subnet
Arm StringId - The ARM identifier for Subnet resource that private endpoint links to
PrivateEndpointServiceConnectionStatus, PrivateEndpointServiceConnectionStatusArgs
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Timeout
- Timeout
- Private
Endpoint Service Connection Status Pending - Pending
- Private
Endpoint Service Connection Status Approved - Approved
- Private
Endpoint Service Connection Status Rejected - Rejected
- Private
Endpoint Service Connection Status Disconnected - Disconnected
- Private
Endpoint Service Connection Status Timeout - Timeout
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Timeout
- Timeout
- Pending
- Pending
- Approved
- Approved
- Rejected
- Rejected
- Disconnected
- Disconnected
- Timeout
- Timeout
- PENDING
- Pending
- APPROVED
- Approved
- REJECTED
- Rejected
- DISCONNECTED
- Disconnected
- TIMEOUT
- Timeout
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
- "Disconnected"
- Disconnected
- "Timeout"
- Timeout
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- User
Assigned - UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- User
Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- User
Assigned - UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- USER_ASSIGNED
- UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
- "User
Assigned" - UserAssigned
- "None"
- None
ServiceManagedResourcesSettings, ServiceManagedResourcesSettingsArgs
- Cosmos
Db Pulumi.Azure Native. Machine Learning Services. Inputs. Cosmos Db Settings - The settings for the service managed cosmosdb account.
- Cosmos
Db CosmosDb Settings - The settings for the service managed cosmosdb account.
- cosmos
Db CosmosDb Settings - The settings for the service managed cosmosdb account.
- cosmos
Db CosmosDb Settings - The settings for the service managed cosmosdb account.
- cosmos_
db CosmosDb Settings - The settings for the service managed cosmosdb account.
- cosmos
Db Property Map - The settings for the service managed cosmosdb account.
ServiceManagedResourcesSettingsResponse, ServiceManagedResourcesSettingsResponseArgs
- Cosmos
Db Pulumi.Azure Native. Machine Learning Services. Inputs. Cosmos Db Settings Response - The settings for the service managed cosmosdb account.
- Cosmos
Db CosmosDb Settings Response - The settings for the service managed cosmosdb account.
- cosmos
Db CosmosDb Settings Response - The settings for the service managed cosmosdb account.
- cosmos
Db CosmosDb Settings Response - The settings for the service managed cosmosdb account.
- cosmos_
db CosmosDb Settings Response - The settings for the service managed cosmosdb account.
- cosmos
Db Property Map - The settings for the service managed cosmosdb account.
SharedPrivateLinkResource, SharedPrivateLinkResourceArgs
- Group
Id string - The private link resource group id.
- Name string
- Unique name of the private link.
- Private
Link stringResource Id - The resource id that private link links to.
- Request
Message string - Request message.
- Status
string | Pulumi.
Azure Native. Machine Learning Services. Private Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Group
Id string - The private link resource group id.
- Name string
- Unique name of the private link.
- Private
Link stringResource Id - The resource id that private link links to.
- Request
Message string - Request message.
- Status
string | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group
Id String - The private link resource group id.
- name String
- Unique name of the private link.
- private
Link StringResource Id - The resource id that private link links to.
- request
Message String - Request message.
- status
String | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group
Id string - The private link resource group id.
- name string
- Unique name of the private link.
- private
Link stringResource Id - The resource id that private link links to.
- request
Message string - Request message.
- status
string | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group_
id str - The private link resource group id.
- name str
- Unique name of the private link.
- private_
link_ strresource_ id - The resource id that private link links to.
- request_
message str - Request message.
- status
str | Private
Endpoint Service Connection Status - Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group
Id String - The private link resource group id.
- name String
- Unique name of the private link.
- private
Link StringResource Id - The resource id that private link links to.
- request
Message String - Request message.
- status String | "Pending" | "Approved" | "Rejected" | "Disconnected" | "Timeout"
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
SharedPrivateLinkResourceResponse, SharedPrivateLinkResourceResponseArgs
- Group
Id string - The private link resource group id.
- Name string
- Unique name of the private link.
- Private
Link stringResource Id - The resource id that private link links to.
- Request
Message string - Request message.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Group
Id string - The private link resource group id.
- Name string
- Unique name of the private link.
- Private
Link stringResource Id - The resource id that private link links to.
- Request
Message string - Request message.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group
Id String - The private link resource group id.
- name String
- Unique name of the private link.
- private
Link StringResource Id - The resource id that private link links to.
- request
Message String - Request message.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group
Id string - The private link resource group id.
- name string
- Unique name of the private link.
- private
Link stringResource Id - The resource id that private link links to.
- request
Message string - Request message.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group_
id str - The private link resource group id.
- name str
- Unique name of the private link.
- private_
link_ strresource_ id - The resource id that private link links to.
- request_
message str - Request message.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- group
Id String - The private link resource group id.
- name String
- Unique name of the private link.
- private
Link StringResource Id - The resource id that private link links to.
- request
Message String - Request message.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
Sku, SkuArgs
SkuResponse, SkuResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
- created
At string - The timestamp of resource creation (UTC)
- created
By string - An identifier for the identity that created the resource
- created
By stringType - The type of identity that created the resource
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - An identifier for the identity that last modified the resource
- last
Modified stringBy Type - The type of identity that last modified the resource
- created_
at str - The timestamp of resource creation (UTC)
- created_
by str - An identifier for the identity that created the resource
- created_
by_ strtype - The type of identity that created the resource
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - An identifier for the identity that last modified the resource
- last_
modified_ strby_ type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- Client
Id string - The clientId(aka appId) of the user assigned identity.
- Principal
Id string - The principal ID of the user assigned identity.
- Tenant
Id string - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
- client
Id string - The clientId(aka appId) of the user assigned identity.
- principal
Id string - The principal ID of the user assigned identity.
- tenant
Id string - The tenant ID of the user assigned identity.
- client_
id str - The clientId(aka appId) of the user assigned identity.
- principal_
id str - The principal ID of the user assigned identity.
- tenant_
id str - The tenant ID of the user assigned identity.
- client
Id String - The clientId(aka appId) of the user assigned identity.
- principal
Id String - The principal ID of the user assigned identity.
- tenant
Id String - The tenant ID of the user assigned identity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:machinelearningservices:Workspace testworkspace /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/workspace-1234/providers/Microsoft.MachineLearningServices/workspaces/testworkspace
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0