1. Packages
  2. Azure Native
  3. API Docs
  4. desktopvirtualization
  5. MSIXPackage
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

azure-native.desktopvirtualization.MSIXPackage

Explore with Pulumi AI

azure-native logo
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

    Schema for MSIX Package properties. API Version: 2021-02-01-preview.

    Example Usage

    MSIXPackage_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var msixPackage = new AzureNative.DesktopVirtualization.MSIXPackage("msixPackage", new()
        {
            DisplayName = "displayname",
            HostPoolName = "hostpool1",
            ImagePath = "imagepath",
            IsActive = false,
            IsRegularRegistration = false,
            LastUpdated = "2008-09-22T14:01:54.9571247Z",
            MsixPackageFullName = "msixpackagefullname",
            PackageApplications = new[]
            {
                new AzureNative.DesktopVirtualization.Inputs.MsixPackageApplicationsArgs
                {
                    AppId = "ApplicationId",
                    AppUserModelID = "AppUserModelId",
                    Description = "application-desc",
                    FriendlyName = "friendlyname",
                    IconImageName = "Apptile",
                    RawIcon = "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                    RawPng = "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
                },
            },
            PackageDependencies = new[]
            {
                new AzureNative.DesktopVirtualization.Inputs.MsixPackageDependenciesArgs
                {
                    DependencyName = "MsixTest_Dependency_Name",
                    MinVersion = "version",
                    Publisher = "PublishedName",
                },
            },
            PackageFamilyName = "MsixPackage_FamilyName",
            PackageName = "MsixPackage_name",
            PackageRelativePath = "packagerelativepath",
            ResourceGroupName = "resourceGroup1",
            Version = "version",
        });
    
    });
    
    package main
    
    import (
    	desktopvirtualization "github.com/pulumi/pulumi-azure-native-sdk/desktopvirtualization"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := desktopvirtualization.NewMSIXPackage(ctx, "msixPackage", &desktopvirtualization.MSIXPackageArgs{
    			DisplayName:           pulumi.String("displayname"),
    			HostPoolName:          pulumi.String("hostpool1"),
    			ImagePath:             pulumi.String("imagepath"),
    			IsActive:              pulumi.Bool(false),
    			IsRegularRegistration: pulumi.Bool(false),
    			LastUpdated:           pulumi.String("2008-09-22T14:01:54.9571247Z"),
    			MsixPackageFullName:   pulumi.String("msixpackagefullname"),
    			PackageApplications: []desktopvirtualization.MsixPackageApplicationsArgs{
    				{
    					AppId:          pulumi.String("ApplicationId"),
    					AppUserModelID: pulumi.String("AppUserModelId"),
    					Description:    pulumi.String("application-desc"),
    					FriendlyName:   pulumi.String("friendlyname"),
    					IconImageName:  pulumi.String("Apptile"),
    					RawIcon:        pulumi.String("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
    					RawPng:         pulumi.String("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
    				},
    			},
    			PackageDependencies: []desktopvirtualization.MsixPackageDependenciesArgs{
    				{
    					DependencyName: pulumi.String("MsixTest_Dependency_Name"),
    					MinVersion:     pulumi.String("version"),
    					Publisher:      pulumi.String("PublishedName"),
    				},
    			},
    			PackageFamilyName:   pulumi.String("MsixPackage_FamilyName"),
    			PackageName:         pulumi.String("MsixPackage_name"),
    			PackageRelativePath: pulumi.String("packagerelativepath"),
    			ResourceGroupName:   pulumi.String("resourceGroup1"),
    			Version:             pulumi.String("version"),
    		})
    		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.MSIXPackage;
    import com.pulumi.azurenative.desktopvirtualization.MSIXPackageArgs;
    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 msixPackage = new MSIXPackage("msixPackage", MSIXPackageArgs.builder()        
                .displayName("displayname")
                .hostPoolName("hostpool1")
                .imagePath("imagepath")
                .isActive(false)
                .isRegularRegistration(false)
                .lastUpdated("2008-09-22T14:01:54.9571247Z")
                .msixPackageFullName("msixpackagefullname")
                .packageApplications(Map.ofEntries(
                    Map.entry("appId", "ApplicationId"),
                    Map.entry("appUserModelID", "AppUserModelId"),
                    Map.entry("description", "application-desc"),
                    Map.entry("friendlyName", "friendlyname"),
                    Map.entry("iconImageName", "Apptile"),
                    Map.entry("rawIcon", "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
                    Map.entry("rawPng", "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
                ))
                .packageDependencies(Map.ofEntries(
                    Map.entry("dependencyName", "MsixTest_Dependency_Name"),
                    Map.entry("minVersion", "version"),
                    Map.entry("publisher", "PublishedName")
                ))
                .packageFamilyName("MsixPackage_FamilyName")
                .packageName("MsixPackage_name")
                .packageRelativePath("packagerelativepath")
                .resourceGroupName("resourceGroup1")
                .version("version")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    msix_package = azure_native.desktopvirtualization.MSIXPackage("msixPackage",
        display_name="displayname",
        host_pool_name="hostpool1",
        image_path="imagepath",
        is_active=False,
        is_regular_registration=False,
        last_updated="2008-09-22T14:01:54.9571247Z",
        msix_package_full_name="msixpackagefullname",
        package_applications=[azure_native.desktopvirtualization.MsixPackageApplicationsArgs(
            app_id="ApplicationId",
            app_user_model_id="AppUserModelId",
            description="application-desc",
            friendly_name="friendlyname",
            icon_image_name="Apptile",
            raw_icon="VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
            raw_png="VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
        )],
        package_dependencies=[azure_native.desktopvirtualization.MsixPackageDependenciesArgs(
            dependency_name="MsixTest_Dependency_Name",
            min_version="version",
            publisher="PublishedName",
        )],
        package_family_name="MsixPackage_FamilyName",
        package_name="MsixPackage_name",
        package_relative_path="packagerelativepath",
        resource_group_name="resourceGroup1",
        version="version")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const msixPackage = new azure_native.desktopvirtualization.MSIXPackage("msixPackage", {
        displayName: "displayname",
        hostPoolName: "hostpool1",
        imagePath: "imagepath",
        isActive: false,
        isRegularRegistration: false,
        lastUpdated: "2008-09-22T14:01:54.9571247Z",
        msixPackageFullName: "msixpackagefullname",
        packageApplications: [{
            appId: "ApplicationId",
            appUserModelID: "AppUserModelId",
            description: "application-desc",
            friendlyName: "friendlyname",
            iconImageName: "Apptile",
            rawIcon: "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
            rawPng: "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
        }],
        packageDependencies: [{
            dependencyName: "MsixTest_Dependency_Name",
            minVersion: "version",
            publisher: "PublishedName",
        }],
        packageFamilyName: "MsixPackage_FamilyName",
        packageName: "MsixPackage_name",
        packageRelativePath: "packagerelativepath",
        resourceGroupName: "resourceGroup1",
        version: "version",
    });
    
    resources:
      msixPackage:
        type: azure-native:desktopvirtualization:MSIXPackage
        properties:
          displayName: displayname
          hostPoolName: hostpool1
          imagePath: imagepath
          isActive: false
          isRegularRegistration: false
          lastUpdated: 2008-09-22T14:01:54.9571247Z
          msixPackageFullName: msixpackagefullname
          packageApplications:
            - appId: ApplicationId
              appUserModelID: AppUserModelId
              description: application-desc
              friendlyName: friendlyname
              iconImageName: Apptile
              rawIcon: VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo
              rawPng: VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo
          packageDependencies:
            - dependencyName: MsixTest_Dependency_Name
              minVersion: version
              publisher: PublishedName
          packageFamilyName: MsixPackage_FamilyName
          packageName: MsixPackage_name
          packageRelativePath: packagerelativepath
          resourceGroupName: resourceGroup1
          version: version
    

    Create MSIXPackage Resource

    new MSIXPackage(name: string, args: MSIXPackageArgs, opts?: CustomResourceOptions);
    @overload
    def MSIXPackage(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    display_name: Optional[str] = None,
                    host_pool_name: Optional[str] = None,
                    image_path: Optional[str] = None,
                    is_active: Optional[bool] = None,
                    is_regular_registration: Optional[bool] = None,
                    last_updated: Optional[str] = None,
                    msix_package_full_name: Optional[str] = None,
                    package_applications: Optional[Sequence[MsixPackageApplicationsArgs]] = None,
                    package_dependencies: Optional[Sequence[MsixPackageDependenciesArgs]] = None,
                    package_family_name: Optional[str] = None,
                    package_name: Optional[str] = None,
                    package_relative_path: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    version: Optional[str] = None)
    @overload
    def MSIXPackage(resource_name: str,
                    args: MSIXPackageArgs,
                    opts: Optional[ResourceOptions] = None)
    func NewMSIXPackage(ctx *Context, name string, args MSIXPackageArgs, opts ...ResourceOption) (*MSIXPackage, error)
    public MSIXPackage(string name, MSIXPackageArgs args, CustomResourceOptions? opts = null)
    public MSIXPackage(String name, MSIXPackageArgs args)
    public MSIXPackage(String name, MSIXPackageArgs args, CustomResourceOptions options)
    
    type: azure-native:desktopvirtualization:MSIXPackage
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args MSIXPackageArgs
    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 MSIXPackageArgs
    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 MSIXPackageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MSIXPackageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MSIXPackageArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    HostPoolName string

    The name of the host pool within the specified resource group

    ResourceGroupName string

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

    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.

    IsRegularRegistration bool

    Specifies how to register Package in feed.

    LastUpdated string

    Date Package was last updated, found in the appxmanifest.xml.

    MsixPackageFullName string

    The version specific package full name of the MSIX package within specified hostpool

    PackageApplications List<Pulumi.AzureNative.DesktopVirtualization.Inputs.MsixPackageApplicationsArgs>

    List of package applications.

    PackageDependencies List<Pulumi.AzureNative.DesktopVirtualization.Inputs.MsixPackageDependenciesArgs>

    List of package dependencies.

    PackageFamilyName string

    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.

    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.

    HostPoolName string

    The name of the host pool within the specified resource group

    ResourceGroupName string

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

    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.

    IsRegularRegistration bool

    Specifies how to register Package in feed.

    LastUpdated string

    Date Package was last updated, found in the appxmanifest.xml.

    MsixPackageFullName string

    The version specific package full name of the MSIX package within specified hostpool

    PackageApplications []MsixPackageApplicationsArgs

    List of package applications.

    PackageDependencies []MsixPackageDependenciesArgs

    List of package dependencies.

    PackageFamilyName string

    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.

    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.

    hostPoolName String

    The name of the host pool within the specified resource group

    resourceGroupName String

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

    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.

    isRegularRegistration Boolean

    Specifies how to register Package in feed.

    lastUpdated String

    Date Package was last updated, found in the appxmanifest.xml.

    msixPackageFullName String

    The version specific package full name of the MSIX package within specified hostpool

    packageApplications List<MsixPackageApplicationsArgs>

    List of package applications.

    packageDependencies List<MsixPackageDependenciesArgs>

    List of package dependencies.

    packageFamilyName String

    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.

    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.

    hostPoolName string

    The name of the host pool within the specified resource group

    resourceGroupName string

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

    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.

    isRegularRegistration boolean

    Specifies how to register Package in feed.

    lastUpdated string

    Date Package was last updated, found in the appxmanifest.xml.

    msixPackageFullName string

    The version specific package full name of the MSIX package within specified hostpool

    packageApplications MsixPackageApplicationsArgs[]

    List of package applications.

    packageDependencies MsixPackageDependenciesArgs[]

    List of package dependencies.

    packageFamilyName string

    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.

    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.

    host_pool_name str

    The name of the host pool within the specified resource group

    resource_group_name str

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

    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_regular_registration bool

    Specifies how to register Package in feed.

    last_updated str

    Date Package was last updated, found in the appxmanifest.xml.

    msix_package_full_name str

    The version specific package full name of the MSIX package within specified hostpool

    package_applications Sequence[MsixPackageApplicationsArgs]

    List of package applications.

    package_dependencies Sequence[MsixPackageDependenciesArgs]

    List of package dependencies.

    package_family_name str

    Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.

    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.

    hostPoolName String

    The name of the host pool within the specified resource group

    resourceGroupName String

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

    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.

    isRegularRegistration Boolean

    Specifies how to register Package in feed.

    lastUpdated String

    Date Package was last updated, found in the appxmanifest.xml.

    msixPackageFullName String

    The version specific package full name of the MSIX package within specified hostpool

    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.

    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.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The name of the resource

    Type string

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The name of the resource

    Type string

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

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The name of the resource

    type String

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

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The name of the resource

    type string

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

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The name of the resource

    type str

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

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The name of the resource

    type String

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

    Supporting Types

    MsixPackageApplications

    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

    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

    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

    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.

    Import

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

    $ pulumi import azure-native:desktopvirtualization:MSIXPackage hostpool1/MsixPackageFullName /subscriptions/daefabc0-95b4-48b3-b645-8a753a63c4fa/resourcegroups/resourcegroup1/providers/Microsoft.DesktopVirtualization/hostpools/hostpool1/msixpackages/msixPackageFullName 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi