1. Packages
  2. Azure Native
  3. API Docs
  4. desktopvirtualization
  5. MSIXPackage
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.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.desktopvirtualization.MSIXPackage

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.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Schema for MSIX Package properties. Azure REST API version: 2022-09-09. Prior API version in Azure Native 1.x: 2021-02-01-preview.

    Other available API versions: 2022-10-14-preview, 2023-07-07-preview, 2023-09-05, 2023-10-04-preview, 2023-11-01-preview, 2024-01-16-preview, 2024-03-06-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 (
    	"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.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.MsixPackageApplicationsArray{
    				&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.MsixPackageDependenciesArray{
    				&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 com.pulumi.azurenative.desktopvirtualization.inputs.MsixPackageApplicationsArgs;
    import com.pulumi.azurenative.desktopvirtualization.inputs.MsixPackageDependenciesArgs;
    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(MsixPackageApplicationsArgs.builder()
                    .appId("ApplicationId")
                    .appUserModelID("AppUserModelId")
                    .description("application-desc")
                    .friendlyName("friendlyname")
                    .iconImageName("Apptile")
                    .rawIcon("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
                    .rawPng("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
                    .build())
                .packageDependencies(MsixPackageDependenciesArgs.builder()
                    .dependencyName("MsixTest_Dependency_Name")
                    .minVersion("version")
                    .publisher("PublishedName")
                    .build())
                .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

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

    Constructor syntax

    new MSIXPackage(name: string, args: MSIXPackageArgs, opts?: CustomResourceOptions);
    @overload
    def MSIXPackage(resource_name: str,
                    args: MSIXPackageArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def MSIXPackage(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    resource_group_name: Optional[str] = None,
                    host_pool_name: Optional[str] = None,
                    msix_package_full_name: Optional[str] = None,
                    is_active: Optional[bool] = None,
                    is_regular_registration: Optional[bool] = None,
                    last_updated: Optional[str] = None,
                    display_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,
                    image_path: Optional[str] = None,
                    version: Optional[str] = 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.
    
    

    Parameters

    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.

    Example

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

    var msixpackageResource = new AzureNative.DesktopVirtualization.MSIXPackage("msixpackageResource", new()
    {
        ResourceGroupName = "string",
        HostPoolName = "string",
        MsixPackageFullName = "string",
        IsActive = false,
        IsRegularRegistration = false,
        LastUpdated = "string",
        DisplayName = "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",
        PackageName = "string",
        PackageRelativePath = "string",
        ImagePath = "string",
        Version = "string",
    });
    
    example, err := desktopvirtualization.NewMSIXPackage(ctx, "msixpackageResource", &desktopvirtualization.MSIXPackageArgs{
    ResourceGroupName: pulumi.String("string"),
    HostPoolName: pulumi.String("string"),
    MsixPackageFullName: pulumi.String("string"),
    IsActive: pulumi.Bool(false),
    IsRegularRegistration: pulumi.Bool(false),
    LastUpdated: pulumi.String("string"),
    DisplayName: 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"),
    PackageName: pulumi.String("string"),
    PackageRelativePath: pulumi.String("string"),
    ImagePath: pulumi.String("string"),
    Version: pulumi.String("string"),
    })
    
    var msixpackageResource = new MSIXPackage("msixpackageResource", MSIXPackageArgs.builder()        
        .resourceGroupName("string")
        .hostPoolName("string")
        .msixPackageFullName("string")
        .isActive(false)
        .isRegularRegistration(false)
        .lastUpdated("string")
        .displayName("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")
        .packageName("string")
        .packageRelativePath("string")
        .imagePath("string")
        .version("string")
        .build());
    
    msixpackage_resource = azure_native.desktopvirtualization.MSIXPackage("msixpackageResource",
        resource_group_name="string",
        host_pool_name="string",
        msix_package_full_name="string",
        is_active=False,
        is_regular_registration=False,
        last_updated="string",
        display_name="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_name="string",
        package_relative_path="string",
        image_path="string",
        version="string")
    
    const msixpackageResource = new azure_native.desktopvirtualization.MSIXPackage("msixpackageResource", {
        resourceGroupName: "string",
        hostPoolName: "string",
        msixPackageFullName: "string",
        isActive: false,
        isRegularRegistration: false,
        lastUpdated: "string",
        displayName: "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",
        packageName: "string",
        packageRelativePath: "string",
        imagePath: "string",
        version: "string",
    });
    
    type: azure-native:desktopvirtualization:MSIXPackage
    properties:
        displayName: string
        hostPoolName: string
        imagePath: string
        isActive: false
        isRegularRegistration: false
        lastUpdated: string
        msixPackageFullName: 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
        packageName: string
        packageRelativePath: string
        resourceGroupName: string
        version: string
    

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

    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.

    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:MSIXPackage hostpool1/MsixPackageFullName /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/hostPools/{hostPoolName}/msixPackages/{msixPackageFullName} 
    

    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.37.0 published on Monday, Apr 15, 2024 by Pulumi