1. Packages
  2. Azure Native v1
  3. API Docs
  4. machinelearningservices
  5. Workspace
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.machinelearningservices.Workspace

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    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:

    ResourceGroupName string
    Name of the resource group in which workspace is located.
    AllowPublicAccessWhenBehindVnet bool
    The flag to indicate whether to allow public access when behind VNet.
    ApplicationInsights string
    ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
    ContainerRegistry 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.
    DiscoveryUrl string
    Url for the discovery service to identify regional endpoints for machine learning experimentation services
    Encryption Pulumi.AzureNative.MachineLearningServices.Inputs.EncryptionProperty
    The encryption settings of Azure ML workspace.
    FriendlyName string
    The friendly name for this workspace. This name in mutable
    HbiWorkspace bool
    The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
    Identity Pulumi.AzureNative.MachineLearningServices.Inputs.Identity
    The identity of the resource.
    ImageBuildCompute string
    The compute name for image build
    KeyVault 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.
    PrimaryUserAssignedIdentity string
    The user assigned identity resource id that represents the workspace identity.
    ServiceManagedResourcesSettings Pulumi.AzureNative.MachineLearningServices.Inputs.ServiceManagedResourcesSettings
    The service managed resource settings.
    SharedPrivateLinkResources List<Pulumi.AzureNative.MachineLearningServices.Inputs.SharedPrivateLinkResource>
    The list of shared private link resources in this workspace.
    Sku Pulumi.AzureNative.MachineLearningServices.Inputs.Sku
    The sku of the workspace.
    StorageAccount string
    ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
    Tags Dictionary<string, string>
    Contains resource tags defined as key/value pairs.
    WorkspaceName string
    Name of Azure Machine Learning workspace.
    ResourceGroupName string
    Name of the resource group in which workspace is located.
    AllowPublicAccessWhenBehindVnet bool
    The flag to indicate whether to allow public access when behind VNet.
    ApplicationInsights string
    ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
    ContainerRegistry 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.
    DiscoveryUrl string
    Url for the discovery service to identify regional endpoints for machine learning experimentation services
    Encryption EncryptionPropertyArgs
    The encryption settings of Azure ML workspace.
    FriendlyName string
    The friendly name for this workspace. This name in mutable
    HbiWorkspace bool
    The flag to signal HBI data in the workspace and reduce diagnostic data collected by the service
    Identity IdentityArgs
    The identity of the resource.
    ImageBuildCompute string
    The compute name for image build
    KeyVault 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.
    PrimaryUserAssignedIdentity string
    The user assigned identity resource id that represents the workspace identity.
    ServiceManagedResourcesSettings ServiceManagedResourcesSettingsArgs
    The service managed resource settings.
    SharedPrivateLinkResources []SharedPrivateLinkResourceArgs
    The list of shared private link resources in this workspace.
    Sku SkuArgs
    The sku of the workspace.
    StorageAccount string
    ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
    Tags map[string]string
    Contains resource tags defined as key/value pairs.
    WorkspaceName string
    Name of Azure Machine Learning workspace.
    resourceGroupName String
    Name of the resource group in which workspace is located.
    allowPublicAccessWhenBehindVnet Boolean
    The flag to indicate whether to allow public access when behind VNet.
    applicationInsights String
    ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
    containerRegistry 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.
    discoveryUrl String
    Url for the discovery service to identify regional endpoints for machine learning experimentation services
    encryption EncryptionProperty
    The encryption settings of Azure ML workspace.
    friendlyName String
    The friendly name for this workspace. This name in mutable
    hbiWorkspace 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.
    imageBuildCompute String
    The compute name for image build
    keyVault 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.
    primaryUserAssignedIdentity String
    The user assigned identity resource id that represents the workspace identity.
    serviceManagedResourcesSettings ServiceManagedResourcesSettings
    The service managed resource settings.
    sharedPrivateLinkResources List<SharedPrivateLinkResource>
    The list of shared private link resources in this workspace.
    sku Sku
    The sku of the workspace.
    storageAccount String
    ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
    tags Map<String,String>
    Contains resource tags defined as key/value pairs.
    workspaceName String
    Name of Azure Machine Learning workspace.
    resourceGroupName string
    Name of the resource group in which workspace is located.
    allowPublicAccessWhenBehindVnet boolean
    The flag to indicate whether to allow public access when behind VNet.
    applicationInsights string
    ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
    containerRegistry 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.
    discoveryUrl string
    Url for the discovery service to identify regional endpoints for machine learning experimentation services
    encryption EncryptionProperty
    The encryption settings of Azure ML workspace.
    friendlyName string
    The friendly name for this workspace. This name in mutable
    hbiWorkspace 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.
    imageBuildCompute string
    The compute name for image build
    keyVault 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.
    primaryUserAssignedIdentity string
    The user assigned identity resource id that represents the workspace identity.
    serviceManagedResourcesSettings ServiceManagedResourcesSettings
    The service managed resource settings.
    sharedPrivateLinkResources SharedPrivateLinkResource[]
    The list of shared private link resources in this workspace.
    sku Sku
    The sku of the workspace.
    storageAccount string
    ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
    tags {[key: string]: string}
    Contains resource tags defined as key/value pairs.
    workspaceName string
    Name of Azure Machine Learning workspace.
    resource_group_name str
    Name of the resource group in which workspace is located.
    allow_public_access_when_behind_vnet bool
    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 EncryptionPropertyArgs
    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 IdentityArgs
    The identity of the resource.
    image_build_compute str
    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_assigned_identity str
    The user assigned identity resource id that represents the workspace identity.
    service_managed_resources_settings ServiceManagedResourcesSettingsArgs
    The service managed resource settings.
    shared_private_link_resources Sequence[SharedPrivateLinkResourceArgs]
    The list of shared private link resources in this workspace.
    sku SkuArgs
    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
    tags Mapping[str, str]
    Contains resource tags defined as key/value pairs.
    workspace_name str
    Name of Azure Machine Learning workspace.
    resourceGroupName String
    Name of the resource group in which workspace is located.
    allowPublicAccessWhenBehindVnet Boolean
    The flag to indicate whether to allow public access when behind VNet.
    applicationInsights String
    ARM id of the application insights associated with this workspace. This cannot be changed once the workspace has been created
    containerRegistry 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.
    discoveryUrl 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.
    friendlyName String
    The friendly name for this workspace. This name in mutable
    hbiWorkspace 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.
    imageBuildCompute String
    The compute name for image build
    keyVault 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.
    primaryUserAssignedIdentity String
    The user assigned identity resource id that represents the workspace identity.
    serviceManagedResourcesSettings Property Map
    The service managed resource settings.
    sharedPrivateLinkResources List<Property Map>
    The list of shared private link resources in this workspace.
    sku Property Map
    The sku of the workspace.
    storageAccount String
    ARM id of the storage account associated with this workspace. This cannot be changed once the workspace has been created
    tags Map<String>
    Contains resource tags defined as key/value pairs.
    workspaceName 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.
    NotebookInfo Pulumi.AzureNative.MachineLearningServices.Outputs.NotebookResourceInfoResponse
    The notebook info of Azure ML workspace.
    PrivateEndpointConnections List<Pulumi.AzureNative.MachineLearningServices.Outputs.PrivateEndpointConnectionResponse>
    The list of private endpoint connections in the workspace.
    PrivateLinkCount int
    Count of private connections in the workspace
    ProvisioningState string
    The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
    ServiceProvisionedResourceGroup string
    The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
    SystemData Pulumi.AzureNative.MachineLearningServices.Outputs.SystemDataResponse
    Read only system data
    Type string
    Specifies the type of the resource.
    WorkspaceId 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.
    NotebookInfo NotebookResourceInfoResponse
    The notebook info of Azure ML workspace.
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    The list of private endpoint connections in the workspace.
    PrivateLinkCount int
    Count of private connections in the workspace
    ProvisioningState string
    The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
    ServiceProvisionedResourceGroup string
    The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
    SystemData SystemDataResponse
    Read only system data
    Type string
    Specifies the type of the resource.
    WorkspaceId 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.
    notebookInfo NotebookResourceInfoResponse
    The notebook info of Azure ML workspace.
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    The list of private endpoint connections in the workspace.
    privateLinkCount Integer
    Count of private connections in the workspace
    provisioningState String
    The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
    serviceProvisionedResourceGroup String
    The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
    systemData SystemDataResponse
    Read only system data
    type String
    Specifies the type of the resource.
    workspaceId 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.
    notebookInfo NotebookResourceInfoResponse
    The notebook info of Azure ML workspace.
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    The list of private endpoint connections in the workspace.
    privateLinkCount number
    Count of private connections in the workspace
    provisioningState string
    The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
    serviceProvisionedResourceGroup string
    The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
    systemData SystemDataResponse
    Read only system data
    type string
    Specifies the type of the resource.
    workspaceId 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 NotebookResourceInfoResponse
    The notebook info of Azure ML workspace.
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    The list of private endpoint connections in the workspace.
    private_link_count int
    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_resource_group str
    The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
    system_data SystemDataResponse
    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.
    notebookInfo Property Map
    The notebook info of Azure ML workspace.
    privateEndpointConnections List<Property Map>
    The list of private endpoint connections in the workspace.
    privateLinkCount Number
    Count of private connections in the workspace
    provisioningState String
    The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning.
    serviceProvisionedResourceGroup String
    The name of the managed resource group created by workspace RP in customer subscription if the workspace is CMK workspace
    systemData Property Map
    Read only system data
    type String
    Specifies the type of the resource.
    workspaceId String
    The immutable id associated with this workspace.

    Supporting Types

    CosmosDbSettings, CosmosDbSettingsArgs

    CollectionsThroughput int
    The throughput of the collections in cosmosdb database
    CollectionsThroughput int
    The throughput of the collections in cosmosdb database
    collectionsThroughput Integer
    The throughput of the collections in cosmosdb database
    collectionsThroughput number
    The throughput of the collections in cosmosdb database
    collections_throughput int
    The throughput of the collections in cosmosdb database
    collectionsThroughput Number
    The throughput of the collections in cosmosdb database

    CosmosDbSettingsResponse, CosmosDbSettingsResponseArgs

    CollectionsThroughput int
    The throughput of the collections in cosmosdb database
    CollectionsThroughput int
    The throughput of the collections in cosmosdb database
    collectionsThroughput Integer
    The throughput of the collections in cosmosdb database
    collectionsThroughput number
    The throughput of the collections in cosmosdb database
    collections_throughput int
    The throughput of the collections in cosmosdb database
    collectionsThroughput Number
    The throughput of the collections in cosmosdb database

    EncryptionProperty, EncryptionPropertyArgs

    KeyVaultProperties Pulumi.AzureNative.MachineLearningServices.Inputs.KeyVaultProperties
    Customer Key vault properties.
    Status string | Pulumi.AzureNative.MachineLearningServices.EncryptionStatus
    Indicates whether or not the encryption is enabled for the workspace.
    Identity Pulumi.AzureNative.MachineLearningServices.Inputs.IdentityForCmk
    The identity that will be used to access the key vault for encryption at rest.
    KeyVaultProperties KeyVaultProperties
    Customer Key vault properties.
    Status string | EncryptionStatus
    Indicates whether or not the encryption is enabled for the workspace.
    Identity IdentityForCmk
    The identity that will be used to access the key vault for encryption at rest.
    keyVaultProperties KeyVaultProperties
    Customer Key vault properties.
    status String | EncryptionStatus
    Indicates whether or not the encryption is enabled for the workspace.
    identity IdentityForCmk
    The identity that will be used to access the key vault for encryption at rest.
    keyVaultProperties KeyVaultProperties
    Customer Key vault properties.
    status string | EncryptionStatus
    Indicates whether or not the encryption is enabled for the workspace.
    identity IdentityForCmk
    The identity that will be used to access the key vault for encryption at rest.
    key_vault_properties KeyVaultProperties
    Customer Key vault properties.
    status str | EncryptionStatus
    Indicates whether or not the encryption is enabled for the workspace.
    identity IdentityForCmk
    The identity that will be used to access the key vault for encryption at rest.
    keyVaultProperties Property Map
    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

    KeyVaultProperties Pulumi.AzureNative.MachineLearningServices.Inputs.KeyVaultPropertiesResponse
    Customer Key vault properties.
    Status string
    Indicates whether or not the encryption is enabled for the workspace.
    Identity Pulumi.AzureNative.MachineLearningServices.Inputs.IdentityForCmkResponse
    The identity that will be used to access the key vault for encryption at rest.
    KeyVaultProperties KeyVaultPropertiesResponse
    Customer Key vault properties.
    Status string
    Indicates whether or not the encryption is enabled for the workspace.
    Identity IdentityForCmkResponse
    The identity that will be used to access the key vault for encryption at rest.
    keyVaultProperties KeyVaultPropertiesResponse
    Customer Key vault properties.
    status String
    Indicates whether or not the encryption is enabled for the workspace.
    identity IdentityForCmkResponse
    The identity that will be used to access the key vault for encryption at rest.
    keyVaultProperties KeyVaultPropertiesResponse
    Customer Key vault properties.
    status string
    Indicates whether or not the encryption is enabled for the workspace.
    identity IdentityForCmkResponse
    The identity that will be used to access the key vault for encryption at rest.
    key_vault_properties KeyVaultPropertiesResponse
    Customer Key vault properties.
    status str
    Indicates whether or not the encryption is enabled for the workspace.
    identity IdentityForCmkResponse
    The identity that will be used to access the key vault for encryption at rest.
    keyVaultProperties Property Map
    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
    EncryptionStatusEnabled
    Enabled
    EncryptionStatusDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    Identity, IdentityArgs

    Type Pulumi.AzureNative.MachineLearningServices.ResourceIdentityType
    The identity type.
    UserAssignedIdentities Dictionary<string, object>
    The user assigned identities associated with the resource.
    Type ResourceIdentityType
    The identity type.
    UserAssignedIdentities map[string]interface{}
    The user assigned identities associated with the resource.
    type ResourceIdentityType
    The identity type.
    userAssignedIdentities Map<String,Object>
    The user assigned identities associated with the resource.
    type ResourceIdentityType
    The identity type.
    userAssignedIdentities {[key: string]: any}
    The user assigned identities associated with the resource.
    type ResourceIdentityType
    The identity type.
    user_assigned_identities Mapping[str, Any]
    The user assigned identities associated with the resource.
    type "SystemAssigned" | "SystemAssigned,UserAssigned" | "UserAssigned" | "None"
    The identity type.
    userAssignedIdentities Map<Any>
    The user assigned identities associated with the resource.

    IdentityForCmk, IdentityForCmkArgs

    UserAssignedIdentity string
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    UserAssignedIdentity string
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    userAssignedIdentity String
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    userAssignedIdentity string
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    user_assigned_identity str
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    userAssignedIdentity String
    The ArmId of the user assigned identity that will be used to access the customer managed key vault

    IdentityForCmkResponse, IdentityForCmkResponseArgs

    UserAssignedIdentity string
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    UserAssignedIdentity string
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    userAssignedIdentity String
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    userAssignedIdentity string
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    user_assigned_identity str
    The ArmId of the user assigned identity that will be used to access the customer managed key vault
    userAssignedIdentity String
    The ArmId of the user assigned identity that will be used to access the customer managed key vault

    IdentityResponse, IdentityResponseArgs

    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.MachineLearningServices.Inputs.UserAssignedIdentityResponse>
    The user assigned identities associated with the resource.
    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The user assigned identities associated with the resource.
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The user assigned identities associated with the resource.
    principalId string
    The principal ID of resource identity.
    tenantId string
    The tenant ID of resource.
    type string
    The identity type.
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    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_identities Mapping[str, UserAssignedIdentityResponse]
    The user assigned identities associated with the resource.
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    userAssignedIdentities Map<Property Map>
    The user assigned identities associated with the resource.

    KeyVaultProperties, KeyVaultPropertiesArgs

    KeyIdentifier string
    Key vault uri to access the encryption key.
    KeyVaultArmId string
    The ArmId of the keyVault where the customer owned encryption key is present.
    IdentityClientId string
    For future use - The client id of the identity which will be used to access key vault.
    KeyIdentifier string
    Key vault uri to access the encryption key.
    KeyVaultArmId string
    The ArmId of the keyVault where the customer owned encryption key is present.
    IdentityClientId string
    For future use - The client id of the identity which will be used to access key vault.
    keyIdentifier String
    Key vault uri to access the encryption key.
    keyVaultArmId String
    The ArmId of the keyVault where the customer owned encryption key is present.
    identityClientId String
    For future use - The client id of the identity which will be used to access key vault.
    keyIdentifier string
    Key vault uri to access the encryption key.
    keyVaultArmId string
    The ArmId of the keyVault where the customer owned encryption key is present.
    identityClientId string
    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_arm_id str
    The ArmId of the keyVault where the customer owned encryption key is present.
    identity_client_id str
    For future use - The client id of the identity which will be used to access key vault.
    keyIdentifier String
    Key vault uri to access the encryption key.
    keyVaultArmId String
    The ArmId of the keyVault where the customer owned encryption key is present.
    identityClientId String
    For future use - The client id of the identity which will be used to access key vault.

    KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs

    KeyIdentifier string
    Key vault uri to access the encryption key.
    KeyVaultArmId string
    The ArmId of the keyVault where the customer owned encryption key is present.
    IdentityClientId string
    For future use - The client id of the identity which will be used to access key vault.
    KeyIdentifier string
    Key vault uri to access the encryption key.
    KeyVaultArmId string
    The ArmId of the keyVault where the customer owned encryption key is present.
    IdentityClientId string
    For future use - The client id of the identity which will be used to access key vault.
    keyIdentifier String
    Key vault uri to access the encryption key.
    keyVaultArmId String
    The ArmId of the keyVault where the customer owned encryption key is present.
    identityClientId String
    For future use - The client id of the identity which will be used to access key vault.
    keyIdentifier string
    Key vault uri to access the encryption key.
    keyVaultArmId string
    The ArmId of the keyVault where the customer owned encryption key is present.
    identityClientId string
    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_arm_id str
    The ArmId of the keyVault where the customer owned encryption key is present.
    identity_client_id str
    For future use - The client id of the identity which will be used to access key vault.
    keyIdentifier String
    Key vault uri to access the encryption key.
    keyVaultArmId String
    The ArmId of the keyVault where the customer owned encryption key is present.
    identityClientId String
    For future use - The client id of the identity which will be used to access key vault.

    NotebookPreparationErrorResponse, NotebookPreparationErrorResponseArgs

    errorMessage String
    statusCode Integer

    NotebookResourceInfoResponse, NotebookResourceInfoResponseArgs

    Fqdn string
    NotebookPreparationError Pulumi.AzureNative.MachineLearningServices.Inputs.NotebookPreparationErrorResponse
    The error that occurs when preparing notebook.
    ResourceId string
    the data plane resourceId that used to initialize notebook component
    Fqdn string
    NotebookPreparationError NotebookPreparationErrorResponse
    The error that occurs when preparing notebook.
    ResourceId string
    the data plane resourceId that used to initialize notebook component
    fqdn String
    notebookPreparationError NotebookPreparationErrorResponse
    The error that occurs when preparing notebook.
    resourceId String
    the data plane resourceId that used to initialize notebook component
    fqdn string
    notebookPreparationError NotebookPreparationErrorResponse
    The error that occurs when preparing notebook.
    resourceId string
    the data plane resourceId that used to initialize notebook component
    fqdn str
    notebook_preparation_error NotebookPreparationErrorResponse
    The error that occurs when preparing notebook.
    resource_id str
    the data plane resourceId that used to initialize notebook component
    fqdn String
    notebookPreparationError Property Map
    The error that occurs when preparing notebook.
    resourceId 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.
    PrivateLinkServiceConnectionState Pulumi.AzureNative.MachineLearningServices.Inputs.PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    SystemData Pulumi.AzureNative.MachineLearningServices.Inputs.SystemDataResponse
    Read only system data
    Type string
    Specifies the type of the resource.
    Identity Pulumi.AzureNative.MachineLearningServices.Inputs.IdentityResponse
    The identity of the resource.
    Location string
    Specifies the location of the resource.
    PrivateEndpoint Pulumi.AzureNative.MachineLearningServices.Inputs.PrivateEndpointResponse
    The resource of private end point.
    Sku Pulumi.AzureNative.MachineLearningServices.Inputs.SkuResponse
    The sku of the workspace.
    Tags 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.
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    SystemData SystemDataResponse
    Read only system data
    Type string
    Specifies the type of the resource.
    Identity IdentityResponse
    The identity of the resource.
    Location string
    Specifies the location of the resource.
    PrivateEndpoint PrivateEndpointResponse
    The resource of private end point.
    Sku SkuResponse
    The sku of the workspace.
    Tags 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.
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    systemData SystemDataResponse
    Read only system data
    type String
    Specifies the type of the resource.
    identity IdentityResponse
    The identity of the resource.
    location String
    Specifies the location of the resource.
    privateEndpoint PrivateEndpointResponse
    The resource of private end point.
    sku SkuResponse
    The sku of the workspace.
    tags 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.
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState string
    The provisioning state of the private endpoint connection resource.
    systemData SystemDataResponse
    Read only system data
    type string
    Specifies the type of the resource.
    identity IdentityResponse
    The identity of the resource.
    location string
    Specifies the location of the resource.
    privateEndpoint PrivateEndpointResponse
    The resource of private end point.
    sku SkuResponse
    The sku of the workspace.
    tags {[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_service_connection_state PrivateLinkServiceConnectionStateResponse
    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 SystemDataResponse
    Read only system data
    type str
    Specifies the type of the resource.
    identity IdentityResponse
    The identity of the resource.
    location str
    Specifies the location of the resource.
    private_endpoint PrivateEndpointResponse
    The resource of private end point.
    sku SkuResponse
    The sku of the workspace.
    tags 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.
    privateLinkServiceConnectionState Property Map
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    systemData 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.
    privateEndpoint Property Map
    The resource of private end point.
    sku Property Map
    The sku of the workspace.
    tags Map<String>
    Contains resource tags defined as key/value pairs.

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    Id string
    The ARM identifier for Private Endpoint
    SubnetArmId string
    The ARM identifier for Subnet resource that private endpoint links to
    Id string
    The ARM identifier for Private Endpoint
    SubnetArmId string
    The ARM identifier for Subnet resource that private endpoint links to
    id String
    The ARM identifier for Private Endpoint
    subnetArmId String
    The ARM identifier for Subnet resource that private endpoint links to
    id string
    The ARM identifier for Private Endpoint
    subnetArmId string
    The ARM identifier for Subnet resource that private endpoint links to
    id str
    The ARM identifier for Private Endpoint
    subnet_arm_id str
    The ARM identifier for Subnet resource that private endpoint links to
    id String
    The ARM identifier for Private Endpoint
    subnetArmId String
    The ARM identifier for Subnet resource that private endpoint links to

    PrivateEndpointServiceConnectionStatus, PrivateEndpointServiceConnectionStatusArgs

    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    Timeout
    Timeout
    PrivateEndpointServiceConnectionStatusPending
    Pending
    PrivateEndpointServiceConnectionStatusApproved
    Approved
    PrivateEndpointServiceConnectionStatusRejected
    Rejected
    PrivateEndpointServiceConnectionStatusDisconnected
    Disconnected
    PrivateEndpointServiceConnectionStatusTimeout
    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

    ActionsRequired 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.
    ActionsRequired 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.
    actionsRequired 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.
    actionsRequired 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.
    actionsRequired 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

    SystemAssigned
    SystemAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    UserAssigned
    UserAssigned
    None
    None
    ResourceIdentityTypeSystemAssigned
    SystemAssigned
    ResourceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ResourceIdentityTypeUserAssigned
    UserAssigned
    ResourceIdentityTypeNone
    None
    SystemAssigned
    SystemAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    UserAssigned
    UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    UserAssigned
    UserAssigned
    None
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    USER_ASSIGNED
    UserAssigned
    NONE
    None
    "SystemAssigned"
    SystemAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned
    "UserAssigned"
    UserAssigned
    "None"
    None

    ServiceManagedResourcesSettings, ServiceManagedResourcesSettingsArgs

    CosmosDb Pulumi.AzureNative.MachineLearningServices.Inputs.CosmosDbSettings
    The settings for the service managed cosmosdb account.
    CosmosDb CosmosDbSettings
    The settings for the service managed cosmosdb account.
    cosmosDb CosmosDbSettings
    The settings for the service managed cosmosdb account.
    cosmosDb CosmosDbSettings
    The settings for the service managed cosmosdb account.
    cosmos_db CosmosDbSettings
    The settings for the service managed cosmosdb account.
    cosmosDb Property Map
    The settings for the service managed cosmosdb account.

    ServiceManagedResourcesSettingsResponse, ServiceManagedResourcesSettingsResponseArgs

    CosmosDb Pulumi.AzureNative.MachineLearningServices.Inputs.CosmosDbSettingsResponse
    The settings for the service managed cosmosdb account.
    CosmosDb CosmosDbSettingsResponse
    The settings for the service managed cosmosdb account.
    cosmosDb CosmosDbSettingsResponse
    The settings for the service managed cosmosdb account.
    cosmosDb CosmosDbSettingsResponse
    The settings for the service managed cosmosdb account.
    cosmos_db CosmosDbSettingsResponse
    The settings for the service managed cosmosdb account.
    cosmosDb Property Map
    The settings for the service managed cosmosdb account.

    SharedPrivateLinkResource, SharedPrivateLinkResourceArgs

    GroupId string
    The private link resource group id.
    Name string
    Unique name of the private link.
    PrivateLinkResourceId string
    The resource id that private link links to.
    RequestMessage string
    Request message.
    Status string | Pulumi.AzureNative.MachineLearningServices.PrivateEndpointServiceConnectionStatus
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    GroupId string
    The private link resource group id.
    Name string
    Unique name of the private link.
    PrivateLinkResourceId string
    The resource id that private link links to.
    RequestMessage string
    Request message.
    Status string | PrivateEndpointServiceConnectionStatus
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    groupId String
    The private link resource group id.
    name String
    Unique name of the private link.
    privateLinkResourceId String
    The resource id that private link links to.
    requestMessage String
    Request message.
    status String | PrivateEndpointServiceConnectionStatus
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    groupId string
    The private link resource group id.
    name string
    Unique name of the private link.
    privateLinkResourceId string
    The resource id that private link links to.
    requestMessage string
    Request message.
    status string | PrivateEndpointServiceConnectionStatus
    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_resource_id str
    The resource id that private link links to.
    request_message str
    Request message.
    status str | PrivateEndpointServiceConnectionStatus
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    groupId String
    The private link resource group id.
    name String
    Unique name of the private link.
    privateLinkResourceId String
    The resource id that private link links to.
    requestMessage 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

    GroupId string
    The private link resource group id.
    Name string
    Unique name of the private link.
    PrivateLinkResourceId string
    The resource id that private link links to.
    RequestMessage string
    Request message.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    GroupId string
    The private link resource group id.
    Name string
    Unique name of the private link.
    PrivateLinkResourceId string
    The resource id that private link links to.
    RequestMessage string
    Request message.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    groupId String
    The private link resource group id.
    name String
    Unique name of the private link.
    privateLinkResourceId String
    The resource id that private link links to.
    requestMessage String
    Request message.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    groupId string
    The private link resource group id.
    name string
    Unique name of the private link.
    privateLinkResourceId string
    The resource id that private link links to.
    requestMessage 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_resource_id str
    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.
    groupId String
    The private link resource group id.
    name String
    Unique name of the private link.
    privateLinkResourceId String
    The resource id that private link links to.
    requestMessage String
    Request message.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

    Sku, SkuArgs

    Name string
    Name of the sku
    Tier string
    Tier of the sku like Basic or Enterprise
    Name string
    Name of the sku
    Tier string
    Tier of the sku like Basic or Enterprise
    name String
    Name of the sku
    tier String
    Tier of the sku like Basic or Enterprise
    name string
    Name of the sku
    tier string
    Tier of the sku like Basic or Enterprise
    name str
    Name of the sku
    tier str
    Tier of the sku like Basic or Enterprise
    name String
    Name of the sku
    tier String
    Tier of the sku like Basic or Enterprise

    SkuResponse, SkuResponseArgs

    Name string
    Name of the sku
    Tier string
    Tier of the sku like Basic or Enterprise
    Name string
    Name of the sku
    Tier string
    Tier of the sku like Basic or Enterprise
    name String
    Name of the sku
    tier String
    Tier of the sku like Basic or Enterprise
    name string
    Name of the sku
    tier string
    Tier of the sku like Basic or Enterprise
    name str
    Name of the sku
    tier str
    Tier of the sku like Basic or Enterprise
    name String
    Name of the sku
    tier String
    Tier of the sku like Basic or Enterprise

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC)
    CreatedBy string
    An identifier for the identity that created the resource
    CreatedByType string
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    An identifier for the identity that last modified the resource
    LastModifiedByType string
    The type of identity that last modified the resource
    CreatedAt string
    The timestamp of resource creation (UTC)
    CreatedBy string
    An identifier for the identity that created the resource
    CreatedByType string
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    An identifier for the identity that last modified the resource
    LastModifiedByType string
    The type of identity that last modified the resource
    createdAt String
    The timestamp of resource creation (UTC)
    createdBy String
    An identifier for the identity that created the resource
    createdByType String
    The type of identity that created the resource
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    An identifier for the identity that last modified the resource
    lastModifiedByType String
    The type of identity that last modified the resource
    createdAt string
    The timestamp of resource creation (UTC)
    createdBy string
    An identifier for the identity that created the resource
    createdByType string
    The type of identity that created the resource
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    An identifier for the identity that last modified the resource
    lastModifiedByType string
    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_type str
    The type of identity that created the resource
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    An identifier for the identity that last modified the resource
    last_modified_by_type str
    The type of identity that last modified the resource
    createdAt String
    The timestamp of resource creation (UTC)
    createdBy String
    An identifier for the identity that created the resource
    createdByType String
    The type of identity that created the resource
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    An identifier for the identity that last modified the resource
    lastModifiedByType String
    The type of identity that last modified the resource

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The clientId(aka appId) of the user assigned identity.
    PrincipalId string
    The principal ID of the user assigned identity.
    TenantId string
    The tenant ID of the user assigned identity.
    ClientId string
    The clientId(aka appId) of the user assigned identity.
    PrincipalId string
    The principal ID of the user assigned identity.
    TenantId string
    The tenant ID of the user assigned identity.
    clientId String
    The clientId(aka appId) of the user assigned identity.
    principalId String
    The principal ID of the user assigned identity.
    tenantId String
    The tenant ID of the user assigned identity.
    clientId string
    The clientId(aka appId) of the user assigned identity.
    principalId string
    The principal ID of the user assigned identity.
    tenantId 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.
    clientId String
    The clientId(aka appId) of the user assigned identity.
    principalId String
    The principal ID of the user assigned identity.
    tenantId 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
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi