azure-native.desktopvirtualization.ApplicationGroup

Represents a ApplicationGroup definition. API Version: 2021-02-01-preview.

Example Usage

ApplicationGroup_Create

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

return await Deployment.RunAsync(() => 
{
    var applicationGroup = new AzureNative.DesktopVirtualization.ApplicationGroup("applicationGroup", new()
    {
        ApplicationGroupName = "applicationGroup1",
        ApplicationGroupType = "RemoteApp",
        Description = "des1",
        FriendlyName = "friendly",
        HostPoolArmPath = "/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1",
        Location = "centralus",
        MigrationRequest = new AzureNative.DesktopVirtualization.Inputs.MigrationRequestPropertiesArgs
        {
            MigrationPath = "TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}",
            Operation = "Start",
        },
        ResourceGroupName = "resourceGroup1",
        Tags = 
        {
            { "tag1", "value1" },
            { "tag2", "value2" },
        },
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := desktopvirtualization.NewApplicationGroup(ctx, "applicationGroup", &desktopvirtualization.ApplicationGroupArgs{
			ApplicationGroupName: pulumi.String("applicationGroup1"),
			ApplicationGroupType: pulumi.String("RemoteApp"),
			Description:          pulumi.String("des1"),
			FriendlyName:         pulumi.String("friendly"),
			HostPoolArmPath:      pulumi.String("/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1"),
			Location:             pulumi.String("centralus"),
			MigrationRequest: &desktopvirtualization.MigrationRequestPropertiesArgs{
				MigrationPath: pulumi.String("TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}"),
				Operation:     pulumi.String("Start"),
			},
			ResourceGroupName: pulumi.String("resourceGroup1"),
			Tags: pulumi.StringMap{
				"tag1": pulumi.String("value1"),
				"tag2": pulumi.String("value2"),
			},
		})
		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.desktopvirtualization.ApplicationGroup;
import com.pulumi.azurenative.desktopvirtualization.ApplicationGroupArgs;
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 applicationGroup = new ApplicationGroup("applicationGroup", ApplicationGroupArgs.builder()        
            .applicationGroupName("applicationGroup1")
            .applicationGroupType("RemoteApp")
            .description("des1")
            .friendlyName("friendly")
            .hostPoolArmPath("/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1")
            .location("centralus")
            .migrationRequest(Map.ofEntries(
                Map.entry("migrationPath", "TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}"),
                Map.entry("operation", "Start")
            ))
            .resourceGroupName("resourceGroup1")
            .tags(Map.ofEntries(
                Map.entry("tag1", "value1"),
                Map.entry("tag2", "value2")
            ))
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

application_group = azure_native.desktopvirtualization.ApplicationGroup("applicationGroup",
    application_group_name="applicationGroup1",
    application_group_type="RemoteApp",
    description="des1",
    friendly_name="friendly",
    host_pool_arm_path="/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1",
    location="centralus",
    migration_request=azure_native.desktopvirtualization.MigrationRequestPropertiesArgs(
        migration_path="TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}",
        operation="Start",
    ),
    resource_group_name="resourceGroup1",
    tags={
        "tag1": "value1",
        "tag2": "value2",
    })
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const applicationGroup = new azure_native.desktopvirtualization.ApplicationGroup("applicationGroup", {
    applicationGroupName: "applicationGroup1",
    applicationGroupType: "RemoteApp",
    description: "des1",
    friendlyName: "friendly",
    hostPoolArmPath: "/subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1",
    location: "centralus",
    migrationRequest: {
        migrationPath: "TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}",
        operation: "Start",
    },
    resourceGroupName: "resourceGroup1",
    tags: {
        tag1: "value1",
        tag2: "value2",
    },
});
resources:
  applicationGroup:
    type: azure-native:desktopvirtualization:ApplicationGroup
    properties:
      applicationGroupName: applicationGroup1
      applicationGroupType: RemoteApp
      description: des1
      friendlyName: friendly
      hostPoolArmPath: /subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/hostPools/hostPool1
      location: centralus
      migrationRequest:
        migrationPath: TenantGroups/{defaultV1TenantGroup.Name}/Tenants/{defaultV1Tenant.Name}/HostPools/{sessionHostPool.Name}
        operation: Start
      resourceGroupName: resourceGroup1
      tags:
        tag1: value1
        tag2: value2

Create ApplicationGroup Resource

new ApplicationGroup(name: string, args: ApplicationGroupArgs, opts?: CustomResourceOptions);
@overload
def ApplicationGroup(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     application_group_name: Optional[str] = None,
                     application_group_type: Optional[Union[str, ApplicationGroupType]] = None,
                     description: Optional[str] = None,
                     friendly_name: Optional[str] = None,
                     host_pool_arm_path: Optional[str] = None,
                     identity: Optional[ResourceModelWithAllowedPropertySetIdentityArgs] = None,
                     kind: Optional[str] = None,
                     location: Optional[str] = None,
                     managed_by: Optional[str] = None,
                     migration_request: Optional[MigrationRequestPropertiesArgs] = None,
                     plan: Optional[ResourceModelWithAllowedPropertySetPlanArgs] = None,
                     resource_group_name: Optional[str] = None,
                     sku: Optional[ResourceModelWithAllowedPropertySetSkuArgs] = None,
                     tags: Optional[Mapping[str, str]] = None)
@overload
def ApplicationGroup(resource_name: str,
                     args: ApplicationGroupArgs,
                     opts: Optional[ResourceOptions] = None)
func NewApplicationGroup(ctx *Context, name string, args ApplicationGroupArgs, opts ...ResourceOption) (*ApplicationGroup, error)
public ApplicationGroup(string name, ApplicationGroupArgs args, CustomResourceOptions? opts = null)
public ApplicationGroup(String name, ApplicationGroupArgs args)
public ApplicationGroup(String name, ApplicationGroupArgs args, CustomResourceOptions options)
type: azure-native:desktopvirtualization:ApplicationGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ApplicationGroupArgs
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 ApplicationGroupArgs
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 ApplicationGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ApplicationGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ApplicationGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

ApplicationGroup 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 ApplicationGroup resource accepts the following input properties:

ApplicationGroupType string | Pulumi.AzureNative.DesktopVirtualization.ApplicationGroupType

Resource Type of ApplicationGroup.

HostPoolArmPath string

HostPool arm path of ApplicationGroup.

ResourceGroupName string

The name of the resource group. The name is case insensitive.

ApplicationGroupName string

The name of the application group

Description string

Description of ApplicationGroup.

FriendlyName string

Friendly name of ApplicationGroup.

Identity Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetIdentityArgs
Kind 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 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.

MigrationRequest Pulumi.AzureNative.DesktopVirtualization.Inputs.MigrationRequestPropertiesArgs

The registration info of HostPool.

Plan Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetPlanArgs
Sku Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetSkuArgs
Tags Dictionary<string, string>

Resource tags.

ApplicationGroupType string | ApplicationGroupType

Resource Type of ApplicationGroup.

HostPoolArmPath string

HostPool arm path of ApplicationGroup.

ResourceGroupName string

The name of the resource group. The name is case insensitive.

ApplicationGroupName string

The name of the application group

Description string

Description of ApplicationGroup.

FriendlyName string

Friendly name of ApplicationGroup.

Identity ResourceModelWithAllowedPropertySetIdentityArgs
Kind 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 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.

MigrationRequest MigrationRequestPropertiesArgs

The registration info of HostPool.

Plan ResourceModelWithAllowedPropertySetPlanArgs
Sku ResourceModelWithAllowedPropertySetSkuArgs
Tags map[string]string

Resource tags.

applicationGroupType String | ApplicationGroupType

Resource Type of ApplicationGroup.

hostPoolArmPath String

HostPool arm path of ApplicationGroup.

resourceGroupName String

The name of the resource group. The name is case insensitive.

applicationGroupName String

The name of the application group

description String

Description of ApplicationGroup.

friendlyName String

Friendly name of ApplicationGroup.

identity ResourceModelWithAllowedPropertySetIdentityArgs
kind 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 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.

migrationRequest MigrationRequestPropertiesArgs

The registration info of HostPool.

plan ResourceModelWithAllowedPropertySetPlanArgs
sku ResourceModelWithAllowedPropertySetSkuArgs
tags Map<String,String>

Resource tags.

applicationGroupType string | ApplicationGroupType

Resource Type of ApplicationGroup.

hostPoolArmPath string

HostPool arm path of ApplicationGroup.

resourceGroupName string

The name of the resource group. The name is case insensitive.

applicationGroupName string

The name of the application group

description string

Description of ApplicationGroup.

friendlyName string

Friendly name of ApplicationGroup.

identity ResourceModelWithAllowedPropertySetIdentityArgs
kind 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 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.

migrationRequest MigrationRequestPropertiesArgs

The registration info of HostPool.

plan ResourceModelWithAllowedPropertySetPlanArgs
sku ResourceModelWithAllowedPropertySetSkuArgs
tags {[key: string]: string}

Resource tags.

application_group_type str | ApplicationGroupType

Resource Type of ApplicationGroup.

host_pool_arm_path str

HostPool arm path of ApplicationGroup.

resource_group_name str

The name of the resource group. The name is case insensitive.

application_group_name str

The name of the application group

description str

Description of ApplicationGroup.

friendly_name str

Friendly name of ApplicationGroup.

identity ResourceModelWithAllowedPropertySetIdentityArgs
kind 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 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.

migration_request MigrationRequestPropertiesArgs

The registration info of HostPool.

plan ResourceModelWithAllowedPropertySetPlanArgs
sku ResourceModelWithAllowedPropertySetSkuArgs
tags Mapping[str, str]

Resource tags.

applicationGroupType String | "RemoteApp" | "Desktop"

Resource Type of ApplicationGroup.

hostPoolArmPath String

HostPool arm path of ApplicationGroup.

resourceGroupName String

The name of the resource group. The name is case insensitive.

applicationGroupName String

The name of the application group

description String

Description of ApplicationGroup.

friendlyName String

Friendly name of ApplicationGroup.

identity Property Map
kind 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 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.

migrationRequest Property Map

The registration info of HostPool.

plan Property Map
sku Property Map
tags Map<String>

Resource tags.

Outputs

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

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 ApplicationGroup. (internal use)

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

WorkspaceArmPath string

Workspace arm path of ApplicationGroup.

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 ApplicationGroup. (internal use)

Type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

WorkspaceArmPath string

Workspace arm path of ApplicationGroup.

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 ApplicationGroup. (internal use)

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

workspaceArmPath String

Workspace arm path of ApplicationGroup.

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 ApplicationGroup. (internal use)

type string

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

workspaceArmPath string

Workspace arm path of ApplicationGroup.

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 ApplicationGroup. (internal use)

type str

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

workspace_arm_path str

Workspace arm path of ApplicationGroup.

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 ApplicationGroup. (internal use)

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

workspaceArmPath String

Workspace arm path of ApplicationGroup.

Supporting Types

ApplicationGroupType

RemoteApp
RemoteApp
Desktop
Desktop
ApplicationGroupTypeRemoteApp
RemoteApp
ApplicationGroupTypeDesktop
Desktop
RemoteApp
RemoteApp
Desktop
Desktop
RemoteApp
RemoteApp
Desktop
Desktop
REMOTE_APP
RemoteApp
DESKTOP
Desktop
"RemoteApp"
RemoteApp
"Desktop"
Desktop

MigrationRequestProperties

MigrationPath string

The path to the legacy object to migrate.

Operation string | Pulumi.AzureNative.DesktopVirtualization.Operation

The type of operation for migration.

MigrationPath string

The path to the legacy object to migrate.

Operation string | Operation

The type of operation for migration.

migrationPath String

The path to the legacy object to migrate.

operation String | Operation

The type of operation for migration.

migrationPath string

The path to the legacy object to migrate.

operation string | Operation

The type of operation for migration.

migration_path str

The path to the legacy object to migrate.

operation str | Operation

The type of operation for migration.

migrationPath String

The path to the legacy object to migrate.

operation String | "Start" | "Revoke" | "Complete" | "Hide" | "Unhide"

The type of operation for migration.

MigrationRequestPropertiesResponse

MigrationPath string

The path to the legacy object to migrate.

Operation string

The type of operation for migration.

MigrationPath string

The path to the legacy object to migrate.

Operation string

The type of operation for migration.

migrationPath String

The path to the legacy object to migrate.

operation String

The type of operation for migration.

migrationPath string

The path to the legacy object to migrate.

operation string

The type of operation for migration.

migration_path str

The path to the legacy object to migrate.

operation str

The type of operation for migration.

migrationPath String

The path to the legacy object to migrate.

operation String

The type of operation for migration.

Operation

Start
Start

Start the migration.

Revoke
Revoke

Revoke the migration.

Complete
Complete

Complete the migration.

Hide
Hide

Hide the hostpool.

Unhide
Unhide

Unhide the hostpool.

OperationStart
Start

Start the migration.

OperationRevoke
Revoke

Revoke the migration.

OperationComplete
Complete

Complete the migration.

OperationHide
Hide

Hide the hostpool.

OperationUnhide
Unhide

Unhide the hostpool.

Start
Start

Start the migration.

Revoke
Revoke

Revoke the migration.

Complete
Complete

Complete the migration.

Hide
Hide

Hide the hostpool.

Unhide
Unhide

Unhide the hostpool.

Start
Start

Start the migration.

Revoke
Revoke

Revoke the migration.

Complete
Complete

Complete the migration.

Hide
Hide

Hide the hostpool.

Unhide
Unhide

Unhide the hostpool.

START
Start

Start the migration.

REVOKE
Revoke

Revoke the migration.

COMPLETE
Complete

Complete the migration.

HIDE
Hide

Hide the hostpool.

UNHIDE
Unhide

Unhide the hostpool.

"Start"
Start

Start the migration.

"Revoke"
Revoke

Revoke the migration.

"Complete"
Complete

Complete the migration.

"Hide"
Hide

Hide the hostpool.

"Unhide"
Unhide

Unhide the hostpool.

ResourceIdentityType

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

ResourceModelWithAllowedPropertySetIdentity

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

Name string

A user defined name of the 3rd Party Artifact that is being procured.

Product 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 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 string

A user defined name of the 3rd Party Artifact that is being procured.

Product 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 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 String

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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 string

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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 str

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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 String

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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

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.

ResourceModelWithAllowedPropertySetResponsePlan

Name string

A user defined name of the 3rd Party Artifact that is being procured.

Product 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 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 string

A user defined name of the 3rd Party Artifact that is being procured.

Product 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 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 String

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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 string

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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 str

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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 String

A user defined name of the 3rd Party Artifact that is being procured.

product 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 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

Name string

The name of the SKU. Ex - 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 string

The name of the SKU. Ex - 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 String

The name of the SKU. Ex - 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 string

The name of the SKU. Ex - 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 str

The name of the SKU. Ex - 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 String

The name of the SKU. Ex - 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

Name string

The name of the SKU. Ex - 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 string

The name of the SKU. Ex - 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 String

The name of the SKU. Ex - 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 string

The name of the SKU. Ex - 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 str

The name of the SKU. Ex - 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 String

The name of the SKU. Ex - 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

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

Import

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

$ pulumi import azure-native:desktopvirtualization:ApplicationGroup applicationGroup1 /subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourceGroups/resourceGroup1/providers/Microsoft.DesktopVirtualization/applicationGroups/applicationGroup1 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0