1. Packages
  2. Azure Native
  3. API Docs
  4. quantum
  5. Workspace
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.quantum.Workspace

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    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 (
    	"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.

    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:

    ResourceGroupName string
    The name of the resource group.
    Identity Pulumi.AzureNative.Quantum.Inputs.QuantumWorkspaceIdentity
    Managed Identity information.
    Location string
    The geo-location where the resource lives
    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.
    Tags Dictionary<string, string>
    Resource tags.
    WorkspaceName string
    The name of the quantum workspace resource.
    ResourceGroupName string
    The name of the resource group.
    Identity QuantumWorkspaceIdentityArgs
    Managed Identity information.
    Location string
    The geo-location where the resource lives
    Providers []ProviderArgs
    List of Providers selected for this Workspace
    StorageAccount string
    ARM Resource Id of the storage account associated with this workspace.
    Tags map[string]string
    Resource tags.
    WorkspaceName string
    The name of the quantum workspace resource.
    resourceGroupName String
    The name of the resource group.
    identity QuantumWorkspaceIdentity
    Managed Identity information.
    location String
    The geo-location where the resource lives
    providers List<Provider>
    List of Providers selected for this Workspace
    storageAccount String
    ARM Resource Id of the storage account associated with this workspace.
    tags Map<String,String>
    Resource tags.
    workspaceName String
    The name of the quantum workspace resource.
    resourceGroupName string
    The name of the resource group.
    identity QuantumWorkspaceIdentity
    Managed Identity information.
    location string
    The geo-location where the resource lives
    providers Provider[]
    List of Providers selected for this Workspace
    storageAccount string
    ARM Resource Id of the storage account associated with this workspace.
    tags {[key: string]: string}
    Resource tags.
    workspaceName string
    The name of the quantum workspace resource.
    resource_group_name str
    The name of the resource group.
    identity QuantumWorkspaceIdentityArgs
    Managed Identity information.
    location str
    The geo-location where the resource lives
    providers Sequence[ProviderArgs]
    List of Providers selected for this Workspace
    storage_account str
    ARM Resource Id of the storage account associated with this workspace.
    tags Mapping[str, str]
    Resource tags.
    workspace_name str
    The name of the quantum workspace resource.
    resourceGroupName String
    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
    storageAccount String
    ARM Resource Id of the storage account associated with this workspace.
    tags Map<String>
    Resource tags.
    workspaceName 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:

    EndpointUri 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
    ProvisioningState string
    Provisioning status field
    SystemData Pulumi.AzureNative.Quantum.Outputs.SystemDataResponse
    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.
    EndpointUri 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
    ProvisioningState string
    Provisioning status field
    SystemData SystemDataResponse
    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.
    endpointUri 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
    provisioningState String
    Provisioning status field
    systemData SystemDataResponse
    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.
    endpointUri 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
    provisioningState string
    Provisioning status field
    systemData SystemDataResponse
    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 SystemDataResponse
    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.
    endpointUri 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
    provisioningState String
    Provisioning status field
    systemData 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

    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.Status
    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 | Status
    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 | Status
    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 | Status
    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 | Status
    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.

    QuantumWorkspaceIdentity, QuantumWorkspaceIdentityArgs

    Type string | ResourceIdentityType
    The identity type.
    type String | ResourceIdentityType
    The identity type.
    type string | ResourceIdentityType
    The identity type.
    type str | ResourceIdentityType
    The identity type.
    type String | "SystemAssigned" | "None"
    The identity type.

    QuantumWorkspaceResponseIdentity, QuantumWorkspaceResponseIdentityArgs

    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    PrincipalId string
    The principal ID of resource identity.
    TenantId string
    The tenant ID of resource.
    Type string
    The identity type.
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.
    principalId string
    The principal ID of resource identity.
    tenantId 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.
    principalId String
    The principal ID of resource identity.
    tenantId String
    The tenant ID of resource.
    type String
    The identity type.

    ResourceIdentityType, ResourceIdentityTypeArgs

    SystemAssigned
    SystemAssigned
    None
    None
    ResourceIdentityTypeSystemAssigned
    SystemAssigned
    ResourceIdentityTypeNone
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    None
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    NONE
    None
    "SystemAssigned"
    SystemAssigned
    "None"
    None

    Status, StatusArgs

    Succeeded
    Succeeded
    Launching
    Launching
    Updating
    Updating
    Deleting
    Deleting
    Deleted
    Deleted
    Failed
    Failed
    StatusSucceeded
    Succeeded
    StatusLaunching
    Launching
    StatusUpdating
    Updating
    StatusDeleting
    Deleting
    StatusDeleted
    Deleted
    StatusFailed
    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

    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.

    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi