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

azure-native.desktopvirtualization.AppAttachPackage

Explore with Pulumi AI

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

    Schema for App Attach Package properties. Azure REST API version: 2023-10-04-preview.

    Other available API versions: 2023-11-01-preview, 2024-01-16-preview, 2024-03-06-preview.

    Example Usage

    AppAttachPackage_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var appAttachPackage = new AzureNative.DesktopVirtualization.AppAttachPackage("appAttachPackage", new()
        {
            AppAttachPackageName = "msixpackagefullname",
            Location = "southcentralus",
            Properties = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackagePropertiesArgs
            {
                FailHealthCheckOnStagingFailure = AzureNative.DesktopVirtualization.FailHealthCheckOnStagingFailure.NeedsAssistance,
                HostPoolReferences = new() { },
                Image = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackageInfoPropertiesArgs
                {
                    CertificateExpiry = "2023-01-02T17:18:19.1234567Z",
                    CertificateName = "certName",
                    DisplayName = "displayname",
                    ImagePath = "imagepath",
                    IsActive = false,
                    IsRegularRegistration = false,
                    LastUpdated = "2008-09-22T14:01:54.9571247Z",
                    PackageAlias = "msixpackagealias",
                    PackageApplications = new[]
                    {
                        new AzureNative.DesktopVirtualization.Inputs.MsixPackageApplicationsArgs
                        {
                            AppId = "AppId",
                            AppUserModelID = "AppUserModelId",
                            Description = "PackageApplicationDescription",
                            FriendlyName = "FriendlyName",
                            IconImageName = "Iconimagename",
                            RawIcon = "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                            RawPng = "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                        },
                    },
                    PackageDependencies = new[]
                    {
                        new AzureNative.DesktopVirtualization.Inputs.MsixPackageDependenciesArgs
                        {
                            DependencyName = "MsixPackage_Dependency_Name",
                            MinVersion = "packageDep_version",
                            Publisher = "MsixPackage_Dependency_Publisher",
                        },
                    },
                    PackageFamilyName = "MsixPackage_FamilyName",
                    PackageFullName = "MsixPackage_FullName",
                    PackageName = "MsixPackageName",
                    PackageRelativePath = "packagerelativepath",
                    Version = "packageversion",
                },
                KeyVaultURL = "",
            },
            ResourceGroupName = "resourceGroup1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/desktopvirtualization/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := desktopvirtualization.NewAppAttachPackage(ctx, "appAttachPackage", &desktopvirtualization.AppAttachPackageArgs{
    			AppAttachPackageName: pulumi.String("msixpackagefullname"),
    			Location:             pulumi.String("southcentralus"),
    			Properties: &desktopvirtualization.AppAttachPackagePropertiesArgs{
    				FailHealthCheckOnStagingFailure: pulumi.String(desktopvirtualization.FailHealthCheckOnStagingFailureNeedsAssistance),
    				HostPoolReferences:              pulumi.StringArray{},
    				Image: &desktopvirtualization.AppAttachPackageInfoPropertiesArgs{
    					CertificateExpiry:     pulumi.String("2023-01-02T17:18:19.1234567Z"),
    					CertificateName:       pulumi.String("certName"),
    					DisplayName:           pulumi.String("displayname"),
    					ImagePath:             pulumi.String("imagepath"),
    					IsActive:              pulumi.Bool(false),
    					IsRegularRegistration: pulumi.Bool(false),
    					LastUpdated:           pulumi.String("2008-09-22T14:01:54.9571247Z"),
    					PackageAlias:          pulumi.String("msixpackagealias"),
    					PackageApplications: desktopvirtualization.MsixPackageApplicationsArray{
    						&desktopvirtualization.MsixPackageApplicationsArgs{
    							AppId:          pulumi.String("AppId"),
    							AppUserModelID: pulumi.String("AppUserModelId"),
    							Description:    pulumi.String("PackageApplicationDescription"),
    							FriendlyName:   pulumi.String("FriendlyName"),
    							IconImageName:  pulumi.String("Iconimagename"),
    							RawIcon:        pulumi.String("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
    							RawPng:         pulumi.String("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
    						},
    					},
    					PackageDependencies: desktopvirtualization.MsixPackageDependenciesArray{
    						&desktopvirtualization.MsixPackageDependenciesArgs{
    							DependencyName: pulumi.String("MsixPackage_Dependency_Name"),
    							MinVersion:     pulumi.String("packageDep_version"),
    							Publisher:      pulumi.String("MsixPackage_Dependency_Publisher"),
    						},
    					},
    					PackageFamilyName:   pulumi.String("MsixPackage_FamilyName"),
    					PackageFullName:     pulumi.String("MsixPackage_FullName"),
    					PackageName:         pulumi.String("MsixPackageName"),
    					PackageRelativePath: pulumi.String("packagerelativepath"),
    					Version:             pulumi.String("packageversion"),
    				},
    				KeyVaultURL: pulumi.String(""),
    			},
    			ResourceGroupName: pulumi.String("resourceGroup1"),
    		})
    		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.AppAttachPackage;
    import com.pulumi.azurenative.desktopvirtualization.AppAttachPackageArgs;
    import com.pulumi.azurenative.desktopvirtualization.inputs.AppAttachPackagePropertiesArgs;
    import com.pulumi.azurenative.desktopvirtualization.inputs.AppAttachPackageInfoPropertiesArgs;
    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 appAttachPackage = new AppAttachPackage("appAttachPackage", AppAttachPackageArgs.builder()        
                .appAttachPackageName("msixpackagefullname")
                .location("southcentralus")
                .properties(AppAttachPackagePropertiesArgs.builder()
                    .failHealthCheckOnStagingFailure("NeedsAssistance")
                    .hostPoolReferences()
                    .image(AppAttachPackageInfoPropertiesArgs.builder()
                        .certificateExpiry("2023-01-02T17:18:19.1234567Z")
                        .certificateName("certName")
                        .displayName("displayname")
                        .imagePath("imagepath")
                        .isActive(false)
                        .isRegularRegistration(false)
                        .lastUpdated("2008-09-22T14:01:54.9571247Z")
                        .packageAlias("msixpackagealias")
                        .packageApplications(MsixPackageApplicationsArgs.builder()
                            .appId("AppId")
                            .appUserModelID("AppUserModelId")
                            .description("PackageApplicationDescription")
                            .friendlyName("FriendlyName")
                            .iconImageName("Iconimagename")
                            .rawIcon("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
                            .rawPng("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
                            .build())
                        .packageDependencies(MsixPackageDependenciesArgs.builder()
                            .dependencyName("MsixPackage_Dependency_Name")
                            .minVersion("packageDep_version")
                            .publisher("MsixPackage_Dependency_Publisher")
                            .build())
                        .packageFamilyName("MsixPackage_FamilyName")
                        .packageFullName("MsixPackage_FullName")
                        .packageName("MsixPackageName")
                        .packageRelativePath("packagerelativepath")
                        .version("packageversion")
                        .build())
                    .keyVaultURL("")
                    .build())
                .resourceGroupName("resourceGroup1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    app_attach_package = azure_native.desktopvirtualization.AppAttachPackage("appAttachPackage",
        app_attach_package_name="msixpackagefullname",
        location="southcentralus",
        properties=azure_native.desktopvirtualization.AppAttachPackagePropertiesArgs(
            fail_health_check_on_staging_failure=azure_native.desktopvirtualization.FailHealthCheckOnStagingFailure.NEEDS_ASSISTANCE,
            host_pool_references=[],
            image=azure_native.desktopvirtualization.AppAttachPackageInfoPropertiesArgs(
                certificate_expiry="2023-01-02T17:18:19.1234567Z",
                certificate_name="certName",
                display_name="displayname",
                image_path="imagepath",
                is_active=False,
                is_regular_registration=False,
                last_updated="2008-09-22T14:01:54.9571247Z",
                package_alias="msixpackagealias",
                package_applications=[azure_native.desktopvirtualization.MsixPackageApplicationsArgs(
                    app_id="AppId",
                    app_user_model_id="AppUserModelId",
                    description="PackageApplicationDescription",
                    friendly_name="FriendlyName",
                    icon_image_name="Iconimagename",
                    raw_icon="VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                    raw_png="VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                )],
                package_dependencies=[azure_native.desktopvirtualization.MsixPackageDependenciesArgs(
                    dependency_name="MsixPackage_Dependency_Name",
                    min_version="packageDep_version",
                    publisher="MsixPackage_Dependency_Publisher",
                )],
                package_family_name="MsixPackage_FamilyName",
                package_full_name="MsixPackage_FullName",
                package_name="MsixPackageName",
                package_relative_path="packagerelativepath",
                version="packageversion",
            ),
            key_vault_url="",
        ),
        resource_group_name="resourceGroup1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const appAttachPackage = new azure_native.desktopvirtualization.AppAttachPackage("appAttachPackage", {
        appAttachPackageName: "msixpackagefullname",
        location: "southcentralus",
        properties: {
            failHealthCheckOnStagingFailure: azure_native.desktopvirtualization.FailHealthCheckOnStagingFailure.NeedsAssistance,
            hostPoolReferences: [],
            image: {
                certificateExpiry: "2023-01-02T17:18:19.1234567Z",
                certificateName: "certName",
                displayName: "displayname",
                imagePath: "imagepath",
                isActive: false,
                isRegularRegistration: false,
                lastUpdated: "2008-09-22T14:01:54.9571247Z",
                packageAlias: "msixpackagealias",
                packageApplications: [{
                    appId: "AppId",
                    appUserModelID: "AppUserModelId",
                    description: "PackageApplicationDescription",
                    friendlyName: "FriendlyName",
                    iconImageName: "Iconimagename",
                    rawIcon: "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                    rawPng: "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                }],
                packageDependencies: [{
                    dependencyName: "MsixPackage_Dependency_Name",
                    minVersion: "packageDep_version",
                    publisher: "MsixPackage_Dependency_Publisher",
                }],
                packageFamilyName: "MsixPackage_FamilyName",
                packageFullName: "MsixPackage_FullName",
                packageName: "MsixPackageName",
                packageRelativePath: "packagerelativepath",
                version: "packageversion",
            },
            keyVaultURL: "",
        },
        resourceGroupName: "resourceGroup1",
    });
    
    resources:
      appAttachPackage:
        type: azure-native:desktopvirtualization:AppAttachPackage
        properties:
          appAttachPackageName: msixpackagefullname
          location: southcentralus
          properties:
            failHealthCheckOnStagingFailure: NeedsAssistance
            hostPoolReferences: []
            image:
              certificateExpiry: 2023-01-02T17:18:19.1234567Z
              certificateName: certName
              displayName: displayname
              imagePath: imagepath
              isActive: false
              isRegularRegistration: false
              lastUpdated: 2008-09-22T14:01:54.9571247Z
              packageAlias: msixpackagealias
              packageApplications:
                - appId: AppId
                  appUserModelID: AppUserModelId
                  description: PackageApplicationDescription
                  friendlyName: FriendlyName
                  iconImageName: Iconimagename
                  rawIcon: VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo
                  rawPng: VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo
              packageDependencies:
                - dependencyName: MsixPackage_Dependency_Name
                  minVersion: packageDep_version
                  publisher: MsixPackage_Dependency_Publisher
              packageFamilyName: MsixPackage_FamilyName
              packageFullName: MsixPackage_FullName
              packageName: MsixPackageName
              packageRelativePath: packagerelativepath
              version: packageversion
            keyVaultURL:
          resourceGroupName: resourceGroup1
    

    Create AppAttachPackage Resource

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

    Constructor syntax

    new AppAttachPackage(name: string, args: AppAttachPackageArgs, opts?: CustomResourceOptions);
    @overload
    def AppAttachPackage(resource_name: str,
                         args: AppAttachPackageArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppAttachPackage(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         properties: Optional[AppAttachPackagePropertiesArgs] = None,
                         resource_group_name: Optional[str] = None,
                         app_attach_package_name: Optional[str] = None,
                         identity: Optional[ResourceModelWithAllowedPropertySetIdentityArgs] = None,
                         kind: Optional[str] = None,
                         location: Optional[str] = None,
                         managed_by: Optional[str] = None,
                         plan: Optional[ResourceModelWithAllowedPropertySetPlanArgs] = None,
                         sku: Optional[ResourceModelWithAllowedPropertySetSkuArgs] = None,
                         tags: Optional[Mapping[str, str]] = None)
    func NewAppAttachPackage(ctx *Context, name string, args AppAttachPackageArgs, opts ...ResourceOption) (*AppAttachPackage, error)
    public AppAttachPackage(string name, AppAttachPackageArgs args, CustomResourceOptions? opts = null)
    public AppAttachPackage(String name, AppAttachPackageArgs args)
    public AppAttachPackage(String name, AppAttachPackageArgs args, CustomResourceOptions options)
    
    type: azure-native:desktopvirtualization:AppAttachPackage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Example

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

    var appAttachPackageResource = new AzureNative.DesktopVirtualization.AppAttachPackage("appAttachPackageResource", new()
    {
        Properties = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackagePropertiesArgs
        {
            FailHealthCheckOnStagingFailure = "string",
            HostPoolReferences = new[]
            {
                "string",
            },
            Image = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackageInfoPropertiesArgs
            {
                CertificateExpiry = "string",
                CertificateName = "string",
                DisplayName = "string",
                ImagePath = "string",
                IsActive = false,
                IsPackageTimestamped = "string",
                IsRegularRegistration = false,
                LastUpdated = "string",
                PackageAlias = "string",
                PackageApplications = new[]
                {
                    new AzureNative.DesktopVirtualization.Inputs.MsixPackageApplicationsArgs
                    {
                        AppId = "string",
                        AppUserModelID = "string",
                        Description = "string",
                        FriendlyName = "string",
                        IconImageName = "string",
                        RawIcon = "string",
                        RawPng = "string",
                    },
                },
                PackageDependencies = new[]
                {
                    new AzureNative.DesktopVirtualization.Inputs.MsixPackageDependenciesArgs
                    {
                        DependencyName = "string",
                        MinVersion = "string",
                        Publisher = "string",
                    },
                },
                PackageFamilyName = "string",
                PackageFullName = "string",
                PackageName = "string",
                PackageRelativePath = "string",
                Version = "string",
            },
            KeyVaultURL = "string",
        },
        ResourceGroupName = "string",
        AppAttachPackageName = "string",
        Identity = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetIdentityArgs
        {
            Type = AzureNative.DesktopVirtualization.ResourceIdentityType.SystemAssigned,
        },
        Kind = "string",
        Location = "string",
        ManagedBy = "string",
        Plan = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetPlanArgs
        {
            Name = "string",
            Product = "string",
            Publisher = "string",
            PromotionCode = "string",
            Version = "string",
        },
        Sku = new AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetSkuArgs
        {
            Name = "string",
            Capacity = 0,
            Family = "string",
            Size = "string",
            Tier = AzureNative.DesktopVirtualization.SkuTier.Free,
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := desktopvirtualization.NewAppAttachPackage(ctx, "appAttachPackageResource", &desktopvirtualization.AppAttachPackageArgs{
    Properties: &desktopvirtualization.AppAttachPackagePropertiesArgs{
    FailHealthCheckOnStagingFailure: pulumi.String("string"),
    HostPoolReferences: pulumi.StringArray{
    pulumi.String("string"),
    },
    Image: &desktopvirtualization.AppAttachPackageInfoPropertiesArgs{
    CertificateExpiry: pulumi.String("string"),
    CertificateName: pulumi.String("string"),
    DisplayName: pulumi.String("string"),
    ImagePath: pulumi.String("string"),
    IsActive: pulumi.Bool(false),
    IsPackageTimestamped: pulumi.String("string"),
    IsRegularRegistration: pulumi.Bool(false),
    LastUpdated: pulumi.String("string"),
    PackageAlias: pulumi.String("string"),
    PackageApplications: desktopvirtualization.MsixPackageApplicationsArray{
    &desktopvirtualization.MsixPackageApplicationsArgs{
    AppId: pulumi.String("string"),
    AppUserModelID: pulumi.String("string"),
    Description: pulumi.String("string"),
    FriendlyName: pulumi.String("string"),
    IconImageName: pulumi.String("string"),
    RawIcon: pulumi.String("string"),
    RawPng: pulumi.String("string"),
    },
    },
    PackageDependencies: desktopvirtualization.MsixPackageDependenciesArray{
    &desktopvirtualization.MsixPackageDependenciesArgs{
    DependencyName: pulumi.String("string"),
    MinVersion: pulumi.String("string"),
    Publisher: pulumi.String("string"),
    },
    },
    PackageFamilyName: pulumi.String("string"),
    PackageFullName: pulumi.String("string"),
    PackageName: pulumi.String("string"),
    PackageRelativePath: pulumi.String("string"),
    Version: pulumi.String("string"),
    },
    KeyVaultURL: pulumi.String("string"),
    },
    ResourceGroupName: pulumi.String("string"),
    AppAttachPackageName: pulumi.String("string"),
    Identity: &desktopvirtualization.ResourceModelWithAllowedPropertySetIdentityArgs{
    Type: desktopvirtualization.ResourceIdentityTypeSystemAssigned,
    },
    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"),
    },
    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"),
    },
    })
    
    var appAttachPackageResource = new AppAttachPackage("appAttachPackageResource", AppAttachPackageArgs.builder()        
        .properties(AppAttachPackagePropertiesArgs.builder()
            .failHealthCheckOnStagingFailure("string")
            .hostPoolReferences("string")
            .image(AppAttachPackageInfoPropertiesArgs.builder()
                .certificateExpiry("string")
                .certificateName("string")
                .displayName("string")
                .imagePath("string")
                .isActive(false)
                .isPackageTimestamped("string")
                .isRegularRegistration(false)
                .lastUpdated("string")
                .packageAlias("string")
                .packageApplications(MsixPackageApplicationsArgs.builder()
                    .appId("string")
                    .appUserModelID("string")
                    .description("string")
                    .friendlyName("string")
                    .iconImageName("string")
                    .rawIcon("string")
                    .rawPng("string")
                    .build())
                .packageDependencies(MsixPackageDependenciesArgs.builder()
                    .dependencyName("string")
                    .minVersion("string")
                    .publisher("string")
                    .build())
                .packageFamilyName("string")
                .packageFullName("string")
                .packageName("string")
                .packageRelativePath("string")
                .version("string")
                .build())
            .keyVaultURL("string")
            .build())
        .resourceGroupName("string")
        .appAttachPackageName("string")
        .identity(ResourceModelWithAllowedPropertySetIdentityArgs.builder()
            .type("SystemAssigned")
            .build())
        .kind("string")
        .location("string")
        .managedBy("string")
        .plan(ResourceModelWithAllowedPropertySetPlanArgs.builder()
            .name("string")
            .product("string")
            .publisher("string")
            .promotionCode("string")
            .version("string")
            .build())
        .sku(ResourceModelWithAllowedPropertySetSkuArgs.builder()
            .name("string")
            .capacity(0)
            .family("string")
            .size("string")
            .tier("Free")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    app_attach_package_resource = azure_native.desktopvirtualization.AppAttachPackage("appAttachPackageResource",
        properties=azure_native.desktopvirtualization.AppAttachPackagePropertiesArgs(
            fail_health_check_on_staging_failure="string",
            host_pool_references=["string"],
            image=azure_native.desktopvirtualization.AppAttachPackageInfoPropertiesArgs(
                certificate_expiry="string",
                certificate_name="string",
                display_name="string",
                image_path="string",
                is_active=False,
                is_package_timestamped="string",
                is_regular_registration=False,
                last_updated="string",
                package_alias="string",
                package_applications=[azure_native.desktopvirtualization.MsixPackageApplicationsArgs(
                    app_id="string",
                    app_user_model_id="string",
                    description="string",
                    friendly_name="string",
                    icon_image_name="string",
                    raw_icon="string",
                    raw_png="string",
                )],
                package_dependencies=[azure_native.desktopvirtualization.MsixPackageDependenciesArgs(
                    dependency_name="string",
                    min_version="string",
                    publisher="string",
                )],
                package_family_name="string",
                package_full_name="string",
                package_name="string",
                package_relative_path="string",
                version="string",
            ),
            key_vault_url="string",
        ),
        resource_group_name="string",
        app_attach_package_name="string",
        identity=azure_native.desktopvirtualization.ResourceModelWithAllowedPropertySetIdentityArgs(
            type=azure_native.desktopvirtualization.ResourceIdentityType.SYSTEM_ASSIGNED,
        ),
        kind="string",
        location="string",
        managed_by="string",
        plan=azure_native.desktopvirtualization.ResourceModelWithAllowedPropertySetPlanArgs(
            name="string",
            product="string",
            publisher="string",
            promotion_code="string",
            version="string",
        ),
        sku=azure_native.desktopvirtualization.ResourceModelWithAllowedPropertySetSkuArgs(
            name="string",
            capacity=0,
            family="string",
            size="string",
            tier=azure_native.desktopvirtualization.SkuTier.FREE,
        ),
        tags={
            "string": "string",
        })
    
    const appAttachPackageResource = new azure_native.desktopvirtualization.AppAttachPackage("appAttachPackageResource", {
        properties: {
            failHealthCheckOnStagingFailure: "string",
            hostPoolReferences: ["string"],
            image: {
                certificateExpiry: "string",
                certificateName: "string",
                displayName: "string",
                imagePath: "string",
                isActive: false,
                isPackageTimestamped: "string",
                isRegularRegistration: false,
                lastUpdated: "string",
                packageAlias: "string",
                packageApplications: [{
                    appId: "string",
                    appUserModelID: "string",
                    description: "string",
                    friendlyName: "string",
                    iconImageName: "string",
                    rawIcon: "string",
                    rawPng: "string",
                }],
                packageDependencies: [{
                    dependencyName: "string",
                    minVersion: "string",
                    publisher: "string",
                }],
                packageFamilyName: "string",
                packageFullName: "string",
                packageName: "string",
                packageRelativePath: "string",
                version: "string",
            },
            keyVaultURL: "string",
        },
        resourceGroupName: "string",
        appAttachPackageName: "string",
        identity: {
            type: azure_native.desktopvirtualization.ResourceIdentityType.SystemAssigned,
        },
        kind: "string",
        location: "string",
        managedBy: "string",
        plan: {
            name: "string",
            product: "string",
            publisher: "string",
            promotionCode: "string",
            version: "string",
        },
        sku: {
            name: "string",
            capacity: 0,
            family: "string",
            size: "string",
            tier: azure_native.desktopvirtualization.SkuTier.Free,
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:desktopvirtualization:AppAttachPackage
    properties:
        appAttachPackageName: string
        identity:
            type: SystemAssigned
        kind: string
        location: string
        managedBy: string
        plan:
            name: string
            product: string
            promotionCode: string
            publisher: string
            version: string
        properties:
            failHealthCheckOnStagingFailure: string
            hostPoolReferences:
                - string
            image:
                certificateExpiry: string
                certificateName: string
                displayName: string
                imagePath: string
                isActive: false
                isPackageTimestamped: string
                isRegularRegistration: false
                lastUpdated: string
                packageAlias: string
                packageApplications:
                    - appId: string
                      appUserModelID: string
                      description: string
                      friendlyName: string
                      iconImageName: string
                      rawIcon: string
                      rawPng: string
                packageDependencies:
                    - dependencyName: string
                      minVersion: string
                      publisher: string
                packageFamilyName: string
                packageFullName: string
                packageName: string
                packageRelativePath: string
                version: string
            keyVaultURL: string
        resourceGroupName: string
        sku:
            capacity: 0
            family: string
            name: string
            size: string
            tier: Free
        tags:
            string: string
    

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

    Properties Pulumi.AzureNative.DesktopVirtualization.Inputs.AppAttachPackageProperties
    Detailed properties for App Attach Package
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AppAttachPackageName string
    The name of the App Attach package arm object
    Identity Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetIdentity
    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.
    Plan Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetPlan
    Sku Pulumi.AzureNative.DesktopVirtualization.Inputs.ResourceModelWithAllowedPropertySetSku
    Tags Dictionary<string, string>
    Resource tags.
    Properties AppAttachPackagePropertiesArgs
    Detailed properties for App Attach Package
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AppAttachPackageName string
    The name of the App Attach package arm object
    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.
    Plan ResourceModelWithAllowedPropertySetPlanArgs
    Sku ResourceModelWithAllowedPropertySetSkuArgs
    Tags map[string]string
    Resource tags.
    properties AppAttachPackageProperties
    Detailed properties for App Attach Package
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    appAttachPackageName String
    The name of the App Attach package arm object
    identity ResourceModelWithAllowedPropertySetIdentity
    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.
    plan ResourceModelWithAllowedPropertySetPlan
    sku ResourceModelWithAllowedPropertySetSku
    tags Map<String,String>
    Resource tags.
    properties AppAttachPackageProperties
    Detailed properties for App Attach Package
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    appAttachPackageName string
    The name of the App Attach package arm object
    identity ResourceModelWithAllowedPropertySetIdentity
    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.
    plan ResourceModelWithAllowedPropertySetPlan
    sku ResourceModelWithAllowedPropertySetSku
    tags {[key: string]: string}
    Resource tags.
    properties AppAttachPackagePropertiesArgs
    Detailed properties for App Attach Package
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    app_attach_package_name str
    The name of the App Attach package arm object
    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.
    plan ResourceModelWithAllowedPropertySetPlanArgs
    sku ResourceModelWithAllowedPropertySetSkuArgs
    tags Mapping[str, str]
    Resource tags.
    properties Property Map
    Detailed properties for App Attach Package
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    appAttachPackageName String
    The name of the App Attach package arm object
    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.
    plan Property Map
    sku Property Map
    tags Map<String>
    Resource tags.

    Outputs

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

    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
    SystemData Pulumi.AzureNative.DesktopVirtualization.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    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
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    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
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    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
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    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
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    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
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AppAttachPackageInfoProperties, AppAttachPackageInfoPropertiesArgs

    CertificateExpiry string
    Date certificate expires, found in the appxmanifest.xml.
    CertificateName string
    Certificate name found in the appxmanifest.xml.
    DisplayName string
    User friendly Name to be displayed in the portal.
    ImagePath string
    VHD/CIM image path on Network Share.
    IsActive bool
    Make this version of the package the active one across the hostpool.
    IsPackageTimestamped string | Pulumi.AzureNative.DesktopVirtualization.PackageTimestamped
    Is package timestamped so it can ignore the certificate expiry date
    IsRegularRegistration bool
    Specifies how to register Package in feed.
    LastUpdated string
    Date Package was last updated, found in the appxmanifest.xml.
    PackageAlias string
    Alias of App Attach Package. Assigned at import time
    PackageApplications List<Pulumi.AzureNative.DesktopVirtualization.Inputs.MsixPackageApplications>
    List of package applications.
    PackageDependencies List<Pulumi.AzureNative.DesktopVirtualization.Inputs.MsixPackageDependencies>
    List of package dependencies.
    PackageFamilyName string
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    PackageFullName string
    Package Full Name from appxmanifest.xml.
    PackageName string
    Package Name from appxmanifest.xml.
    PackageRelativePath string
    Relative Path to the package inside the image.
    Version string
    Package Version found in the appxmanifest.xml.
    CertificateExpiry string
    Date certificate expires, found in the appxmanifest.xml.
    CertificateName string
    Certificate name found in the appxmanifest.xml.
    DisplayName string
    User friendly Name to be displayed in the portal.
    ImagePath string
    VHD/CIM image path on Network Share.
    IsActive bool
    Make this version of the package the active one across the hostpool.
    IsPackageTimestamped string | PackageTimestamped
    Is package timestamped so it can ignore the certificate expiry date
    IsRegularRegistration bool
    Specifies how to register Package in feed.
    LastUpdated string
    Date Package was last updated, found in the appxmanifest.xml.
    PackageAlias string
    Alias of App Attach Package. Assigned at import time
    PackageApplications []MsixPackageApplications
    List of package applications.
    PackageDependencies []MsixPackageDependencies
    List of package dependencies.
    PackageFamilyName string
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    PackageFullName string
    Package Full Name from appxmanifest.xml.
    PackageName string
    Package Name from appxmanifest.xml.
    PackageRelativePath string
    Relative Path to the package inside the image.
    Version string
    Package Version found in the appxmanifest.xml.
    certificateExpiry String
    Date certificate expires, found in the appxmanifest.xml.
    certificateName String
    Certificate name found in the appxmanifest.xml.
    displayName String
    User friendly Name to be displayed in the portal.
    imagePath String
    VHD/CIM image path on Network Share.
    isActive Boolean
    Make this version of the package the active one across the hostpool.
    isPackageTimestamped String | PackageTimestamped
    Is package timestamped so it can ignore the certificate expiry date
    isRegularRegistration Boolean
    Specifies how to register Package in feed.
    lastUpdated String
    Date Package was last updated, found in the appxmanifest.xml.
    packageAlias String
    Alias of App Attach Package. Assigned at import time
    packageApplications List<MsixPackageApplications>
    List of package applications.
    packageDependencies List<MsixPackageDependencies>
    List of package dependencies.
    packageFamilyName String
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    packageFullName String
    Package Full Name from appxmanifest.xml.
    packageName String
    Package Name from appxmanifest.xml.
    packageRelativePath String
    Relative Path to the package inside the image.
    version String
    Package Version found in the appxmanifest.xml.
    certificateExpiry string
    Date certificate expires, found in the appxmanifest.xml.
    certificateName string
    Certificate name found in the appxmanifest.xml.
    displayName string
    User friendly Name to be displayed in the portal.
    imagePath string
    VHD/CIM image path on Network Share.
    isActive boolean
    Make this version of the package the active one across the hostpool.
    isPackageTimestamped string | PackageTimestamped
    Is package timestamped so it can ignore the certificate expiry date
    isRegularRegistration boolean
    Specifies how to register Package in feed.
    lastUpdated string
    Date Package was last updated, found in the appxmanifest.xml.
    packageAlias string
    Alias of App Attach Package. Assigned at import time
    packageApplications MsixPackageApplications[]
    List of package applications.
    packageDependencies MsixPackageDependencies[]
    List of package dependencies.
    packageFamilyName string
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    packageFullName string
    Package Full Name from appxmanifest.xml.
    packageName string
    Package Name from appxmanifest.xml.
    packageRelativePath string
    Relative Path to the package inside the image.
    version string
    Package Version found in the appxmanifest.xml.
    certificate_expiry str
    Date certificate expires, found in the appxmanifest.xml.
    certificate_name str
    Certificate name found in the appxmanifest.xml.
    display_name str
    User friendly Name to be displayed in the portal.
    image_path str
    VHD/CIM image path on Network Share.
    is_active bool
    Make this version of the package the active one across the hostpool.
    is_package_timestamped str | PackageTimestamped
    Is package timestamped so it can ignore the certificate expiry date
    is_regular_registration bool
    Specifies how to register Package in feed.
    last_updated str
    Date Package was last updated, found in the appxmanifest.xml.
    package_alias str
    Alias of App Attach Package. Assigned at import time
    package_applications Sequence[MsixPackageApplications]
    List of package applications.
    package_dependencies Sequence[MsixPackageDependencies]
    List of package dependencies.
    package_family_name str
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    package_full_name str
    Package Full Name from appxmanifest.xml.
    package_name str
    Package Name from appxmanifest.xml.
    package_relative_path str
    Relative Path to the package inside the image.
    version str
    Package Version found in the appxmanifest.xml.
    certificateExpiry String
    Date certificate expires, found in the appxmanifest.xml.
    certificateName String
    Certificate name found in the appxmanifest.xml.
    displayName String
    User friendly Name to be displayed in the portal.
    imagePath String
    VHD/CIM image path on Network Share.
    isActive Boolean
    Make this version of the package the active one across the hostpool.
    isPackageTimestamped String | "Timestamped" | "NotTimestamped"
    Is package timestamped so it can ignore the certificate expiry date
    isRegularRegistration Boolean
    Specifies how to register Package in feed.
    lastUpdated String
    Date Package was last updated, found in the appxmanifest.xml.
    packageAlias String
    Alias of App Attach Package. Assigned at import time
    packageApplications List<Property Map>
    List of package applications.
    packageDependencies List<Property Map>
    List of package dependencies.
    packageFamilyName String
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    packageFullName String
    Package Full Name from appxmanifest.xml.
    packageName String
    Package Name from appxmanifest.xml.
    packageRelativePath String
    Relative Path to the package inside the image.
    version String
    Package Version found in the appxmanifest.xml.

    AppAttachPackageInfoPropertiesResponse, AppAttachPackageInfoPropertiesResponseArgs

    CertificateExpiry string
    Date certificate expires, found in the appxmanifest.xml.
    CertificateName string
    Certificate name found in the appxmanifest.xml.
    DisplayName string
    User friendly Name to be displayed in the portal.
    ImagePath string
    VHD/CIM image path on Network Share.
    IsActive bool
    Make this version of the package the active one across the hostpool.
    IsPackageTimestamped string
    Is package timestamped so it can ignore the certificate expiry date
    IsRegularRegistration bool
    Specifies how to register Package in feed.
    LastUpdated string
    Date Package was last updated, found in the appxmanifest.xml.
    PackageAlias string
    Alias of App Attach Package. Assigned at import time
    PackageApplications List<Pulumi.AzureNative.DesktopVirtualization.Inputs.MsixPackageApplicationsResponse>
    List of package applications.
    PackageDependencies List<Pulumi.AzureNative.DesktopVirtualization.Inputs.MsixPackageDependenciesResponse>
    List of package dependencies.
    PackageFamilyName string
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    PackageFullName string
    Package Full Name from appxmanifest.xml.
    PackageName string
    Package Name from appxmanifest.xml.
    PackageRelativePath string
    Relative Path to the package inside the image.
    Version string
    Package Version found in the appxmanifest.xml.
    CertificateExpiry string
    Date certificate expires, found in the appxmanifest.xml.
    CertificateName string
    Certificate name found in the appxmanifest.xml.
    DisplayName string
    User friendly Name to be displayed in the portal.
    ImagePath string
    VHD/CIM image path on Network Share.
    IsActive bool
    Make this version of the package the active one across the hostpool.
    IsPackageTimestamped string
    Is package timestamped so it can ignore the certificate expiry date
    IsRegularRegistration bool
    Specifies how to register Package in feed.
    LastUpdated string
    Date Package was last updated, found in the appxmanifest.xml.
    PackageAlias string
    Alias of App Attach Package. Assigned at import time
    PackageApplications []MsixPackageApplicationsResponse
    List of package applications.
    PackageDependencies []MsixPackageDependenciesResponse
    List of package dependencies.
    PackageFamilyName string
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    PackageFullName string
    Package Full Name from appxmanifest.xml.
    PackageName string
    Package Name from appxmanifest.xml.
    PackageRelativePath string
    Relative Path to the package inside the image.
    Version string
    Package Version found in the appxmanifest.xml.
    certificateExpiry String
    Date certificate expires, found in the appxmanifest.xml.
    certificateName String
    Certificate name found in the appxmanifest.xml.
    displayName String
    User friendly Name to be displayed in the portal.
    imagePath String
    VHD/CIM image path on Network Share.
    isActive Boolean
    Make this version of the package the active one across the hostpool.
    isPackageTimestamped String
    Is package timestamped so it can ignore the certificate expiry date
    isRegularRegistration Boolean
    Specifies how to register Package in feed.
    lastUpdated String
    Date Package was last updated, found in the appxmanifest.xml.
    packageAlias String
    Alias of App Attach Package. Assigned at import time
    packageApplications List<MsixPackageApplicationsResponse>
    List of package applications.
    packageDependencies List<MsixPackageDependenciesResponse>
    List of package dependencies.
    packageFamilyName String
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    packageFullName String
    Package Full Name from appxmanifest.xml.
    packageName String
    Package Name from appxmanifest.xml.
    packageRelativePath String
    Relative Path to the package inside the image.
    version String
    Package Version found in the appxmanifest.xml.
    certificateExpiry string
    Date certificate expires, found in the appxmanifest.xml.
    certificateName string
    Certificate name found in the appxmanifest.xml.
    displayName string
    User friendly Name to be displayed in the portal.
    imagePath string
    VHD/CIM image path on Network Share.
    isActive boolean
    Make this version of the package the active one across the hostpool.
    isPackageTimestamped string
    Is package timestamped so it can ignore the certificate expiry date
    isRegularRegistration boolean
    Specifies how to register Package in feed.
    lastUpdated string
    Date Package was last updated, found in the appxmanifest.xml.
    packageAlias string
    Alias of App Attach Package. Assigned at import time
    packageApplications MsixPackageApplicationsResponse[]
    List of package applications.
    packageDependencies MsixPackageDependenciesResponse[]
    List of package dependencies.
    packageFamilyName string
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    packageFullName string
    Package Full Name from appxmanifest.xml.
    packageName string
    Package Name from appxmanifest.xml.
    packageRelativePath string
    Relative Path to the package inside the image.
    version string
    Package Version found in the appxmanifest.xml.
    certificate_expiry str
    Date certificate expires, found in the appxmanifest.xml.
    certificate_name str
    Certificate name found in the appxmanifest.xml.
    display_name str
    User friendly Name to be displayed in the portal.
    image_path str
    VHD/CIM image path on Network Share.
    is_active bool
    Make this version of the package the active one across the hostpool.
    is_package_timestamped str
    Is package timestamped so it can ignore the certificate expiry date
    is_regular_registration bool
    Specifies how to register Package in feed.
    last_updated str
    Date Package was last updated, found in the appxmanifest.xml.
    package_alias str
    Alias of App Attach Package. Assigned at import time
    package_applications Sequence[MsixPackageApplicationsResponse]
    List of package applications.
    package_dependencies Sequence[MsixPackageDependenciesResponse]
    List of package dependencies.
    package_family_name str
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    package_full_name str
    Package Full Name from appxmanifest.xml.
    package_name str
    Package Name from appxmanifest.xml.
    package_relative_path str
    Relative Path to the package inside the image.
    version str
    Package Version found in the appxmanifest.xml.
    certificateExpiry String
    Date certificate expires, found in the appxmanifest.xml.
    certificateName String
    Certificate name found in the appxmanifest.xml.
    displayName String
    User friendly Name to be displayed in the portal.
    imagePath String
    VHD/CIM image path on Network Share.
    isActive Boolean
    Make this version of the package the active one across the hostpool.
    isPackageTimestamped String
    Is package timestamped so it can ignore the certificate expiry date
    isRegularRegistration Boolean
    Specifies how to register Package in feed.
    lastUpdated String
    Date Package was last updated, found in the appxmanifest.xml.
    packageAlias String
    Alias of App Attach Package. Assigned at import time
    packageApplications List<Property Map>
    List of package applications.
    packageDependencies List<Property Map>
    List of package dependencies.
    packageFamilyName String
    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
    packageFullName String
    Package Full Name from appxmanifest.xml.
    packageName String
    Package Name from appxmanifest.xml.
    packageRelativePath String
    Relative Path to the package inside the image.
    version String
    Package Version found in the appxmanifest.xml.

    AppAttachPackageProperties, AppAttachPackagePropertiesArgs

    FailHealthCheckOnStagingFailure string | Pulumi.AzureNative.DesktopVirtualization.FailHealthCheckOnStagingFailure
    Parameter indicating how the health check should behave if this package fails staging
    HostPoolReferences List<string>
    List of Hostpool resource Ids.
    Image Pulumi.AzureNative.DesktopVirtualization.Inputs.AppAttachPackageInfoProperties
    Detailed properties for App Attach Package
    KeyVaultURL string
    URL of keyvault location to store certificate
    FailHealthCheckOnStagingFailure string | FailHealthCheckOnStagingFailure
    Parameter indicating how the health check should behave if this package fails staging
    HostPoolReferences []string
    List of Hostpool resource Ids.
    Image AppAttachPackageInfoProperties
    Detailed properties for App Attach Package
    KeyVaultURL string
    URL of keyvault location to store certificate
    failHealthCheckOnStagingFailure String | FailHealthCheckOnStagingFailure
    Parameter indicating how the health check should behave if this package fails staging
    hostPoolReferences List<String>
    List of Hostpool resource Ids.
    image AppAttachPackageInfoProperties
    Detailed properties for App Attach Package
    keyVaultURL String
    URL of keyvault location to store certificate
    failHealthCheckOnStagingFailure string | FailHealthCheckOnStagingFailure
    Parameter indicating how the health check should behave if this package fails staging
    hostPoolReferences string[]
    List of Hostpool resource Ids.
    image AppAttachPackageInfoProperties
    Detailed properties for App Attach Package
    keyVaultURL string
    URL of keyvault location to store certificate
    fail_health_check_on_staging_failure str | FailHealthCheckOnStagingFailure
    Parameter indicating how the health check should behave if this package fails staging
    host_pool_references Sequence[str]
    List of Hostpool resource Ids.
    image AppAttachPackageInfoProperties
    Detailed properties for App Attach Package
    key_vault_url str
    URL of keyvault location to store certificate
    failHealthCheckOnStagingFailure String | "Unhealthy" | "NeedsAssistance" | "DoNotFail"
    Parameter indicating how the health check should behave if this package fails staging
    hostPoolReferences List<String>
    List of Hostpool resource Ids.
    image Property Map
    Detailed properties for App Attach Package
    keyVaultURL String
    URL of keyvault location to store certificate

    AppAttachPackagePropertiesResponse, AppAttachPackagePropertiesResponseArgs

    ProvisioningState string
    The provisioning state of the App Attach Package.
    FailHealthCheckOnStagingFailure string
    Parameter indicating how the health check should behave if this package fails staging
    HostPoolReferences List<string>
    List of Hostpool resource Ids.
    Image Pulumi.AzureNative.DesktopVirtualization.Inputs.AppAttachPackageInfoPropertiesResponse
    Detailed properties for App Attach Package
    KeyVaultURL string
    URL of keyvault location to store certificate
    ProvisioningState string
    The provisioning state of the App Attach Package.
    FailHealthCheckOnStagingFailure string
    Parameter indicating how the health check should behave if this package fails staging
    HostPoolReferences []string
    List of Hostpool resource Ids.
    Image AppAttachPackageInfoPropertiesResponse
    Detailed properties for App Attach Package
    KeyVaultURL string
    URL of keyvault location to store certificate
    provisioningState String
    The provisioning state of the App Attach Package.
    failHealthCheckOnStagingFailure String
    Parameter indicating how the health check should behave if this package fails staging
    hostPoolReferences List<String>
    List of Hostpool resource Ids.
    image AppAttachPackageInfoPropertiesResponse
    Detailed properties for App Attach Package
    keyVaultURL String
    URL of keyvault location to store certificate
    provisioningState string
    The provisioning state of the App Attach Package.
    failHealthCheckOnStagingFailure string
    Parameter indicating how the health check should behave if this package fails staging
    hostPoolReferences string[]
    List of Hostpool resource Ids.
    image AppAttachPackageInfoPropertiesResponse
    Detailed properties for App Attach Package
    keyVaultURL string
    URL of keyvault location to store certificate
    provisioning_state str
    The provisioning state of the App Attach Package.
    fail_health_check_on_staging_failure str
    Parameter indicating how the health check should behave if this package fails staging
    host_pool_references Sequence[str]
    List of Hostpool resource Ids.
    image AppAttachPackageInfoPropertiesResponse
    Detailed properties for App Attach Package
    key_vault_url str
    URL of keyvault location to store certificate
    provisioningState String
    The provisioning state of the App Attach Package.
    failHealthCheckOnStagingFailure String
    Parameter indicating how the health check should behave if this package fails staging
    hostPoolReferences List<String>
    List of Hostpool resource Ids.
    image Property Map
    Detailed properties for App Attach Package
    keyVaultURL String
    URL of keyvault location to store certificate

    FailHealthCheckOnStagingFailure, FailHealthCheckOnStagingFailureArgs

    Unhealthy
    Unhealthy
    NeedsAssistance
    NeedsAssistance
    DoNotFail
    DoNotFail
    FailHealthCheckOnStagingFailureUnhealthy
    Unhealthy
    FailHealthCheckOnStagingFailureNeedsAssistance
    NeedsAssistance
    FailHealthCheckOnStagingFailureDoNotFail
    DoNotFail
    Unhealthy
    Unhealthy
    NeedsAssistance
    NeedsAssistance
    DoNotFail
    DoNotFail
    Unhealthy
    Unhealthy
    NeedsAssistance
    NeedsAssistance
    DoNotFail
    DoNotFail
    UNHEALTHY
    Unhealthy
    NEEDS_ASSISTANCE
    NeedsAssistance
    DO_NOT_FAIL
    DoNotFail
    "Unhealthy"
    Unhealthy
    "NeedsAssistance"
    NeedsAssistance
    "DoNotFail"
    DoNotFail

    MsixPackageApplications, MsixPackageApplicationsArgs

    AppId string
    Package Application Id, found in appxmanifest.xml.
    AppUserModelID string
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    Description string
    Description of Package Application.
    FriendlyName string
    User friendly name.
    IconImageName string
    User friendly name.
    RawIcon string
    the icon a 64 bit string as a byte array.
    RawPng string
    the icon a 64 bit string as a byte array.
    AppId string
    Package Application Id, found in appxmanifest.xml.
    AppUserModelID string
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    Description string
    Description of Package Application.
    FriendlyName string
    User friendly name.
    IconImageName string
    User friendly name.
    RawIcon string
    the icon a 64 bit string as a byte array.
    RawPng string
    the icon a 64 bit string as a byte array.
    appId String
    Package Application Id, found in appxmanifest.xml.
    appUserModelID String
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description String
    Description of Package Application.
    friendlyName String
    User friendly name.
    iconImageName String
    User friendly name.
    rawIcon String
    the icon a 64 bit string as a byte array.
    rawPng String
    the icon a 64 bit string as a byte array.
    appId string
    Package Application Id, found in appxmanifest.xml.
    appUserModelID string
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description string
    Description of Package Application.
    friendlyName string
    User friendly name.
    iconImageName string
    User friendly name.
    rawIcon string
    the icon a 64 bit string as a byte array.
    rawPng string
    the icon a 64 bit string as a byte array.
    app_id str
    Package Application Id, found in appxmanifest.xml.
    app_user_model_id str
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description str
    Description of Package Application.
    friendly_name str
    User friendly name.
    icon_image_name str
    User friendly name.
    raw_icon str
    the icon a 64 bit string as a byte array.
    raw_png str
    the icon a 64 bit string as a byte array.
    appId String
    Package Application Id, found in appxmanifest.xml.
    appUserModelID String
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description String
    Description of Package Application.
    friendlyName String
    User friendly name.
    iconImageName String
    User friendly name.
    rawIcon String
    the icon a 64 bit string as a byte array.
    rawPng String
    the icon a 64 bit string as a byte array.

    MsixPackageApplicationsResponse, MsixPackageApplicationsResponseArgs

    AppId string
    Package Application Id, found in appxmanifest.xml.
    AppUserModelID string
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    Description string
    Description of Package Application.
    FriendlyName string
    User friendly name.
    IconImageName string
    User friendly name.
    RawIcon string
    the icon a 64 bit string as a byte array.
    RawPng string
    the icon a 64 bit string as a byte array.
    AppId string
    Package Application Id, found in appxmanifest.xml.
    AppUserModelID string
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    Description string
    Description of Package Application.
    FriendlyName string
    User friendly name.
    IconImageName string
    User friendly name.
    RawIcon string
    the icon a 64 bit string as a byte array.
    RawPng string
    the icon a 64 bit string as a byte array.
    appId String
    Package Application Id, found in appxmanifest.xml.
    appUserModelID String
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description String
    Description of Package Application.
    friendlyName String
    User friendly name.
    iconImageName String
    User friendly name.
    rawIcon String
    the icon a 64 bit string as a byte array.
    rawPng String
    the icon a 64 bit string as a byte array.
    appId string
    Package Application Id, found in appxmanifest.xml.
    appUserModelID string
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description string
    Description of Package Application.
    friendlyName string
    User friendly name.
    iconImageName string
    User friendly name.
    rawIcon string
    the icon a 64 bit string as a byte array.
    rawPng string
    the icon a 64 bit string as a byte array.
    app_id str
    Package Application Id, found in appxmanifest.xml.
    app_user_model_id str
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description str
    Description of Package Application.
    friendly_name str
    User friendly name.
    icon_image_name str
    User friendly name.
    raw_icon str
    the icon a 64 bit string as a byte array.
    raw_png str
    the icon a 64 bit string as a byte array.
    appId String
    Package Application Id, found in appxmanifest.xml.
    appUserModelID String
    Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
    description String
    Description of Package Application.
    friendlyName String
    User friendly name.
    iconImageName String
    User friendly name.
    rawIcon String
    the icon a 64 bit string as a byte array.
    rawPng String
    the icon a 64 bit string as a byte array.

    MsixPackageDependencies, MsixPackageDependenciesArgs

    DependencyName string
    Name of package dependency.
    MinVersion string
    Dependency version required.
    Publisher string
    Name of dependency publisher.
    DependencyName string
    Name of package dependency.
    MinVersion string
    Dependency version required.
    Publisher string
    Name of dependency publisher.
    dependencyName String
    Name of package dependency.
    minVersion String
    Dependency version required.
    publisher String
    Name of dependency publisher.
    dependencyName string
    Name of package dependency.
    minVersion string
    Dependency version required.
    publisher string
    Name of dependency publisher.
    dependency_name str
    Name of package dependency.
    min_version str
    Dependency version required.
    publisher str
    Name of dependency publisher.
    dependencyName String
    Name of package dependency.
    minVersion String
    Dependency version required.
    publisher String
    Name of dependency publisher.

    MsixPackageDependenciesResponse, MsixPackageDependenciesResponseArgs

    DependencyName string
    Name of package dependency.
    MinVersion string
    Dependency version required.
    Publisher string
    Name of dependency publisher.
    DependencyName string
    Name of package dependency.
    MinVersion string
    Dependency version required.
    Publisher string
    Name of dependency publisher.
    dependencyName String
    Name of package dependency.
    minVersion String
    Dependency version required.
    publisher String
    Name of dependency publisher.
    dependencyName string
    Name of package dependency.
    minVersion string
    Dependency version required.
    publisher string
    Name of dependency publisher.
    dependency_name str
    Name of package dependency.
    min_version str
    Dependency version required.
    publisher str
    Name of dependency publisher.
    dependencyName String
    Name of package dependency.
    minVersion String
    Dependency version required.
    publisher String
    Name of dependency publisher.

    PackageTimestamped, PackageTimestampedArgs

    Timestamped
    Timestamped
    NotTimestamped
    NotTimestamped
    PackageTimestampedTimestamped
    Timestamped
    PackageTimestampedNotTimestamped
    NotTimestamped
    Timestamped
    Timestamped
    NotTimestamped
    NotTimestamped
    Timestamped
    Timestamped
    NotTimestamped
    NotTimestamped
    TIMESTAMPED
    Timestamped
    NOT_TIMESTAMPED
    NotTimestamped
    "Timestamped"
    Timestamped
    "NotTimestamped"
    NotTimestamped

    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 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, ResourceModelWithAllowedPropertySetResponseIdentityArgs

    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, ResourceModelWithAllowedPropertySetResponsePlanArgs

    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, ResourceModelWithAllowedPropertySetResponseSkuArgs

    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, ResourceModelWithAllowedPropertySetSkuArgs

    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, 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:AppAttachPackage packageName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi