UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

116 lines (115 loc) 4.56 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a msixpackage. * * Uses Azure REST API version 2024-04-03. * * Other available API versions: 2022-09-09, 2022-10-14-preview, 2023-09-05, 2023-10-04-preview, 2023-11-01-preview, 2024-01-16-preview, 2024-03-06-preview, 2024-04-08-preview, 2024-08-08-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native desktopvirtualization [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getMSIXPackage(args: GetMSIXPackageArgs, opts?: pulumi.InvokeOptions): Promise<GetMSIXPackageResult>; export interface GetMSIXPackageArgs { /** * The name of the host pool within the specified resource group */ hostPoolName: string; /** * The version specific package full name of the MSIX package within specified hostpool */ msixPackageFullName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Schema for MSIX Package properties. */ export interface GetMSIXPackageResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * User friendly Name to be displayed in the portal. */ readonly displayName?: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * VHD/CIM image path on Network Share. */ readonly imagePath?: string; /** * Make this version of the package the active one across the hostpool. */ readonly isActive?: boolean; /** * Specifies how to register Package in feed. */ readonly isRegularRegistration?: boolean; /** * Date Package was last updated, found in the appxmanifest.xml. */ readonly lastUpdated?: string; /** * The name of the resource */ readonly name: string; /** * List of package applications. */ readonly packageApplications?: outputs.desktopvirtualization.MsixPackageApplicationsResponse[]; /** * List of package dependencies. */ readonly packageDependencies?: outputs.desktopvirtualization.MsixPackageDependenciesResponse[]; /** * Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name. */ readonly packageFamilyName?: string; /** * Package Name from appxmanifest.xml. */ readonly packageName?: string; /** * Relative Path to the package inside the image. */ readonly packageRelativePath?: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.desktopvirtualization.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; /** * Package version found in the appxmanifest.xml. */ readonly version?: string; } /** * Get a msixpackage. * * Uses Azure REST API version 2024-04-03. * * Other available API versions: 2022-09-09, 2022-10-14-preview, 2023-09-05, 2023-10-04-preview, 2023-11-01-preview, 2024-01-16-preview, 2024-03-06-preview, 2024-04-08-preview, 2024-08-08-preview, 2024-11-01-preview, 2025-03-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native desktopvirtualization [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getMSIXPackageOutput(args: GetMSIXPackageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetMSIXPackageResult>; export interface GetMSIXPackageOutputArgs { /** * The name of the host pool within the specified resource group */ hostPoolName: pulumi.Input<string>; /** * The version specific package full name of the MSIX package within specified hostpool */ msixPackageFullName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }