azure-native.quantum.Workspace
Explore with Pulumi AI
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",
});
});
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
})
}
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());
}
}
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",
});
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")
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
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 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 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",
});
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"),
})
var exampleworkspaceResourceResourceFromQuantum = new com.pulumi.azurenative.quantum.Workspace("exampleworkspaceResourceResourceFromQuantum", com.pulumi.azurenative.quantum.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());
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")
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",
});
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
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Pulumi.
Azure Native. Quantum. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Quantum. Inputs. Workspace Resource Properties - Gets or sets the properties. Define quantum workspace's specific properties.
- Dictionary<string, string>
- Resource tags.
- Workspace
Name string - The name of the quantum workspace resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Properties
Workspace
Resource Properties Args - Gets or sets the properties. Define quantum workspace's specific properties.
- map[string]string
- Resource tags.
- Workspace
Name string - The name of the quantum workspace resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- properties
Workspace
Resource Properties - Gets or sets the properties. Define quantum workspace's specific properties.
- Map<String,String>
- Resource tags.
- workspace
Name String - The name of the quantum workspace resource.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- properties
Workspace
Resource Properties - Gets or sets the properties. Define quantum workspace's specific properties.
- {[key: string]: string}
- Resource tags.
- workspace
Name string - The name of the quantum workspace resource.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- properties
Workspace
Resource Properties Args - Gets or sets the properties. Define quantum workspace's specific properties.
- Mapping[str, str]
- Resource tags.
- workspace_
name str - The name of the quantum workspace resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity Property Map
- The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- properties Property Map
- Gets or sets the properties. Define quantum workspace's specific properties.
- Map<String>
- Resource tags.
- workspace
Name 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:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Quantum. Outputs. System Data Response - 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 stringVersion - 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
- System
Data SystemData Response - 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 StringVersion - 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
- system
Data SystemData Response - 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 stringVersion - 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
- system
Data SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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
- system
Data 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
string | Pulumi.
Azure Native. Quantum. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - 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
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - 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
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - 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
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - 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
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - 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
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Quantum. Inputs. User Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - 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 string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - 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 str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - 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 String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
Provider, ProviderArgs
- Application
Name string - The provider's marketplace application display name.
- Instance
Uri string - A Uri identifying the specific instance of this provider.
- Provider
Id string - Unique id of this provider.
- Provider
Sku string - The sku associated with pricing information for this provider.
- Provisioning
State string | Pulumi.Azure Native. Quantum. Provider Status - Provisioning status field
- Resource
Usage stringId - Id to track resource usage for the provider.
- Application
Name string - The provider's marketplace application display name.
- Instance
Uri string - A Uri identifying the specific instance of this provider.
- Provider
Id string - Unique id of this provider.
- Provider
Sku string - The sku associated with pricing information for this provider.
- Provisioning
State string | ProviderStatus - Provisioning status field
- Resource
Usage stringId - Id to track resource usage for the provider.
- application
Name String - The provider's marketplace application display name.
- instance
Uri String - A Uri identifying the specific instance of this provider.
- provider
Id String - Unique id of this provider.
- provider
Sku String - The sku associated with pricing information for this provider.
- provisioning
State String | ProviderStatus - Provisioning status field
- resource
Usage StringId - Id to track resource usage for the provider.
- application
Name string - The provider's marketplace application display name.
- instance
Uri string - A Uri identifying the specific instance of this provider.
- provider
Id string - Unique id of this provider.
- provider
Sku string - The sku associated with pricing information for this provider.
- provisioning
State string | ProviderStatus - Provisioning status field
- resource
Usage stringId - 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_ strid - Id to track resource usage for the provider.
- application
Name String - The provider's marketplace application display name.
- instance
Uri String - A Uri identifying the specific instance of this provider.
- provider
Id String - Unique id of this provider.
- provider
Sku String - The sku associated with pricing information for this provider.
- provisioning
State String | "Succeeded" | "Launching" | "Updating" | "Deleting" | "Deleted" | "Failed" - Provisioning status field
- resource
Usage StringId - Id to track resource usage for the provider.
ProviderResponse, ProviderResponseArgs
- Application
Name string - The provider's marketplace application display name.
- Instance
Uri string - A Uri identifying the specific instance of this provider.
- Provider
Id string - Unique id of this provider.
- Provider
Sku string - The sku associated with pricing information for this provider.
- Provisioning
State string - Provisioning status field
- Resource
Usage stringId - Id to track resource usage for the provider.
- Application
Name string - The provider's marketplace application display name.
- Instance
Uri string - A Uri identifying the specific instance of this provider.
- Provider
Id string - Unique id of this provider.
- Provider
Sku string - The sku associated with pricing information for this provider.
- Provisioning
State string - Provisioning status field
- Resource
Usage stringId - Id to track resource usage for the provider.
- application
Name String - The provider's marketplace application display name.
- instance
Uri String - A Uri identifying the specific instance of this provider.
- provider
Id String - Unique id of this provider.
- provider
Sku String - The sku associated with pricing information for this provider.
- provisioning
State String - Provisioning status field
- resource
Usage StringId - Id to track resource usage for the provider.
- application
Name string - The provider's marketplace application display name.
- instance
Uri string - A Uri identifying the specific instance of this provider.
- provider
Id string - Unique id of this provider.
- provider
Sku string - The sku associated with pricing information for this provider.
- provisioning
State string - Provisioning status field
- resource
Usage stringId - 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_ strid - Id to track resource usage for the provider.
- application
Name String - The provider's marketplace application display name.
- instance
Uri String - A Uri identifying the specific instance of this provider.
- provider
Id String - Unique id of this provider.
- provider
Sku String - The sku associated with pricing information for this provider.
- provisioning
State String - Provisioning status field
- resource
Usage StringId - 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.
- Provider
Status Succeeded - SucceededThe provider is successfully provisioned.
- Provider
Status Launching - LaunchingThe provider is starting provisioning.
- Provider
Status Updating - UpdatingThe provider is updating.
- Provider
Status Deleting - DeletingThe provider is deleting.
- Provider
Status Deleted - DeletedThe provider is deleted.
- Provider
Status 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.
- "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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
WorkspaceResourceProperties, WorkspaceResourcePropertiesArgs
- Api
Key boolEnabled - Indicator of enablement of the Quantum workspace Api keys.
- Providers
List<Pulumi.
Azure Native. Quantum. Inputs. Provider> - List of Providers selected for this Workspace
- Storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- Api
Key boolEnabled - Indicator of enablement of the Quantum workspace Api keys.
- Providers []Provider
- List of Providers selected for this Workspace
- Storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- api
Key BooleanEnabled - Indicator of enablement of the Quantum workspace Api keys.
- providers List<Provider>
- List of Providers selected for this Workspace
- storage
Account String - ARM Resource Id of the storage account associated with this workspace.
- api
Key booleanEnabled - Indicator of enablement of the Quantum workspace Api keys.
- providers Provider[]
- List of Providers selected for this Workspace
- storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- api_
key_ boolenabled - 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.
- api
Key BooleanEnabled - Indicator of enablement of the Quantum workspace Api keys.
- providers List<Property Map>
- List of Providers selected for this Workspace
- storage
Account String - ARM Resource Id of the storage account associated with this workspace.
WorkspaceResourcePropertiesResponse, WorkspaceResourcePropertiesResponseArgs
- Endpoint
Uri string - The URI of the workspace endpoint.
- Provisioning
State string - Provisioning status field
- Usable string
- Whether the current workspace is ready to accept Jobs.
- Api
Key boolEnabled - Indicator of enablement of the Quantum workspace Api keys.
- Providers
List<Pulumi.
Azure Native. Quantum. Inputs. Provider Response> - List of Providers selected for this Workspace
- Storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- Endpoint
Uri string - The URI of the workspace endpoint.
- Provisioning
State string - Provisioning status field
- Usable string
- Whether the current workspace is ready to accept Jobs.
- Api
Key boolEnabled - Indicator of enablement of the Quantum workspace Api keys.
- Providers
[]Provider
Response - List of Providers selected for this Workspace
- Storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- endpoint
Uri String - The URI of the workspace endpoint.
- provisioning
State String - Provisioning status field
- usable String
- Whether the current workspace is ready to accept Jobs.
- api
Key BooleanEnabled - Indicator of enablement of the Quantum workspace Api keys.
- providers
List<Provider
Response> - List of Providers selected for this Workspace
- storage
Account String - ARM Resource Id of the storage account associated with this workspace.
- endpoint
Uri string - The URI of the workspace endpoint.
- provisioning
State string - Provisioning status field
- usable string
- Whether the current workspace is ready to accept Jobs.
- api
Key booleanEnabled - Indicator of enablement of the Quantum workspace Api keys.
- providers
Provider
Response[] - List of Providers selected for this Workspace
- storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- endpoint_
uri str - The URI of the workspace endpoint.
- provisioning_
state str - Provisioning status field
- usable str
- Whether the current workspace is ready to accept Jobs.
- api_
key_ boolenabled - Indicator of enablement of the Quantum workspace Api keys.
- providers
Sequence[Provider
Response] - List of Providers selected for this Workspace
- storage_
account str - ARM Resource Id of the storage account associated with this workspace.
- endpoint
Uri String - The URI of the workspace endpoint.
- provisioning
State String - Provisioning status field
- usable String
- Whether the current workspace is ready to accept Jobs.
- api
Key BooleanEnabled - Indicator of enablement of the Quantum workspace Api keys.
- providers List<Property Map>
- List of Providers selected for this Workspace
- storage
Account 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0