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

azure-native.desktopvirtualization.Workspace

Explore with Pulumi AI

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

Represents a Workspace definition.

Uses Azure REST API version 2024-04-03. In version 2.x of the Azure Native provider, it used API version 2022-09-09.

Other available API versions: 2022-09-09, 2022-10-14-preview, 2023-09-05, 2023-10-04-preview, 2023-11-01-preview, 2024-01-16-preview, 2024-03-06-preview, 2024-04-08-preview, 2024-08-08-preview, 2024-11-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native desktopvirtualization [ApiVersion]. See the version guide for details.

Example Usage

Workspace_Create

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

return await Deployment.RunAsync(() => 
{
    var workspace = new AzureNative.DesktopVirtualization.Workspace("workspace", new()
    {
        Description = "des1",
        FriendlyName = "friendly",
        Location = "centralus",
        ResourceGroupName = "resourceGroup1",
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
        WorkspaceName = "workspace1",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := desktopvirtualization.NewWorkspace(ctx, "workspace", &desktopvirtualization.WorkspaceArgs{
			Description:       pulumi.String("des1"),
			FriendlyName:      pulumi.String("friendly"),
			Location:          pulumi.String("centralus"),
			ResourceGroupName: pulumi.String("resourceGroup1"),
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
			WorkspaceName: pulumi.String("workspace1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.desktopvirtualization.Workspace;
import com.pulumi.azurenative.desktopvirtualization.WorkspaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var workspace = new Workspace("workspace", WorkspaceArgs.builder()
            .description("des1")
            .friendlyName("friendly")
            .location("centralus")
            .resourceGroupName("resourceGroup1")
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .workspaceName("workspace1")
            .build());

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

const workspace = new azure_native.desktopvirtualization.Workspace("workspace", {
    description: "des1",
    friendlyName: "friendly",
    location: "centralus",
    resourceGroupName: "resourceGroup1",
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
    workspaceName: "workspace1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

workspace = azure_native.desktopvirtualization.Workspace("workspace",
    description="des1",
    friendly_name="friendly",
    location="centralus",
    resource_group_name="resourceGroup1",
    tags={
        "tag1": "value1",
        "tag2": "value2",
    },
    workspace_name="workspace1")
Copy
resources:
  workspace:
    type: azure-native:desktopvirtualization:Workspace
    properties:
      description: des1
      friendlyName: friendly
      location: centralus
      resourceGroupName: resourceGroup1
      tags:
        tag1: value1
        tag2: value2
      workspaceName: workspace1
Copy

Create Workspace Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Workspace(name: string, args: WorkspaceArgs, opts?: CustomResourceOptions);
@overload
def Workspace(resource_name: str,
              args: WorkspaceArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def Workspace(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              resource_group_name: Optional[str] = None,
              identity: Optional[ResourceModelWithAllowedPropertySetIdentityArgs] = None,
              friendly_name: Optional[str] = None,
              application_group_references: Optional[Sequence[str]] = None,
              kind: Optional[str] = None,
              location: Optional[str] = None,
              managed_by: Optional[str] = None,
              plan: Optional[ResourceModelWithAllowedPropertySetPlanArgs] = None,
              public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
              description: Optional[str] = None,
              sku: Optional[ResourceModelWithAllowedPropertySetSkuArgs] = 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:desktopvirtualization:Workspace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WorkspaceArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exampleworkspaceResourceResourceFromDesktopvirtualization = new AzureNative.DesktopVirtualization.Workspace("exampleworkspaceResourceResourceFromDesktopvirtualization", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetIdentityArgs
    {
        Type = AzureNative.DesktopVirtualization.ResourceIdentityType.SystemAssigned,
    },
    FriendlyName = "string",
    ApplicationGroupReferences = new[]
    {
        "string",
    },
    Kind = "string",
    Location = "string",
    ManagedBy = "string",
    Plan = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetPlanArgs
    {
        Name = "string",
        Product = "string",
        Publisher = "string",
        PromotionCode = "string",
        Version = "string",
    },
    PublicNetworkAccess = "string",
    Description = "string",
    Sku = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetSkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = AzureNative.DesktopVirtualization.SkuTier.Free,
    },
    Tags = 
    {
        { "string", "string" },
    },
    WorkspaceName = "string",
});
Copy
example, err := desktopvirtualization.NewWorkspace(ctx, "exampleworkspaceResourceResourceFromDesktopvirtualization", &desktopvirtualization.WorkspaceArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &desktopvirtualization.ResourceModelWithAllowedPropertySetIdentityArgs{
		Type: desktopvirtualization.ResourceIdentityTypeSystemAssigned,
	},
	FriendlyName: pulumi.String("string"),
	ApplicationGroupReferences: pulumi.StringArray{
		pulumi.String("string"),
	},
	Kind:      pulumi.String("string"),
	Location:  pulumi.String("string"),
	ManagedBy: pulumi.String("string"),
	Plan: &desktopvirtualization.ResourceModelWithAllowedPropertySetPlanArgs{
		Name:          pulumi.String("string"),
		Product:       pulumi.String("string"),
		Publisher:     pulumi.String("string"),
		PromotionCode: pulumi.String("string"),
		Version:       pulumi.String("string"),
	},
	PublicNetworkAccess: pulumi.String("string"),
	Description:         pulumi.String("string"),
	Sku: &desktopvirtualization.ResourceModelWithAllowedPropertySetSkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     desktopvirtualization.SkuTierFree,
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	WorkspaceName: pulumi.String("string"),
})
Copy
var exampleworkspaceResourceResourceFromDesktopvirtualization = new Workspace("exampleworkspaceResourceResourceFromDesktopvirtualization", WorkspaceArgs.builder()
    .resourceGroupName("string")
    .identity(ResourceModelWithAllowedPropertySetIdentityArgs.builder()
        .type("SystemAssigned")
        .build())
    .friendlyName("string")
    .applicationGroupReferences("string")
    .kind("string")
    .location("string")
    .managedBy("string")
    .plan(ResourceModelWithAllowedPropertySetPlanArgs.builder()
        .name("string")
        .product("string")
        .publisher("string")
        .promotionCode("string")
        .version("string")
        .build())
    .publicNetworkAccess("string")
    .description("string")
    .sku(ResourceModelWithAllowedPropertySetSkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("Free")
        .build())
    .tags(Map.of("string", "string"))
    .workspaceName("string")
    .build());
Copy
exampleworkspace_resource_resource_from_desktopvirtualization = azure_native.desktopvirtualization.Workspace("exampleworkspaceResourceResourceFromDesktopvirtualization",
    resource_group_name="string",
    identity={
        "type": azure_native.desktopvirtualization.ResourceIdentityType.SYSTEM_ASSIGNED,
    },
    friendly_name="string",
    application_group_references=["string"],
    kind="string",
    location="string",
    managed_by="string",
    plan={
        "name": "string",
        "product": "string",
        "publisher": "string",
        "promotion_code": "string",
        "version": "string",
    },
    public_network_access="string",
    description="string",
    sku={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": azure_native.desktopvirtualization.SkuTier.FREE,
    },
    tags={
        "string": "string",
    },
    workspace_name="string")
Copy
const exampleworkspaceResourceResourceFromDesktopvirtualization = new azure_native.desktopvirtualization.Workspace("exampleworkspaceResourceResourceFromDesktopvirtualization", {
    resourceGroupName: "string",
    identity: {
        type: azure_native.desktopvirtualization.ResourceIdentityType.SystemAssigned,
    },
    friendlyName: "string",
    applicationGroupReferences: ["string"],
    kind: "string",
    location: "string",
    managedBy: "string",
    plan: {
        name: "string",
        product: "string",
        publisher: "string",
        promotionCode: "string",
        version: "string",
    },
    publicNetworkAccess: "string",
    description: "string",
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: azure_native.desktopvirtualization.SkuTier.Free,
    },
    tags: {
        string: "string",
    },
    workspaceName: "string",
});
Copy
type: azure-native:desktopvirtualization:Workspace
properties:
    applicationGroupReferences:
        - string
    description: string
    friendlyName: string
    identity:
        type: SystemAssigned
    kind: string
    location: string
    managedBy: string
    plan:
        name: string
        product: string
        promotionCode: string
        publisher: string
        version: string
    publicNetworkAccess: string
    resourceGroupName: string
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    tags:
        string: string
    workspaceName: string
Copy

Workspace Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

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

The Workspace resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ApplicationGroupReferences List<string>
List of applicationGroup resource Ids.
Description string
Description of Workspace.
FriendlyName string
Friendly name of Workspace.
Identity Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetIdentity
Kind Changes to this property will trigger replacement. string
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ManagedBy string
The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
Plan Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetPlan
PublicNetworkAccess string | Pulumi.AzureNative.DesktopVirtualization.PublicNetworkAccess
Enabled allows this resource to be accessed from both public and private networks, Disabled allows this resource to only be accessed via private endpoints
Sku Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetSku
Tags Dictionary<string, string>
Resource tags.
WorkspaceName Changes to this property will trigger replacement. string
The name of the workspace
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ApplicationGroupReferences []string
List of applicationGroup resource Ids.
Description string
Description of Workspace.
FriendlyName string
Friendly name of Workspace.
Identity ResourceModelWithAllowedPropertySetIdentityArgs
Kind Changes to this property will trigger replacement. string
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
ManagedBy string
The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
Plan ResourceModelWithAllowedPropertySetPlanArgs
PublicNetworkAccess string | PublicNetworkAccess
Enabled allows this resource to be accessed from both public and private networks, Disabled allows this resource to only be accessed via private endpoints
Sku ResourceModelWithAllowedPropertySetSkuArgs
Tags map[string]string
Resource tags.
WorkspaceName Changes to this property will trigger replacement. string
The name of the workspace
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
applicationGroupReferences List<String>
List of applicationGroup resource Ids.
description String
Description of Workspace.
friendlyName String
Friendly name of Workspace.
identity ResourceModelWithAllowedPropertySetIdentity
kind Changes to this property will trigger replacement. String
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
managedBy String
The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
plan ResourceModelWithAllowedPropertySetPlan
publicNetworkAccess String | PublicNetworkAccess
Enabled allows this resource to be accessed from both public and private networks, Disabled allows this resource to only be accessed via private endpoints
sku ResourceModelWithAllowedPropertySetSku
tags Map<String,String>
Resource tags.
workspaceName Changes to this property will trigger replacement. String
The name of the workspace
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
applicationGroupReferences string[]
List of applicationGroup resource Ids.
description string
Description of Workspace.
friendlyName string
Friendly name of Workspace.
identity ResourceModelWithAllowedPropertySetIdentity
kind Changes to this property will trigger replacement. string
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
managedBy string
The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
plan ResourceModelWithAllowedPropertySetPlan
publicNetworkAccess string | PublicNetworkAccess
Enabled allows this resource to be accessed from both public and private networks, Disabled allows this resource to only be accessed via private endpoints
sku ResourceModelWithAllowedPropertySetSku
tags {[key: string]: string}
Resource tags.
workspaceName Changes to this property will trigger replacement. string
The name of the workspace
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
application_group_references Sequence[str]
List of applicationGroup resource Ids.
description str
Description of Workspace.
friendly_name str
Friendly name of Workspace.
identity ResourceModelWithAllowedPropertySetIdentityArgs
kind Changes to this property will trigger replacement. str
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
managed_by str
The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
plan ResourceModelWithAllowedPropertySetPlanArgs
public_network_access str | PublicNetworkAccess
Enabled allows this resource to be accessed from both public and private networks, Disabled allows this resource to only be accessed via private endpoints
sku ResourceModelWithAllowedPropertySetSkuArgs
tags Mapping[str, str]
Resource tags.
workspace_name Changes to this property will trigger replacement. str
The name of the workspace
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
applicationGroupReferences List<String>
List of applicationGroup resource Ids.
description String
Description of Workspace.
friendlyName String
Friendly name of Workspace.
identity Property Map
kind Changes to this property will trigger replacement. String
Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type. E.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
managedBy String
The fully qualified resource ID of the resource that manages this resource. Indicates if this resource is managed by another Azure resource. If this is present, complete mode deployment will not delete the resource if it is removed from the template since it is managed by another resource.
plan Property Map
publicNetworkAccess String | "Enabled" | "Disabled"
Enabled allows this resource to be accessed from both public and private networks, Disabled allows this resource to only be accessed via private endpoints
sku Property Map
tags Map<String>
Resource tags.
workspaceName Changes to this property will trigger replacement. String
The name of the workspace

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
CloudPcResource bool
Is cloud pc resource.
Etag string
The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ObjectId string
ObjectId of Workspace. (internal use)
PrivateEndpointConnections List<Pulumi.AzureNative.DesktopVirtualization.Outputs.PrivateEndpointConnectionResponse>
List of private endpoint connection associated with the specified resource
SystemData Pulumi.AzureNative.DesktopVirtualization.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
CloudPcResource bool
Is cloud pc resource.
Etag string
The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ObjectId string
ObjectId of Workspace. (internal use)
PrivateEndpointConnections []PrivateEndpointConnectionResponse
List of private endpoint connection associated with the specified resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
cloudPcResource Boolean
Is cloud pc resource.
etag String
The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
objectId String
ObjectId of Workspace. (internal use)
privateEndpointConnections List<PrivateEndpointConnectionResponse>
List of private endpoint connection associated with the specified resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
cloudPcResource boolean
Is cloud pc resource.
etag string
The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
objectId string
ObjectId of Workspace. (internal use)
privateEndpointConnections PrivateEndpointConnectionResponse[]
List of private endpoint connection associated with the specified resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
cloud_pc_resource bool
Is cloud pc resource.
etag str
The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
object_id str
ObjectId of Workspace. (internal use)
private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
List of private endpoint connection associated with the specified resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
cloudPcResource Boolean
Is cloud pc resource.
etag String
The etag field is not required. If it is provided in the response body, it must also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
objectId String
ObjectId of Workspace. (internal use)
privateEndpointConnections List<Property Map>
List of private endpoint connection associated with the specified resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

PrivateEndpointConnectionResponse
, PrivateEndpointConnectionResponseArgs

GroupIds This property is required. List<string>
The group ids for the private endpoint resource.
Id This property is required. string
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. Pulumi.AzureNative.DesktopVirtualization.Inputs.PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
SystemData This property is required. Pulumi.AzureNative.DesktopVirtualization.Inputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
PrivateEndpoint Pulumi.AzureNative.DesktopVirtualization.Inputs.PrivateEndpointResponse
The private endpoint resource.
GroupIds This property is required. []string
The group ids for the private endpoint resource.
Id This property is required. string
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
Name This property is required. string
The name of the resource
PrivateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
ProvisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
SystemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
PrivateEndpoint PrivateEndpointResponse
The private endpoint resource.
groupIds This property is required. List<String>
The group ids for the private endpoint resource.
id This property is required. String
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
systemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint PrivateEndpointResponse
The private endpoint resource.
groupIds This property is required. string[]
The group ids for the private endpoint resource.
id This property is required. string
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. string
The name of the resource
privateLinkServiceConnectionState This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. string
The provisioning state of the private endpoint connection resource.
systemData This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint PrivateEndpointResponse
The private endpoint resource.
group_ids This property is required. Sequence[str]
The group ids for the private endpoint resource.
id This property is required. str
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. str
The name of the resource
private_link_service_connection_state This property is required. PrivateLinkServiceConnectionStateResponse
A collection of information about the state of the connection between service consumer and provider.
provisioning_state This property is required. str
The provisioning state of the private endpoint connection resource.
system_data This property is required. SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
private_endpoint PrivateEndpointResponse
The private endpoint resource.
groupIds This property is required. List<String>
The group ids for the private endpoint resource.
id This property is required. String
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
name This property is required. String
The name of the resource
privateLinkServiceConnectionState This property is required. Property Map
A collection of information about the state of the connection between service consumer and provider.
provisioningState This property is required. String
The provisioning state of the private endpoint connection resource.
systemData This property is required. Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type This property is required. String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
privateEndpoint Property Map
The private endpoint resource.

PrivateEndpointResponse
, PrivateEndpointResponseArgs

Id This property is required. string
The ARM identifier for private endpoint.
Id This property is required. string
The ARM identifier for private endpoint.
id This property is required. String
The ARM identifier for private endpoint.
id This property is required. string
The ARM identifier for private endpoint.
id This property is required. str
The ARM identifier for private endpoint.
id This property is required. String
The ARM identifier for private endpoint.

PrivateLinkServiceConnectionStateResponse
, PrivateLinkServiceConnectionStateResponseArgs

ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ActionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
Description string
The reason for approval/rejection of the connection.
Status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired string
A message indicating if changes on the service provider require any updates on the consumer.
description string
The reason for approval/rejection of the connection.
status string
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actions_required str
A message indicating if changes on the service provider require any updates on the consumer.
description str
The reason for approval/rejection of the connection.
status str
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
actionsRequired String
A message indicating if changes on the service provider require any updates on the consumer.
description String
The reason for approval/rejection of the connection.
status String
Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

PublicNetworkAccess
, PublicNetworkAccessArgs

Enabled
Enabled
Disabled
Disabled
PublicNetworkAccessEnabled
Enabled
PublicNetworkAccessDisabled
Disabled
Enabled
Enabled
Disabled
Disabled
Enabled
Enabled
Disabled
Disabled
ENABLED
Enabled
DISABLED
Disabled
"Enabled"
Enabled
"Disabled"
Disabled

ResourceIdentityType
, ResourceIdentityTypeArgs

SystemAssigned
SystemAssigned
ResourceIdentityTypeSystemAssigned
SystemAssigned
SystemAssigned
SystemAssigned
SystemAssigned
SystemAssigned
SYSTEM_ASSIGNED
SystemAssigned
"SystemAssigned"
SystemAssigned

ResourceModelWithAllowedPropertySetIdentity
, ResourceModelWithAllowedPropertySetIdentityArgs

Type ResourceIdentityType
The identity type.
type ResourceIdentityType
The identity type.
type ResourceIdentityType
The identity type.
type ResourceIdentityType
The identity type.
type "SystemAssigned"
The identity type.

ResourceModelWithAllowedPropertySetPlan
, ResourceModelWithAllowedPropertySetPlanArgs

Name This property is required. string
A user defined name of the 3rd Party Artifact that is being procured.
Product This property is required. string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
Publisher This property is required. string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
PromotionCode string
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
Version string
The version of the desired product/artifact.
Name This property is required. string
A user defined name of the 3rd Party Artifact that is being procured.
Product This property is required. string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
Publisher This property is required. string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
PromotionCode string
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
Version string
The version of the desired product/artifact.
name This property is required. String
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotionCode String
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version String
The version of the desired product/artifact.
name This property is required. string
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotionCode string
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version string
The version of the desired product/artifact.
name This property is required. str
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. str
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. str
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotion_code str
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version str
The version of the desired product/artifact.
name This property is required. String
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotionCode String
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version String
The version of the desired product/artifact.

ResourceModelWithAllowedPropertySetResponseIdentity
, ResourceModelWithAllowedPropertySetResponseIdentityArgs

PrincipalId This property is required. string
The principal ID of resource identity. The value must be an UUID.
TenantId This property is required. string
The tenant ID of resource. The value must be an UUID.
Type string
The identity type.
PrincipalId This property is required. string
The principal ID of resource identity. The value must be an UUID.
TenantId This property is required. string
The tenant ID of resource. The value must be an UUID.
Type string
The identity type.
principalId This property is required. String
The principal ID of resource identity. The value must be an UUID.
tenantId This property is required. String
The tenant ID of resource. The value must be an UUID.
type String
The identity type.
principalId This property is required. string
The principal ID of resource identity. The value must be an UUID.
tenantId This property is required. string
The tenant ID of resource. The value must be an UUID.
type string
The identity type.
principal_id This property is required. str
The principal ID of resource identity. The value must be an UUID.
tenant_id This property is required. str
The tenant ID of resource. The value must be an UUID.
type str
The identity type.
principalId This property is required. String
The principal ID of resource identity. The value must be an UUID.
tenantId This property is required. String
The tenant ID of resource. The value must be an UUID.
type String
The identity type.

ResourceModelWithAllowedPropertySetResponsePlan
, ResourceModelWithAllowedPropertySetResponsePlanArgs

Name This property is required. string
A user defined name of the 3rd Party Artifact that is being procured.
Product This property is required. string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
Publisher This property is required. string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
PromotionCode string
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
Version string
The version of the desired product/artifact.
Name This property is required. string
A user defined name of the 3rd Party Artifact that is being procured.
Product This property is required. string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
Publisher This property is required. string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
PromotionCode string
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
Version string
The version of the desired product/artifact.
name This property is required. String
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotionCode String
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version String
The version of the desired product/artifact.
name This property is required. string
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. string
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. string
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotionCode string
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version string
The version of the desired product/artifact.
name This property is required. str
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. str
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. str
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotion_code str
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version str
The version of the desired product/artifact.
name This property is required. String
A user defined name of the 3rd Party Artifact that is being procured.
product This property is required. String
The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.
publisher This property is required. String
The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic
promotionCode String
A publisher provided promotion code as provisioned in Data Market for the said product/artifact.
version String
The version of the desired product/artifact.

ResourceModelWithAllowedPropertySetResponseSku
, ResourceModelWithAllowedPropertySetResponseSkuArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier str
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

ResourceModelWithAllowedPropertySetSku
, ResourceModelWithAllowedPropertySetSkuArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier Pulumi.AzureNative.DesktopVirtualization.SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier "Free" | "Basic" | "Standard" | "Premium"
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

SkuTier
, SkuTierArgs

Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
SkuTierFree
Free
SkuTierBasic
Basic
SkuTierStandard
Standard
SkuTierPremium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
FREE
Free
BASIC
Basic
STANDARD
Standard
PREMIUM
Premium
"Free"
Free
"Basic"
Basic
"Standard"
Standard
"Premium"
Premium

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:desktopvirtualization:Workspace workspace1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/workspaces/{workspaceName} 
Copy

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

Package Details

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