azure-native.desktopvirtualization.MSIXPackage
Explore with Pulumi AI
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, 2024-04-03, 2024-04-08-preview, 2024-08-08-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/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 * 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",
});
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=[{
        "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=[{
        "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")
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.
Constructor 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=[{
        "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=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MSIXPackage resource accepts the following input properties:
- HostPool stringName 
- The name of the host pool within the specified resource group
- ResourceGroup stringName 
- 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.
- IsRegular boolRegistration 
- Specifies how to register Package in feed.
- LastUpdated string
- Date Package was last updated, found in the appxmanifest.xml.
- MsixPackage stringFull Name 
- The version specific package full name of the MSIX package within specified hostpool
- PackageApplications List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Msix Package Applications> 
- List of package applications.
- PackageDependencies List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Msix Package Dependencies> 
- List of package dependencies.
- PackageFamily stringName 
- Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- PackageName string
- Package Name from appxmanifest.xml.
- PackageRelative stringPath 
- Relative Path to the package inside the image.
- Version string
- Package Version found in the appxmanifest.xml.
- HostPool stringName 
- The name of the host pool within the specified resource group
- ResourceGroup stringName 
- 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.
- IsRegular boolRegistration 
- Specifies how to register Package in feed.
- LastUpdated string
- Date Package was last updated, found in the appxmanifest.xml.
- MsixPackage stringFull Name 
- The version specific package full name of the MSIX package within specified hostpool
- PackageApplications []MsixPackage Applications Args 
- List of package applications.
- PackageDependencies []MsixPackage Dependencies Args 
- List of package dependencies.
- PackageFamily stringName 
- Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- PackageName string
- Package Name from appxmanifest.xml.
- PackageRelative stringPath 
- Relative Path to the package inside the image.
- Version string
- Package Version found in the appxmanifest.xml.
- hostPool StringName 
- The name of the host pool within the specified resource group
- resourceGroup StringName 
- 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.
- isRegular BooleanRegistration 
- Specifies how to register Package in feed.
- lastUpdated String
- Date Package was last updated, found in the appxmanifest.xml.
- msixPackage StringFull Name 
- The version specific package full name of the MSIX package within specified hostpool
- packageApplications List<MsixPackage Applications> 
- List of package applications.
- packageDependencies List<MsixPackage Dependencies> 
- List of package dependencies.
- packageFamily StringName 
- Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- packageName String
- Package Name from appxmanifest.xml.
- packageRelative StringPath 
- Relative Path to the package inside the image.
- version String
- Package Version found in the appxmanifest.xml.
- hostPool stringName 
- The name of the host pool within the specified resource group
- resourceGroup stringName 
- 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.
- isRegular booleanRegistration 
- Specifies how to register Package in feed.
- lastUpdated string
- Date Package was last updated, found in the appxmanifest.xml.
- msixPackage stringFull Name 
- The version specific package full name of the MSIX package within specified hostpool
- packageApplications MsixPackage Applications[] 
- List of package applications.
- packageDependencies MsixPackage Dependencies[] 
- List of package dependencies.
- packageFamily stringName 
- Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- packageName string
- Package Name from appxmanifest.xml.
- packageRelative stringPath 
- Relative Path to the package inside the image.
- version string
- Package Version found in the appxmanifest.xml.
- host_pool_ strname 
- The name of the host pool within the specified resource group
- resource_group_ strname 
- 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_ boolregistration 
- Specifies how to register Package in feed.
- last_updated str
- Date Package was last updated, found in the appxmanifest.xml.
- msix_package_ strfull_ name 
- The version specific package full name of the MSIX package within specified hostpool
- package_applications Sequence[MsixPackage Applications Args] 
- List of package applications.
- package_dependencies Sequence[MsixPackage Dependencies Args] 
- List of package dependencies.
- package_family_ strname 
- Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package_name str
- Package Name from appxmanifest.xml.
- package_relative_ strpath 
- Relative Path to the package inside the image.
- version str
- Package Version found in the appxmanifest.xml.
- hostPool StringName 
- The name of the host pool within the specified resource group
- resourceGroup StringName 
- 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.
- isRegular BooleanRegistration 
- Specifies how to register Package in feed.
- lastUpdated String
- Date Package was last updated, found in the appxmanifest.xml.
- msixPackage StringFull Name 
- 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.
- packageFamily StringName 
- Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- packageName String
- Package Name from appxmanifest.xml.
- packageRelative StringPath 
- 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.Azure Native. Desktop Virtualization. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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.
- AppUser stringModel ID 
- 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.
- IconImage stringName 
- 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.
- AppUser stringModel ID 
- 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.
- IconImage stringName 
- 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.
- appUser StringModel ID 
- 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.
- iconImage StringName 
- 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.
- appUser stringModel ID 
- 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.
- iconImage stringName 
- 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_ strmodel_ id 
- 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_ strname 
- 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.
- appUser StringModel ID 
- 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.
- iconImage StringName 
- 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.
- AppUser stringModel ID 
- 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.
- IconImage stringName 
- 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.
- AppUser stringModel ID 
- 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.
- IconImage stringName 
- 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.
- appUser StringModel ID 
- 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.
- iconImage StringName 
- 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.
- appUser stringModel ID 
- 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.
- iconImage stringName 
- 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_ strmodel_ id 
- 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_ strname 
- 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.
- appUser StringModel ID 
- 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.
- iconImage StringName 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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