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.
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 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")
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.
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=[{
"appId": "string",
"appUserModelID": "string",
"description": "string",
"friendlyName": "string",
"iconImageName": "string",
"rawIcon": "string",
"rawPng": "string",
}],
package_dependencies=[{
"dependencyName": "string",
"minVersion": "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:
- Host
Pool stringName - The name of the host pool within the specified resource group
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Display
Name string - User friendly Name to be displayed in the portal.
- Image
Path string - 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 string - Date Package was last updated, found in the appxmanifest.xml.
- Msix
Package stringFull Name - The version specific package full name of the MSIX package within specified hostpool
- Package
Applications List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Msix Package Applications> - List of package applications.
- Package
Dependencies List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Msix Package Dependencies> - List of package dependencies.
- Package
Family stringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- Package
Name string - Package Name from appxmanifest.xml.
- Package
Relative stringPath - Relative Path to the package inside the image.
- Version string
- Package Version found in the appxmanifest.xml.
- Host
Pool stringName - The name of the host pool within the specified resource group
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Display
Name string - User friendly Name to be displayed in the portal.
- Image
Path string - 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 string - Date Package was last updated, found in the appxmanifest.xml.
- Msix
Package stringFull Name - The version specific package full name of the MSIX package within specified hostpool
- Package
Applications []MsixPackage Applications Args - List of package applications.
- Package
Dependencies []MsixPackage Dependencies Args - List of package dependencies.
- Package
Family stringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- Package
Name string - Package Name from appxmanifest.xml.
- Package
Relative stringPath - Relative Path to the package inside the image.
- Version string
- Package Version found in the appxmanifest.xml.
- host
Pool StringName - The name of the host pool within the specified resource group
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- display
Name String - User friendly Name to be displayed in the portal.
- image
Path String - VHD/CIM image path on Network Share.
- is
Active Boolean - Make this version of the package the active one across the hostpool.
- is
Regular BooleanRegistration - Specifies how to register Package in feed.
- last
Updated String - Date Package was last updated, found in the appxmanifest.xml.
- msix
Package StringFull Name - The version specific package full name of the MSIX package within specified hostpool
- package
Applications List<MsixPackage Applications> - List of package applications.
- package
Dependencies List<MsixPackage Dependencies> - List of package dependencies.
- package
Family StringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package
Name String - Package Name from appxmanifest.xml.
- package
Relative StringPath - Relative Path to the package inside the image.
- version String
- Package Version found in the appxmanifest.xml.
- host
Pool stringName - The name of the host pool within the specified resource group
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- display
Name string - User friendly Name to be displayed in the portal.
- image
Path string - VHD/CIM image path on Network Share.
- is
Active boolean - Make this version of the package the active one across the hostpool.
- is
Regular booleanRegistration - Specifies how to register Package in feed.
- last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- msix
Package stringFull Name - The version specific package full name of the MSIX package within specified hostpool
- package
Applications MsixPackage Applications[] - List of package applications.
- package
Dependencies MsixPackage Dependencies[] - List of package dependencies.
- package
Family stringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package
Name string - Package Name from appxmanifest.xml.
- package
Relative 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.
- host
Pool StringName - The name of the host pool within the specified resource group
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- display
Name String - User friendly Name to be displayed in the portal.
- image
Path String - VHD/CIM image path on Network Share.
- is
Active Boolean - Make this version of the package the active one across the hostpool.
- is
Regular BooleanRegistration - Specifies how to register Package in feed.
- last
Updated String - Date Package was last updated, found in the appxmanifest.xml.
- msix
Package StringFull Name - The version specific package full name of the MSIX package within specified hostpool
- package
Applications List<Property Map> - List of package applications.
- package
Dependencies List<Property Map> - List of package dependencies.
- package
Family StringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package
Name String - Package Name from appxmanifest.xml.
- package
Relative 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- App
Id string - Package Application Id, found in appxmanifest.xml.
- App
User stringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- Description string
- Description of Package Application.
- Friendly
Name string - User friendly name.
- Icon
Image stringName - User friendly name.
- Raw
Icon string - the icon a 64 bit string as a byte array.
- Raw
Png string - the icon a 64 bit string as a byte array.
- App
Id string - Package Application Id, found in appxmanifest.xml.
- App
User stringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- Description string
- Description of Package Application.
- Friendly
Name string - User friendly name.
- Icon
Image stringName - User friendly name.
- Raw
Icon string - the icon a 64 bit string as a byte array.
- Raw
Png string - the icon a 64 bit string as a byte array.
- app
Id String - Package Application Id, found in appxmanifest.xml.
- app
User StringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- description String
- Description of Package Application.
- friendly
Name String - User friendly name.
- icon
Image StringName - User friendly name.
- raw
Icon String - the icon a 64 bit string as a byte array.
- raw
Png String - the icon a 64 bit string as a byte array.
- app
Id string - Package Application Id, found in appxmanifest.xml.
- app
User stringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- description string
- Description of Package Application.
- friendly
Name string - User friendly name.
- icon
Image stringName - User friendly name.
- raw
Icon string - the icon a 64 bit string as a byte array.
- raw
Png 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.
- app
Id String - Package Application Id, found in appxmanifest.xml.
- app
User StringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- description String
- Description of Package Application.
- friendly
Name String - User friendly name.
- icon
Image StringName - User friendly name.
- raw
Icon String - the icon a 64 bit string as a byte array.
- raw
Png String - the icon a 64 bit string as a byte array.
MsixPackageApplicationsResponse, MsixPackageApplicationsResponseArgs
- App
Id string - Package Application Id, found in appxmanifest.xml.
- App
User stringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- Description string
- Description of Package Application.
- Friendly
Name string - User friendly name.
- Icon
Image stringName - User friendly name.
- Raw
Icon string - the icon a 64 bit string as a byte array.
- Raw
Png string - the icon a 64 bit string as a byte array.
- App
Id string - Package Application Id, found in appxmanifest.xml.
- App
User stringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- Description string
- Description of Package Application.
- Friendly
Name string - User friendly name.
- Icon
Image stringName - User friendly name.
- Raw
Icon string - the icon a 64 bit string as a byte array.
- Raw
Png string - the icon a 64 bit string as a byte array.
- app
Id String - Package Application Id, found in appxmanifest.xml.
- app
User StringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- description String
- Description of Package Application.
- friendly
Name String - User friendly name.
- icon
Image StringName - User friendly name.
- raw
Icon String - the icon a 64 bit string as a byte array.
- raw
Png String - the icon a 64 bit string as a byte array.
- app
Id string - Package Application Id, found in appxmanifest.xml.
- app
User stringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- description string
- Description of Package Application.
- friendly
Name string - User friendly name.
- icon
Image stringName - User friendly name.
- raw
Icon string - the icon a 64 bit string as a byte array.
- raw
Png 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.
- app
Id String - Package Application Id, found in appxmanifest.xml.
- app
User StringModel ID - Used to activate Package Application. Consists of Package Name and ApplicationID. Found in appxmanifest.xml.
- description String
- Description of Package Application.
- friendly
Name String - User friendly name.
- icon
Image StringName - User friendly name.
- raw
Icon String - the icon a 64 bit string as a byte array.
- raw
Png String - the icon a 64 bit string as a byte array.
MsixPackageDependencies, MsixPackageDependenciesArgs
- Dependency
Name string - Name of package dependency.
- Min
Version string - Dependency version required.
- Publisher string
- Name of dependency publisher.
- Dependency
Name string - Name of package dependency.
- Min
Version string - Dependency version required.
- Publisher string
- Name of dependency publisher.
- dependency
Name String - Name of package dependency.
- min
Version String - Dependency version required.
- publisher String
- Name of dependency publisher.
- dependency
Name string - Name of package dependency.
- min
Version 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.
- dependency
Name String - Name of package dependency.
- min
Version String - Dependency version required.
- publisher String
- Name of dependency publisher.
MsixPackageDependenciesResponse, MsixPackageDependenciesResponseArgs
- Dependency
Name string - Name of package dependency.
- Min
Version string - Dependency version required.
- Publisher string
- Name of dependency publisher.
- Dependency
Name string - Name of package dependency.
- Min
Version string - Dependency version required.
- Publisher string
- Name of dependency publisher.
- dependency
Name String - Name of package dependency.
- min
Version String - Dependency version required.
- publisher String
- Name of dependency publisher.
- dependency
Name string - Name of package dependency.
- min
Version 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.
- dependency
Name String - Name of package dependency.
- min
Version String - Dependency version required.
- publisher String
- Name of dependency publisher.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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