1. Packages
  2. Azure Native
  3. API Docs
  4. quantum
  5. Workspace
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.quantum.Workspace

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

The resource proxy definition object for Quantum Workspace.

Uses Azure REST API version 2023-11-13-preview. In version 2.x of the Azure Native provider, it used API version 2022-01-10-preview.

Other available API versions: 2022-01-10-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native quantum [ApiVersion]. See the version guide for details.

Example Usage

Workspaces_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var workspace = new AzureNative.Quantum.Workspace("workspace", new()
    {
        Location = "West US",
        Properties = new AzureNative.Quantum.Inputs.WorkspaceResourcePropertiesArgs
        {
            Providers = new[]
            {
                new AzureNative.Quantum.Inputs.ProviderArgs
                {
                    ProviderId = "Honeywell",
                    ProviderSku = "Basic",
                },
                new AzureNative.Quantum.Inputs.ProviderArgs
                {
                    ProviderId = "IonQ",
                    ProviderSku = "Basic",
                },
                new AzureNative.Quantum.Inputs.ProviderArgs
                {
                    ProviderId = "OneQBit",
                    ProviderSku = "Basic",
                },
            },
            StorageAccount = "/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
        },
        ResourceGroupName = "quantumResourcegroup",
        WorkspaceName = "quantumworkspace1",
    });

});
Copy
package main

import (
	quantum "github.com/pulumi/pulumi-azure-native-sdk/quantum/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := quantum.NewWorkspace(ctx, "workspace", &quantum.WorkspaceArgs{
			Location: pulumi.String("West US"),
			Properties: &quantum.WorkspaceResourcePropertiesArgs{
				Providers: quantum.ProviderArray{
					&quantum.ProviderArgs{
						ProviderId:  pulumi.String("Honeywell"),
						ProviderSku: pulumi.String("Basic"),
					},
					&quantum.ProviderArgs{
						ProviderId:  pulumi.String("IonQ"),
						ProviderSku: pulumi.String("Basic"),
					},
					&quantum.ProviderArgs{
						ProviderId:  pulumi.String("OneQBit"),
						ProviderSku: pulumi.String("Basic"),
					},
				},
				StorageAccount: pulumi.String("/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount"),
			},
			ResourceGroupName: pulumi.String("quantumResourcegroup"),
			WorkspaceName:     pulumi.String("quantumworkspace1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.quantum.Workspace;
import com.pulumi.azurenative.quantum.WorkspaceArgs;
import com.pulumi.azurenative.quantum.inputs.WorkspaceResourcePropertiesArgs;
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()
            .location("West US")
            .properties(WorkspaceResourcePropertiesArgs.builder()
                .providers(                
                    ProviderArgs.builder()
                        .providerId("Honeywell")
                        .providerSku("Basic")
                        .build(),
                    ProviderArgs.builder()
                        .providerId("IonQ")
                        .providerSku("Basic")
                        .build(),
                    ProviderArgs.builder()
                        .providerId("OneQBit")
                        .providerSku("Basic")
                        .build())
                .storageAccount("/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount")
                .build())
            .resourceGroupName("quantumResourcegroup")
            .workspaceName("quantumworkspace1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const workspace = new azure_native.quantum.Workspace("workspace", {
    location: "West US",
    properties: {
        providers: [
            {
                providerId: "Honeywell",
                providerSku: "Basic",
            },
            {
                providerId: "IonQ",
                providerSku: "Basic",
            },
            {
                providerId: "OneQBit",
                providerSku: "Basic",
            },
        ],
        storageAccount: "/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
    },
    resourceGroupName: "quantumResourcegroup",
    workspaceName: "quantumworkspace1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

workspace = azure_native.quantum.Workspace("workspace",
    location="West US",
    properties={
        "providers": [
            {
                "provider_id": "Honeywell",
                "provider_sku": "Basic",
            },
            {
                "provider_id": "IonQ",
                "provider_sku": "Basic",
            },
            {
                "provider_id": "OneQBit",
                "provider_sku": "Basic",
            },
        ],
        "storage_account": "/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
    },
    resource_group_name="quantumResourcegroup",
    workspace_name="quantumworkspace1")
Copy
resources:
  workspace:
    type: azure-native:quantum:Workspace
    properties:
      location: West US
      properties:
        providers:
          - providerId: Honeywell
            providerSku: Basic
          - providerId: IonQ
            providerSku: Basic
          - providerId: OneQBit
            providerSku: Basic
        storageAccount: /subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount
      resourceGroupName: quantumResourcegroup
      workspaceName: quantumworkspace1
Copy

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,
              identity: Optional[ManagedServiceIdentityArgs] = None,
              location: Optional[str] = None,
              properties: Optional[WorkspaceResourcePropertiesArgs] = None,
              tags: Optional[Mapping[str, str]] = None,
              workspace_name: Optional[str] = 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:quantum:Workspace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 exampleworkspaceResourceResourceFromQuantum = new AzureNative.Quantum.Workspace("exampleworkspaceResourceResourceFromQuantum", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.Quantum.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    Properties = new AzureNative.Quantum.Inputs.WorkspaceResourcePropertiesArgs
    {
        ApiKeyEnabled = false,
        Providers = new[]
        {
            new AzureNative.Quantum.Inputs.ProviderArgs
            {
                ApplicationName = "string",
                InstanceUri = "string",
                ProviderId = "string",
                ProviderSku = "string",
                ProvisioningState = "string",
                ResourceUsageId = "string",
            },
        },
        StorageAccount = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
    WorkspaceName = "string",
});
Copy
example, err := quantum.NewWorkspace(ctx, "exampleworkspaceResourceResourceFromQuantum", &quantum.WorkspaceArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &quantum.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	Properties: &quantum.WorkspaceResourcePropertiesArgs{
		ApiKeyEnabled: pulumi.Bool(false),
		Providers: quantum.ProviderArray{
			&quantum.ProviderArgs{
				ApplicationName:   pulumi.String("string"),
				InstanceUri:       pulumi.String("string"),
				ProviderId:        pulumi.String("string"),
				ProviderSku:       pulumi.String("string"),
				ProvisioningState: pulumi.String("string"),
				ResourceUsageId:   pulumi.String("string"),
			},
		},
		StorageAccount: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	WorkspaceName: pulumi.String("string"),
})
Copy
var exampleworkspaceResourceResourceFromQuantum = new Workspace("exampleworkspaceResourceResourceFromQuantum", WorkspaceArgs.builder()
    .resourceGroupName("string")
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .properties(WorkspaceResourcePropertiesArgs.builder()
        .apiKeyEnabled(false)
        .providers(ProviderArgs.builder()
            .applicationName("string")
            .instanceUri("string")
            .providerId("string")
            .providerSku("string")
            .provisioningState("string")
            .resourceUsageId("string")
            .build())
        .storageAccount("string")
        .build())
    .tags(Map.of("string", "string"))
    .workspaceName("string")
    .build());
Copy
exampleworkspace_resource_resource_from_quantum = azure_native.quantum.Workspace("exampleworkspaceResourceResourceFromQuantum",
    resource_group_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    properties={
        "api_key_enabled": False,
        "providers": [{
            "application_name": "string",
            "instance_uri": "string",
            "provider_id": "string",
            "provider_sku": "string",
            "provisioning_state": "string",
            "resource_usage_id": "string",
        }],
        "storage_account": "string",
    },
    tags={
        "string": "string",
    },
    workspace_name="string")
Copy
const exampleworkspaceResourceResourceFromQuantum = new azure_native.quantum.Workspace("exampleworkspaceResourceResourceFromQuantum", {
    resourceGroupName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    properties: {
        apiKeyEnabled: false,
        providers: [{
            applicationName: "string",
            instanceUri: "string",
            providerId: "string",
            providerSku: "string",
            provisioningState: "string",
            resourceUsageId: "string",
        }],
        storageAccount: "string",
    },
    tags: {
        string: "string",
    },
    workspaceName: "string",
});
Copy
type: azure-native:quantum:Workspace
properties:
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    properties:
        apiKeyEnabled: false
        providers:
            - applicationName: string
              instanceUri: string
              providerId: string
              providerSku: string
              provisioningState: string
              resourceUsageId: string
        storageAccount: string
    resourceGroupName: string
    tags:
        string: string
    workspaceName: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Workspace resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity Pulumi.AzureNative.Quantum.Inputs.ManagedServiceIdentity
The managed service identities assigned to this resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.Quantum.Inputs.WorkspaceResourceProperties
Gets or sets the properties. Define quantum workspace's specific properties.
Tags Dictionary<string, string>
Resource tags.
WorkspaceName Changes to this property will trigger replacement. string
The name of the quantum workspace resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Identity ManagedServiceIdentityArgs
The managed service identities assigned to this resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties WorkspaceResourcePropertiesArgs
Gets or sets the properties. Define quantum workspace's specific properties.
Tags map[string]string
Resource tags.
WorkspaceName Changes to this property will trigger replacement. string
The name of the quantum workspace resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties WorkspaceResourceProperties
Gets or sets the properties. Define quantum workspace's specific properties.
tags Map<String,String>
Resource tags.
workspaceName Changes to this property will trigger replacement. String
The name of the quantum workspace resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties WorkspaceResourceProperties
Gets or sets the properties. Define quantum workspace's specific properties.
tags {[key: string]: string}
Resource tags.
workspaceName Changes to this property will trigger replacement. string
The name of the quantum workspace resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
identity ManagedServiceIdentityArgs
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties WorkspaceResourcePropertiesArgs
Gets or sets the properties. Define quantum workspace's specific properties.
tags Mapping[str, str]
Resource tags.
workspace_name Changes to this property will trigger replacement. str
The name of the quantum workspace resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
identity Property Map
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
Gets or sets the properties. Define quantum workspace's specific properties.
tags Map<String>
Resource tags.
workspaceName Changes to this property will trigger replacement. String
The name of the quantum workspace resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.Quantum.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.Quantum.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Quantum.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

Provider
, ProviderArgs

ApplicationName string
The provider's marketplace application display name.
InstanceUri string
A Uri identifying the specific instance of this provider.
ProviderId string
Unique id of this provider.
ProviderSku string
The sku associated with pricing information for this provider.
ProvisioningState string | Pulumi.AzureNative.Quantum.ProviderStatus
Provisioning status field
ResourceUsageId string
Id to track resource usage for the provider.
ApplicationName string
The provider's marketplace application display name.
InstanceUri string
A Uri identifying the specific instance of this provider.
ProviderId string
Unique id of this provider.
ProviderSku string
The sku associated with pricing information for this provider.
ProvisioningState string | ProviderStatus
Provisioning status field
ResourceUsageId string
Id to track resource usage for the provider.
applicationName String
The provider's marketplace application display name.
instanceUri String
A Uri identifying the specific instance of this provider.
providerId String
Unique id of this provider.
providerSku String
The sku associated with pricing information for this provider.
provisioningState String | ProviderStatus
Provisioning status field
resourceUsageId String
Id to track resource usage for the provider.
applicationName string
The provider's marketplace application display name.
instanceUri string
A Uri identifying the specific instance of this provider.
providerId string
Unique id of this provider.
providerSku string
The sku associated with pricing information for this provider.
provisioningState string | ProviderStatus
Provisioning status field
resourceUsageId string
Id to track resource usage for the provider.
application_name str
The provider's marketplace application display name.
instance_uri str
A Uri identifying the specific instance of this provider.
provider_id str
Unique id of this provider.
provider_sku str
The sku associated with pricing information for this provider.
provisioning_state str | ProviderStatus
Provisioning status field
resource_usage_id str
Id to track resource usage for the provider.
applicationName String
The provider's marketplace application display name.
instanceUri String
A Uri identifying the specific instance of this provider.
providerId String
Unique id of this provider.
providerSku String
The sku associated with pricing information for this provider.
provisioningState String | "Succeeded" | "Launching" | "Updating" | "Deleting" | "Deleted" | "Failed"
Provisioning status field
resourceUsageId String
Id to track resource usage for the provider.

ProviderResponse
, ProviderResponseArgs

ApplicationName string
The provider's marketplace application display name.
InstanceUri string
A Uri identifying the specific instance of this provider.
ProviderId string
Unique id of this provider.
ProviderSku string
The sku associated with pricing information for this provider.
ProvisioningState string
Provisioning status field
ResourceUsageId string
Id to track resource usage for the provider.
ApplicationName string
The provider's marketplace application display name.
InstanceUri string
A Uri identifying the specific instance of this provider.
ProviderId string
Unique id of this provider.
ProviderSku string
The sku associated with pricing information for this provider.
ProvisioningState string
Provisioning status field
ResourceUsageId string
Id to track resource usage for the provider.
applicationName String
The provider's marketplace application display name.
instanceUri String
A Uri identifying the specific instance of this provider.
providerId String
Unique id of this provider.
providerSku String
The sku associated with pricing information for this provider.
provisioningState String
Provisioning status field
resourceUsageId String
Id to track resource usage for the provider.
applicationName string
The provider's marketplace application display name.
instanceUri string
A Uri identifying the specific instance of this provider.
providerId string
Unique id of this provider.
providerSku string
The sku associated with pricing information for this provider.
provisioningState string
Provisioning status field
resourceUsageId string
Id to track resource usage for the provider.
application_name str
The provider's marketplace application display name.
instance_uri str
A Uri identifying the specific instance of this provider.
provider_id str
Unique id of this provider.
provider_sku str
The sku associated with pricing information for this provider.
provisioning_state str
Provisioning status field
resource_usage_id str
Id to track resource usage for the provider.
applicationName String
The provider's marketplace application display name.
instanceUri String
A Uri identifying the specific instance of this provider.
providerId String
Unique id of this provider.
providerSku String
The sku associated with pricing information for this provider.
provisioningState String
Provisioning status field
resourceUsageId String
Id to track resource usage for the provider.

ProviderStatus
, ProviderStatusArgs

Succeeded
SucceededThe provider is successfully provisioned.
Launching
LaunchingThe provider is starting provisioning.
Updating
UpdatingThe provider is updating.
Deleting
DeletingThe provider is deleting.
Deleted
DeletedThe provider is deleted.
Failed
FailedThe provider is failed.
ProviderStatusSucceeded
SucceededThe provider is successfully provisioned.
ProviderStatusLaunching
LaunchingThe provider is starting provisioning.
ProviderStatusUpdating
UpdatingThe provider is updating.
ProviderStatusDeleting
DeletingThe provider is deleting.
ProviderStatusDeleted
DeletedThe provider is deleted.
ProviderStatusFailed
FailedThe provider is failed.
Succeeded
SucceededThe provider is successfully provisioned.
Launching
LaunchingThe provider is starting provisioning.
Updating
UpdatingThe provider is updating.
Deleting
DeletingThe provider is deleting.
Deleted
DeletedThe provider is deleted.
Failed
FailedThe provider is failed.
Succeeded
SucceededThe provider is successfully provisioned.
Launching
LaunchingThe provider is starting provisioning.
Updating
UpdatingThe provider is updating.
Deleting
DeletingThe provider is deleting.
Deleted
DeletedThe provider is deleted.
Failed
FailedThe provider is failed.
SUCCEEDED
SucceededThe provider is successfully provisioned.
LAUNCHING
LaunchingThe provider is starting provisioning.
UPDATING
UpdatingThe provider is updating.
DELETING
DeletingThe provider is deleting.
DELETED
DeletedThe provider is deleted.
FAILED
FailedThe provider is failed.
"Succeeded"
SucceededThe provider is successfully provisioned.
"Launching"
LaunchingThe provider is starting provisioning.
"Updating"
UpdatingThe provider is updating.
"Deleting"
DeletingThe provider is deleting.
"Deleted"
DeletedThe provider is deleted.
"Failed"
FailedThe provider is failed.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
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
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
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
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
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
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
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
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
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
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
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
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

WorkspaceResourceProperties
, WorkspaceResourcePropertiesArgs

ApiKeyEnabled bool
Indicator of enablement of the Quantum workspace Api keys.
Providers List<Pulumi.AzureNative.Quantum.Inputs.Provider>
List of Providers selected for this Workspace
StorageAccount string
ARM Resource Id of the storage account associated with this workspace.
ApiKeyEnabled bool
Indicator of enablement of the Quantum workspace Api keys.
Providers []Provider
List of Providers selected for this Workspace
StorageAccount string
ARM Resource Id of the storage account associated with this workspace.
apiKeyEnabled Boolean
Indicator of enablement of the Quantum workspace Api keys.
providers List<Provider>
List of Providers selected for this Workspace
storageAccount String
ARM Resource Id of the storage account associated with this workspace.
apiKeyEnabled boolean
Indicator of enablement of the Quantum workspace Api keys.
providers Provider[]
List of Providers selected for this Workspace
storageAccount string
ARM Resource Id of the storage account associated with this workspace.
api_key_enabled bool
Indicator of enablement of the Quantum workspace Api keys.
providers Sequence[Provider]
List of Providers selected for this Workspace
storage_account str
ARM Resource Id of the storage account associated with this workspace.
apiKeyEnabled Boolean
Indicator of enablement of the Quantum workspace Api keys.
providers List<Property Map>
List of Providers selected for this Workspace
storageAccount String
ARM Resource Id of the storage account associated with this workspace.

WorkspaceResourcePropertiesResponse
, WorkspaceResourcePropertiesResponseArgs

EndpointUri This property is required. string
The URI of the workspace endpoint.
ProvisioningState This property is required. string
Provisioning status field
Usable This property is required. string
Whether the current workspace is ready to accept Jobs.
ApiKeyEnabled bool
Indicator of enablement of the Quantum workspace Api keys.
Providers List<Pulumi.AzureNative.Quantum.Inputs.ProviderResponse>
List of Providers selected for this Workspace
StorageAccount string
ARM Resource Id of the storage account associated with this workspace.
EndpointUri This property is required. string
The URI of the workspace endpoint.
ProvisioningState This property is required. string
Provisioning status field
Usable This property is required. string
Whether the current workspace is ready to accept Jobs.
ApiKeyEnabled bool
Indicator of enablement of the Quantum workspace Api keys.
Providers []ProviderResponse
List of Providers selected for this Workspace
StorageAccount string
ARM Resource Id of the storage account associated with this workspace.
endpointUri This property is required. String
The URI of the workspace endpoint.
provisioningState This property is required. String
Provisioning status field
usable This property is required. String
Whether the current workspace is ready to accept Jobs.
apiKeyEnabled Boolean
Indicator of enablement of the Quantum workspace Api keys.
providers List<ProviderResponse>
List of Providers selected for this Workspace
storageAccount String
ARM Resource Id of the storage account associated with this workspace.
endpointUri This property is required. string
The URI of the workspace endpoint.
provisioningState This property is required. string
Provisioning status field
usable This property is required. string
Whether the current workspace is ready to accept Jobs.
apiKeyEnabled boolean
Indicator of enablement of the Quantum workspace Api keys.
providers ProviderResponse[]
List of Providers selected for this Workspace
storageAccount string
ARM Resource Id of the storage account associated with this workspace.
endpoint_uri This property is required. str
The URI of the workspace endpoint.
provisioning_state This property is required. str
Provisioning status field
usable This property is required. str
Whether the current workspace is ready to accept Jobs.
api_key_enabled bool
Indicator of enablement of the Quantum workspace Api keys.
providers Sequence[ProviderResponse]
List of Providers selected for this Workspace
storage_account str
ARM Resource Id of the storage account associated with this workspace.
endpointUri This property is required. String
The URI of the workspace endpoint.
provisioningState This property is required. String
Provisioning status field
usable This property is required. String
Whether the current workspace is ready to accept Jobs.
apiKeyEnabled Boolean
Indicator of enablement of the Quantum workspace Api keys.
providers List<Property Map>
List of Providers selected for this Workspace
storageAccount String
ARM Resource Id of the storage account associated with this workspace.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:quantum:Workspace quantumworkspace1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Quantum/workspaces/{workspaceName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi