azure-native.quantum.Workspace
Explore with Pulumi AI
The resource proxy definition object for quantum workspace. Azure REST API version: 2022-01-10-preview. Prior API version in Azure Native 1.x: 2019-11-04-preview.
Other available API versions: 2023-11-13-preview.
Example Usage
QuantumWorkspacesPut
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",
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",
},
},
ResourceGroupName = "quantumResourcegroup",
StorageAccount = "/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
WorkspaceName = "quantumworkspace1",
});
});
package main
import (
quantum "github.com/pulumi/pulumi-azure-native-sdk/quantum/v2"
"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"),
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"),
},
},
ResourceGroupName: pulumi.String("quantumResourcegroup"),
StorageAccount: pulumi.String("/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount"),
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.ProviderArgs;
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")
.providers(
ProviderArgs.builder()
.providerId("Honeywell")
.providerSku("Basic")
.build(),
ProviderArgs.builder()
.providerId("IonQ")
.providerSku("Basic")
.build(),
ProviderArgs.builder()
.providerId("OneQBit")
.providerSku("Basic")
.build())
.resourceGroupName("quantumResourcegroup")
.storageAccount("/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount")
.workspaceName("quantumworkspace1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workspace = azure_native.quantum.Workspace("workspace",
location="West US",
providers=[
azure_native.quantum.ProviderArgs(
provider_id="Honeywell",
provider_sku="Basic",
),
azure_native.quantum.ProviderArgs(
provider_id="IonQ",
provider_sku="Basic",
),
azure_native.quantum.ProviderArgs(
provider_id="OneQBit",
provider_sku="Basic",
),
],
resource_group_name="quantumResourcegroup",
storage_account="/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
workspace_name="quantumworkspace1")
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",
providers: [
{
providerId: "Honeywell",
providerSku: "Basic",
},
{
providerId: "IonQ",
providerSku: "Basic",
},
{
providerId: "OneQBit",
providerSku: "Basic",
},
],
resourceGroupName: "quantumResourcegroup",
storageAccount: "/subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount",
workspaceName: "quantumworkspace1",
});
resources:
workspace:
type: azure-native:quantum:Workspace
properties:
location: West US
providers:
- providerId: Honeywell
providerSku: Basic
- providerId: IonQ
providerSku: Basic
- providerId: OneQBit
providerSku: Basic
resourceGroupName: quantumResourcegroup
storageAccount: /subscriptions/1C4B2828-7D49-494F-933D-061373BE28C2/resourceGroups/quantumResourcegroup/providers/Microsoft.Storage/storageAccounts/testStorageAccount
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[QuantumWorkspaceIdentityArgs] = None,
location: Optional[str] = None,
providers: Optional[Sequence[ProviderArgs]] = None,
storage_account: Optional[str] = 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.QuantumWorkspaceIdentityArgs
{
Type = "string",
},
Location = "string",
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.QuantumWorkspaceIdentityArgs{
Type: pulumi.String("string"),
},
Location: pulumi.String("string"),
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 Workspace("exampleworkspaceResourceResourceFromQuantum", WorkspaceArgs.builder()
.resourceGroupName("string")
.identity(QuantumWorkspaceIdentityArgs.builder()
.type("string")
.build())
.location("string")
.providers(ProviderArgs.builder()
.applicationName("string")
.instanceUri("string")
.providerId("string")
.providerSku("string")
.provisioningState("string")
.resourceUsageId("string")
.build())
.storageAccount("string")
.tags(Map.of("string", "string"))
.workspaceName("string")
.build());
exampleworkspace_resource_resource_from_quantum = azure_native.quantum.Workspace("exampleworkspaceResourceResourceFromQuantum",
resource_group_name="string",
identity=azure_native.quantum.QuantumWorkspaceIdentityArgs(
type="string",
),
location="string",
providers=[azure_native.quantum.ProviderArgs(
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",
},
location: "string",
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
location: string
providers:
- applicationName: string
instanceUri: string
providerId: string
providerSku: string
provisioningState: string
resourceUsageId: string
resourceGroupName: string
storageAccount: string
tags:
string: string
workspaceName: string
Workspace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Workspace resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Identity
Pulumi.
Azure Native. Quantum. Inputs. Quantum Workspace Identity - Managed Identity information.
- Location string
- The geo-location where the resource lives
- 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.
- Dictionary<string, string>
- Resource tags.
- Workspace
Name string - The name of the quantum workspace resource.
- Resource
Group stringName - The name of the resource group.
- Identity
Quantum
Workspace Identity Args - Managed Identity information.
- Location string
- The geo-location where the resource lives
- Providers
[]Provider
Args - List of Providers selected for this Workspace
- Storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- map[string]string
- Resource tags.
- Workspace
Name string - The name of the quantum workspace resource.
- resource
Group StringName - The name of the resource group.
- identity
Quantum
Workspace Identity - Managed Identity information.
- location String
- The geo-location where the resource lives
- providers List<Provider>
- List of Providers selected for this Workspace
- storage
Account String - ARM Resource Id of the storage account associated with this workspace.
- Map<String,String>
- Resource tags.
- workspace
Name String - The name of the quantum workspace resource.
- resource
Group stringName - The name of the resource group.
- identity
Quantum
Workspace Identity - Managed Identity information.
- location string
- The geo-location where the resource lives
- providers Provider[]
- List of Providers selected for this Workspace
- storage
Account string - ARM Resource Id of the storage account associated with this workspace.
- {[key: string]: string}
- Resource tags.
- workspace
Name string - The name of the quantum workspace resource.
- resource_
group_ strname - The name of the resource group.
- identity
Quantum
Workspace Identity Args - Managed Identity information.
- location str
- The geo-location where the resource lives
- providers
Sequence[Provider
Args] - List of Providers selected for this Workspace
- storage_
account str - ARM Resource Id of the storage account associated with this workspace.
- Mapping[str, str]
- Resource tags.
- workspace_
name str - The name of the quantum workspace resource.
- resource
Group StringName - The name of the resource group.
- identity Property Map
- Managed Identity information.
- location String
- The geo-location where the resource lives
- 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.
- 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:
- Endpoint
Uri string - The URI of the workspace endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning status field
- System
Data Pulumi.Azure Native. Quantum. Outputs. System Data Response - System metadata
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Usable string
- Whether the current workspace is ready to accept Jobs.
- Endpoint
Uri string - The URI of the workspace endpoint.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning status field
- System
Data SystemData Response - System metadata
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Usable string
- Whether the current workspace is ready to accept Jobs.
- endpoint
Uri String - The URI of the workspace endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning status field
- system
Data SystemData Response - System metadata
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- usable String
- Whether the current workspace is ready to accept Jobs.
- endpoint
Uri string - The URI of the workspace endpoint.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning status field
- system
Data SystemData Response - System metadata
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- usable string
- Whether the current workspace is ready to accept Jobs.
- endpoint_
uri str - The URI of the workspace endpoint.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning status field
- system_
data SystemData Response - System metadata
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- usable str
- Whether the current workspace is ready to accept Jobs.
- endpoint
Uri String - The URI of the workspace endpoint.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning status field
- system
Data Property Map - System metadata
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- usable String
- Whether the current workspace is ready to accept Jobs.
Supporting Types
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. 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 | 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 | 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 | Status - 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 | Status - 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.
QuantumWorkspaceIdentity, QuantumWorkspaceIdentityArgs
- Type
string | Pulumi.
Azure Native. Quantum. Resource Identity Type - The identity type.
- Type
string | Resource
Identity Type - The identity type.
- type
String | Resource
Identity Type - The identity type.
- type
string | Resource
Identity Type - The identity type.
- type
str | Resource
Identity Type - The identity type.
- type
String | "System
Assigned" | "None" - The identity type.
QuantumWorkspaceResponseIdentity, QuantumWorkspaceResponseIdentityArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
ResourceIdentityType, ResourceIdentityTypeArgs
- System
Assigned - SystemAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- None
- None
- System
Assigned - SystemAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "None"
- None
Status, StatusArgs
- Succeeded
- Succeeded
- Launching
- Launching
- Updating
- Updating
- Deleting
- Deleting
- Deleted
- Deleted
- Failed
- Failed
- Status
Succeeded - Succeeded
- Status
Launching - Launching
- Status
Updating - Updating
- Status
Deleting - Deleting
- Status
Deleted - Deleted
- Status
Failed - Failed
- Succeeded
- Succeeded
- Launching
- Launching
- Updating
- Updating
- Deleting
- Deleting
- Deleted
- Deleted
- Failed
- Failed
- Succeeded
- Succeeded
- Launching
- Launching
- Updating
- Updating
- Deleting
- Deleting
- Deleted
- Deleted
- Failed
- Failed
- SUCCEEDED
- Succeeded
- LAUNCHING
- Launching
- UPDATING
- Updating
- DELETING
- Deleting
- DELETED
- Deleted
- FAILED
- Failed
- "Succeeded"
- Succeeded
- "Launching"
- Launching
- "Updating"
- Updating
- "Deleting"
- Deleting
- "Deleted"
- Deleted
- "Failed"
- 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.
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