azure-native.desktopvirtualization.AppAttachPackage
Explore with Pulumi AI
Schema for App Attach Package properties.
Uses Azure REST API version 2024-04-03. In version 2.x of the Azure Native provider, it used API version 2023-10-04-preview.
Other available API versions: 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. 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 for details.
Example Usage
AppAttachPackage_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var appAttachPackage = new AzureNative.DesktopVirtualization.AppAttachPackage("appAttachPackage", new()
{
AppAttachPackageName = "msixpackagefullname",
Location = "southcentralus",
Properties = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackagePropertiesArgs
{
FailHealthCheckOnStagingFailure = AzureNative.DesktopVirtualization.FailHealthCheckOnStagingFailure.NeedsAssistance,
HostPoolReferences = new() { },
Image = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackageInfoPropertiesArgs
{
CertificateExpiry = "2023-01-02T17:18:19.1234567Z",
CertificateName = "certName",
DisplayName = "displayname",
ImagePath = "imagepath",
IsActive = false,
IsRegularRegistration = false,
LastUpdated = "2008-09-22T14:01:54.9571247Z",
PackageAlias = "msixpackagealias",
PackageApplications = new[]
{
new AzureNative.DesktopVirtualization.Inputs.MsixPackageApplicationsArgs
{
AppId = "AppId",
AppUserModelID = "AppUserModelId",
Description = "PackageApplicationDescription",
FriendlyName = "FriendlyName",
IconImageName = "Iconimagename",
RawIcon = "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
RawPng = "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
},
},
PackageDependencies = new[]
{
new AzureNative.DesktopVirtualization.Inputs.MsixPackageDependenciesArgs
{
DependencyName = "MsixPackage_Dependency_Name",
MinVersion = "packageDep_version",
Publisher = "MsixPackage_Dependency_Publisher",
},
},
PackageFamilyName = "MsixPackage_FamilyName",
PackageFullName = "MsixPackage_FullName",
PackageName = "MsixPackageName",
PackageRelativePath = "packagerelativepath",
Version = "packageversion",
},
KeyVaultURL = "",
},
ResourceGroupName = "resourceGroup1",
});
});
package main
import (
desktopvirtualization "github.com/pulumi/pulumi-azure-native-sdk/desktopvirtualization/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := desktopvirtualization.NewAppAttachPackage(ctx, "appAttachPackage", &desktopvirtualization.AppAttachPackageArgs{
AppAttachPackageName: pulumi.String("msixpackagefullname"),
Location: pulumi.String("southcentralus"),
Properties: &desktopvirtualization.AppAttachPackagePropertiesArgs{
FailHealthCheckOnStagingFailure: pulumi.String(desktopvirtualization.FailHealthCheckOnStagingFailureNeedsAssistance),
HostPoolReferences: pulumi.StringArray{},
Image: &desktopvirtualization.AppAttachPackageInfoPropertiesArgs{
CertificateExpiry: pulumi.String("2023-01-02T17:18:19.1234567Z"),
CertificateName: pulumi.String("certName"),
DisplayName: pulumi.String("displayname"),
ImagePath: pulumi.String("imagepath"),
IsActive: pulumi.Bool(false),
IsRegularRegistration: pulumi.Bool(false),
LastUpdated: pulumi.String("2008-09-22T14:01:54.9571247Z"),
PackageAlias: pulumi.String("msixpackagealias"),
PackageApplications: desktopvirtualization.MsixPackageApplicationsArray{
&desktopvirtualization.MsixPackageApplicationsArgs{
AppId: pulumi.String("AppId"),
AppUserModelID: pulumi.String("AppUserModelId"),
Description: pulumi.String("PackageApplicationDescription"),
FriendlyName: pulumi.String("FriendlyName"),
IconImageName: pulumi.String("Iconimagename"),
RawIcon: pulumi.String("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
RawPng: pulumi.String("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo"),
},
},
PackageDependencies: desktopvirtualization.MsixPackageDependenciesArray{
&desktopvirtualization.MsixPackageDependenciesArgs{
DependencyName: pulumi.String("MsixPackage_Dependency_Name"),
MinVersion: pulumi.String("packageDep_version"),
Publisher: pulumi.String("MsixPackage_Dependency_Publisher"),
},
},
PackageFamilyName: pulumi.String("MsixPackage_FamilyName"),
PackageFullName: pulumi.String("MsixPackage_FullName"),
PackageName: pulumi.String("MsixPackageName"),
PackageRelativePath: pulumi.String("packagerelativepath"),
Version: pulumi.String("packageversion"),
},
KeyVaultURL: pulumi.String(""),
},
ResourceGroupName: pulumi.String("resourceGroup1"),
})
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.AppAttachPackage;
import com.pulumi.azurenative.desktopvirtualization.AppAttachPackageArgs;
import com.pulumi.azurenative.desktopvirtualization.inputs.AppAttachPackagePropertiesArgs;
import com.pulumi.azurenative.desktopvirtualization.inputs.AppAttachPackageInfoPropertiesArgs;
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 appAttachPackage = new AppAttachPackage("appAttachPackage", AppAttachPackageArgs.builder()
.appAttachPackageName("msixpackagefullname")
.location("southcentralus")
.properties(AppAttachPackagePropertiesArgs.builder()
.failHealthCheckOnStagingFailure("NeedsAssistance")
.hostPoolReferences()
.image(AppAttachPackageInfoPropertiesArgs.builder()
.certificateExpiry("2023-01-02T17:18:19.1234567Z")
.certificateName("certName")
.displayName("displayname")
.imagePath("imagepath")
.isActive(false)
.isRegularRegistration(false)
.lastUpdated("2008-09-22T14:01:54.9571247Z")
.packageAlias("msixpackagealias")
.packageApplications(MsixPackageApplicationsArgs.builder()
.appId("AppId")
.appUserModelID("AppUserModelId")
.description("PackageApplicationDescription")
.friendlyName("FriendlyName")
.iconImageName("Iconimagename")
.rawIcon("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
.rawPng("VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo")
.build())
.packageDependencies(MsixPackageDependenciesArgs.builder()
.dependencyName("MsixPackage_Dependency_Name")
.minVersion("packageDep_version")
.publisher("MsixPackage_Dependency_Publisher")
.build())
.packageFamilyName("MsixPackage_FamilyName")
.packageFullName("MsixPackage_FullName")
.packageName("MsixPackageName")
.packageRelativePath("packagerelativepath")
.version("packageversion")
.build())
.keyVaultURL("")
.build())
.resourceGroupName("resourceGroup1")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const appAttachPackage = new azure_native.desktopvirtualization.AppAttachPackage("appAttachPackage", {
appAttachPackageName: "msixpackagefullname",
location: "southcentralus",
properties: {
failHealthCheckOnStagingFailure: azure_native.desktopvirtualization.FailHealthCheckOnStagingFailure.NeedsAssistance,
hostPoolReferences: [],
image: {
certificateExpiry: "2023-01-02T17:18:19.1234567Z",
certificateName: "certName",
displayName: "displayname",
imagePath: "imagepath",
isActive: false,
isRegularRegistration: false,
lastUpdated: "2008-09-22T14:01:54.9571247Z",
packageAlias: "msixpackagealias",
packageApplications: [{
appId: "AppId",
appUserModelID: "AppUserModelId",
description: "PackageApplicationDescription",
friendlyName: "FriendlyName",
iconImageName: "Iconimagename",
rawIcon: "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
rawPng: "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
}],
packageDependencies: [{
dependencyName: "MsixPackage_Dependency_Name",
minVersion: "packageDep_version",
publisher: "MsixPackage_Dependency_Publisher",
}],
packageFamilyName: "MsixPackage_FamilyName",
packageFullName: "MsixPackage_FullName",
packageName: "MsixPackageName",
packageRelativePath: "packagerelativepath",
version: "packageversion",
},
keyVaultURL: "",
},
resourceGroupName: "resourceGroup1",
});
import pulumi
import pulumi_azure_native as azure_native
app_attach_package = azure_native.desktopvirtualization.AppAttachPackage("appAttachPackage",
app_attach_package_name="msixpackagefullname",
location="southcentralus",
properties={
"fail_health_check_on_staging_failure": azure_native.desktopvirtualization.FailHealthCheckOnStagingFailure.NEEDS_ASSISTANCE,
"host_pool_references": [],
"image": {
"certificate_expiry": "2023-01-02T17:18:19.1234567Z",
"certificate_name": "certName",
"display_name": "displayname",
"image_path": "imagepath",
"is_active": False,
"is_regular_registration": False,
"last_updated": "2008-09-22T14:01:54.9571247Z",
"package_alias": "msixpackagealias",
"package_applications": [{
"app_id": "AppId",
"app_user_model_id": "AppUserModelId",
"description": "PackageApplicationDescription",
"friendly_name": "FriendlyName",
"icon_image_name": "Iconimagename",
"raw_icon": "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
"raw_png": "VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo",
}],
"package_dependencies": [{
"dependency_name": "MsixPackage_Dependency_Name",
"min_version": "packageDep_version",
"publisher": "MsixPackage_Dependency_Publisher",
}],
"package_family_name": "MsixPackage_FamilyName",
"package_full_name": "MsixPackage_FullName",
"package_name": "MsixPackageName",
"package_relative_path": "packagerelativepath",
"version": "packageversion",
},
"key_vault_url": "",
},
resource_group_name="resourceGroup1")
resources:
appAttachPackage:
type: azure-native:desktopvirtualization:AppAttachPackage
properties:
appAttachPackageName: msixpackagefullname
location: southcentralus
properties:
failHealthCheckOnStagingFailure: NeedsAssistance
hostPoolReferences: []
image:
certificateExpiry: 2023-01-02T17:18:19.1234567Z
certificateName: certName
displayName: displayname
imagePath: imagepath
isActive: false
isRegularRegistration: false
lastUpdated: 2008-09-22T14:01:54.9571247Z
packageAlias: msixpackagealias
packageApplications:
- appId: AppId
appUserModelID: AppUserModelId
description: PackageApplicationDescription
friendlyName: FriendlyName
iconImageName: Iconimagename
rawIcon: VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo
rawPng: VGhpcyBpcyBhIHN0cmluZyB0byBoYXNo
packageDependencies:
- dependencyName: MsixPackage_Dependency_Name
minVersion: packageDep_version
publisher: MsixPackage_Dependency_Publisher
packageFamilyName: MsixPackage_FamilyName
packageFullName: MsixPackage_FullName
packageName: MsixPackageName
packageRelativePath: packagerelativepath
version: packageversion
keyVaultURL: ""
resourceGroupName: resourceGroup1
Create AppAttachPackage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AppAttachPackage(name: string, args: AppAttachPackageArgs, opts?: CustomResourceOptions);
@overload
def AppAttachPackage(resource_name: str,
args: AppAttachPackageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AppAttachPackage(resource_name: str,
opts: Optional[ResourceOptions] = None,
properties: Optional[AppAttachPackagePropertiesArgs] = None,
resource_group_name: Optional[str] = None,
app_attach_package_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAppAttachPackage(ctx *Context, name string, args AppAttachPackageArgs, opts ...ResourceOption) (*AppAttachPackage, error)
public AppAttachPackage(string name, AppAttachPackageArgs args, CustomResourceOptions? opts = null)
public AppAttachPackage(String name, AppAttachPackageArgs args)
public AppAttachPackage(String name, AppAttachPackageArgs args, CustomResourceOptions options)
type: azure-native:desktopvirtualization:AppAttachPackage
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 AppAttachPackageArgs
- 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 AppAttachPackageArgs
- 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 AppAttachPackageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AppAttachPackageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AppAttachPackageArgs
- 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 appAttachPackageResource = new AzureNative.DesktopVirtualization.AppAttachPackage("appAttachPackageResource", new()
{
Properties = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackagePropertiesArgs
{
FailHealthCheckOnStagingFailure = "string",
HostPoolReferences = new[]
{
"string",
},
Image = new AzureNative.DesktopVirtualization.Inputs.AppAttachPackageInfoPropertiesArgs
{
CertificateExpiry = "string",
CertificateName = "string",
DisplayName = "string",
ImagePath = "string",
IsActive = false,
IsPackageTimestamped = "string",
IsRegularRegistration = false,
LastUpdated = "string",
PackageAlias = "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",
PackageFullName = "string",
PackageName = "string",
PackageRelativePath = "string",
Version = "string",
},
KeyVaultURL = "string",
},
ResourceGroupName = "string",
AppAttachPackageName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := desktopvirtualization.NewAppAttachPackage(ctx, "appAttachPackageResource", &desktopvirtualization.AppAttachPackageArgs{
Properties: &desktopvirtualization.AppAttachPackagePropertiesArgs{
FailHealthCheckOnStagingFailure: pulumi.String("string"),
HostPoolReferences: pulumi.StringArray{
pulumi.String("string"),
},
Image: &desktopvirtualization.AppAttachPackageInfoPropertiesArgs{
CertificateExpiry: pulumi.String("string"),
CertificateName: pulumi.String("string"),
DisplayName: pulumi.String("string"),
ImagePath: pulumi.String("string"),
IsActive: pulumi.Bool(false),
IsPackageTimestamped: pulumi.String("string"),
IsRegularRegistration: pulumi.Bool(false),
LastUpdated: pulumi.String("string"),
PackageAlias: 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"),
PackageFullName: pulumi.String("string"),
PackageName: pulumi.String("string"),
PackageRelativePath: pulumi.String("string"),
Version: pulumi.String("string"),
},
KeyVaultURL: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
AppAttachPackageName: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var appAttachPackageResource = new AppAttachPackage("appAttachPackageResource", AppAttachPackageArgs.builder()
.properties(AppAttachPackagePropertiesArgs.builder()
.failHealthCheckOnStagingFailure("string")
.hostPoolReferences("string")
.image(AppAttachPackageInfoPropertiesArgs.builder()
.certificateExpiry("string")
.certificateName("string")
.displayName("string")
.imagePath("string")
.isActive(false)
.isPackageTimestamped("string")
.isRegularRegistration(false)
.lastUpdated("string")
.packageAlias("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")
.packageFullName("string")
.packageName("string")
.packageRelativePath("string")
.version("string")
.build())
.keyVaultURL("string")
.build())
.resourceGroupName("string")
.appAttachPackageName("string")
.location("string")
.tags(Map.of("string", "string"))
.build());
app_attach_package_resource = azure_native.desktopvirtualization.AppAttachPackage("appAttachPackageResource",
properties={
"fail_health_check_on_staging_failure": "string",
"host_pool_references": ["string"],
"image": {
"certificate_expiry": "string",
"certificate_name": "string",
"display_name": "string",
"image_path": "string",
"is_active": False,
"is_package_timestamped": "string",
"is_regular_registration": False,
"last_updated": "string",
"package_alias": "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_full_name": "string",
"package_name": "string",
"package_relative_path": "string",
"version": "string",
},
"key_vault_url": "string",
},
resource_group_name="string",
app_attach_package_name="string",
location="string",
tags={
"string": "string",
})
const appAttachPackageResource = new azure_native.desktopvirtualization.AppAttachPackage("appAttachPackageResource", {
properties: {
failHealthCheckOnStagingFailure: "string",
hostPoolReferences: ["string"],
image: {
certificateExpiry: "string",
certificateName: "string",
displayName: "string",
imagePath: "string",
isActive: false,
isPackageTimestamped: "string",
isRegularRegistration: false,
lastUpdated: "string",
packageAlias: "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",
packageFullName: "string",
packageName: "string",
packageRelativePath: "string",
version: "string",
},
keyVaultURL: "string",
},
resourceGroupName: "string",
appAttachPackageName: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:desktopvirtualization:AppAttachPackage
properties:
appAttachPackageName: string
location: string
properties:
failHealthCheckOnStagingFailure: string
hostPoolReferences:
- string
image:
certificateExpiry: string
certificateName: string
displayName: string
imagePath: string
isActive: false
isPackageTimestamped: string
isRegularRegistration: false
lastUpdated: string
packageAlias: 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
packageFullName: string
packageName: string
packageRelativePath: string
version: string
keyVaultURL: string
resourceGroupName: string
tags:
string: string
AppAttachPackage 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 AppAttachPackage resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Desktop Virtualization. Inputs. App Attach Package Properties - Detailed properties for App Attach Package
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Attach stringPackage Name - The name of the App Attach package
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- Properties
App
Attach Package Properties Args - Detailed properties for App Attach Package
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Attach stringPackage Name - The name of the App Attach package
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- properties
App
Attach Package Properties - Detailed properties for App Attach Package
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Attach StringPackage Name - The name of the App Attach package
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- properties
App
Attach Package Properties - Detailed properties for App Attach Package
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- app
Attach stringPackage Name - The name of the App Attach package
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- properties
App
Attach Package Properties Args - Detailed properties for App Attach Package
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- app_
attach_ strpackage_ name - The name of the App Attach package
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- properties Property Map
- Detailed properties for App Attach Package
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Attach StringPackage Name - The name of the App Attach package
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the AppAttachPackage resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- 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 - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AppAttachPackageInfoProperties, AppAttachPackageInfoPropertiesArgs
- Certificate
Expiry string - Date certificate expires, found in the appxmanifest.xml.
- Certificate
Name string - Certificate name found in the appxmanifest.xml.
- 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
Package string | Pulumi.Timestamped Azure Native. Desktop Virtualization. Package Timestamped - Is package timestamped so it can ignore the certificate expiry date
- Is
Regular boolRegistration - Specifies how to register Package in feed.
- Last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- Package
Alias string - Alias of App Attach Package. Assigned at import time
- 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
Full stringName - Package Full Name from appxmanifest.xml.
- 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.
- Certificate
Expiry string - Date certificate expires, found in the appxmanifest.xml.
- Certificate
Name string - Certificate name found in the appxmanifest.xml.
- 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
Package string | PackageTimestamped Timestamped - Is package timestamped so it can ignore the certificate expiry date
- Is
Regular boolRegistration - Specifies how to register Package in feed.
- Last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- Package
Alias string - Alias of App Attach Package. Assigned at import time
- 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
Full stringName - Package Full Name from appxmanifest.xml.
- 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.
- certificate
Expiry String - Date certificate expires, found in the appxmanifest.xml.
- certificate
Name String - Certificate name found in the appxmanifest.xml.
- 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
Package String | PackageTimestamped Timestamped - Is package timestamped so it can ignore the certificate expiry date
- is
Regular BooleanRegistration - Specifies how to register Package in feed.
- last
Updated String - Date Package was last updated, found in the appxmanifest.xml.
- package
Alias String - Alias of App Attach Package. Assigned at import time
- 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
Full StringName - Package Full Name from appxmanifest.xml.
- 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.
- certificate
Expiry string - Date certificate expires, found in the appxmanifest.xml.
- certificate
Name string - Certificate name found in the appxmanifest.xml.
- 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
Package string | PackageTimestamped Timestamped - Is package timestamped so it can ignore the certificate expiry date
- is
Regular booleanRegistration - Specifies how to register Package in feed.
- last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- package
Alias string - Alias of App Attach Package. Assigned at import time
- 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
Full stringName - Package Full Name from appxmanifest.xml.
- 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.
- certificate_
expiry str - Date certificate expires, found in the appxmanifest.xml.
- certificate_
name str - Certificate name found in the appxmanifest.xml.
- 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_
package_ str | Packagetimestamped Timestamped - Is package timestamped so it can ignore the certificate expiry date
- is_
regular_ boolregistration - Specifies how to register Package in feed.
- last_
updated str - Date Package was last updated, found in the appxmanifest.xml.
- package_
alias str - Alias of App Attach Package. Assigned at import time
- package_
applications Sequence[MsixPackage Applications] - List of package applications.
- package_
dependencies Sequence[MsixPackage Dependencies] - List of package dependencies.
- package_
family_ strname - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package_
full_ strname - Package Full Name from appxmanifest.xml.
- 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.
- certificate
Expiry String - Date certificate expires, found in the appxmanifest.xml.
- certificate
Name String - Certificate name found in the appxmanifest.xml.
- 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
Package String | "Timestamped" | "NotTimestamped Timestamped" - Is package timestamped so it can ignore the certificate expiry date
- is
Regular BooleanRegistration - Specifies how to register Package in feed.
- last
Updated String - Date Package was last updated, found in the appxmanifest.xml.
- package
Alias String - Alias of App Attach Package. Assigned at import time
- 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
Full StringName - Package Full Name from appxmanifest.xml.
- 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.
AppAttachPackageInfoPropertiesResponse, AppAttachPackageInfoPropertiesResponseArgs
- Certificate
Expiry string - Date certificate expires, found in the appxmanifest.xml.
- Certificate
Name string - Certificate name found in the appxmanifest.xml.
- 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
Package stringTimestamped - Is package timestamped so it can ignore the certificate expiry date
- Is
Regular boolRegistration - Specifies how to register Package in feed.
- Last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- Package
Alias string - Alias of App Attach Package. Assigned at import time
- Package
Applications List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Msix Package Applications Response> - List of package applications.
- Package
Dependencies List<Pulumi.Azure Native. Desktop Virtualization. Inputs. Msix Package Dependencies Response> - List of package dependencies.
- Package
Family stringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- Package
Full stringName - Package Full Name from appxmanifest.xml.
- 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.
- Certificate
Expiry string - Date certificate expires, found in the appxmanifest.xml.
- Certificate
Name string - Certificate name found in the appxmanifest.xml.
- 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
Package stringTimestamped - Is package timestamped so it can ignore the certificate expiry date
- Is
Regular boolRegistration - Specifies how to register Package in feed.
- Last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- Package
Alias string - Alias of App Attach Package. Assigned at import time
- Package
Applications []MsixPackage Applications Response - List of package applications.
- Package
Dependencies []MsixPackage Dependencies Response - List of package dependencies.
- Package
Family stringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- Package
Full stringName - Package Full Name from appxmanifest.xml.
- 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.
- certificate
Expiry String - Date certificate expires, found in the appxmanifest.xml.
- certificate
Name String - Certificate name found in the appxmanifest.xml.
- 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
Package StringTimestamped - Is package timestamped so it can ignore the certificate expiry date
- is
Regular BooleanRegistration - Specifies how to register Package in feed.
- last
Updated String - Date Package was last updated, found in the appxmanifest.xml.
- package
Alias String - Alias of App Attach Package. Assigned at import time
- package
Applications List<MsixPackage Applications Response> - List of package applications.
- package
Dependencies List<MsixPackage Dependencies Response> - List of package dependencies.
- package
Family StringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package
Full StringName - Package Full Name from appxmanifest.xml.
- 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.
- certificate
Expiry string - Date certificate expires, found in the appxmanifest.xml.
- certificate
Name string - Certificate name found in the appxmanifest.xml.
- 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
Package stringTimestamped - Is package timestamped so it can ignore the certificate expiry date
- is
Regular booleanRegistration - Specifies how to register Package in feed.
- last
Updated string - Date Package was last updated, found in the appxmanifest.xml.
- package
Alias string - Alias of App Attach Package. Assigned at import time
- package
Applications MsixPackage Applications Response[] - List of package applications.
- package
Dependencies MsixPackage Dependencies Response[] - List of package dependencies.
- package
Family stringName - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package
Full stringName - Package Full Name from appxmanifest.xml.
- 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.
- certificate_
expiry str - Date certificate expires, found in the appxmanifest.xml.
- certificate_
name str - Certificate name found in the appxmanifest.xml.
- 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_
package_ strtimestamped - Is package timestamped so it can ignore the certificate expiry date
- is_
regular_ boolregistration - Specifies how to register Package in feed.
- last_
updated str - Date Package was last updated, found in the appxmanifest.xml.
- package_
alias str - Alias of App Attach Package. Assigned at import time
- package_
applications Sequence[MsixPackage Applications Response] - List of package applications.
- package_
dependencies Sequence[MsixPackage Dependencies Response] - List of package dependencies.
- package_
family_ strname - Package Family Name from appxmanifest.xml. Contains Package Name and Publisher name.
- package_
full_ strname - Package Full Name from appxmanifest.xml.
- 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.
- certificate
Expiry String - Date certificate expires, found in the appxmanifest.xml.
- certificate
Name String - Certificate name found in the appxmanifest.xml.
- 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
Package StringTimestamped - Is package timestamped so it can ignore the certificate expiry date
- is
Regular BooleanRegistration - Specifies how to register Package in feed.
- last
Updated String - Date Package was last updated, found in the appxmanifest.xml.
- package
Alias String - Alias of App Attach Package. Assigned at import time
- 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
Full StringName - Package Full Name from appxmanifest.xml.
- 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.
AppAttachPackageProperties, AppAttachPackagePropertiesArgs
- Fail
Health string | Pulumi.Check On Staging Failure Azure Native. Desktop Virtualization. Fail Health Check On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- Host
Pool List<string>References - List of Hostpool resource Ids.
- Image
Pulumi.
Azure Native. Desktop Virtualization. Inputs. App Attach Package Info Properties - Detailed properties for App Attach Package
- Key
Vault stringURL - URL path to certificate name located in keyVault
- Fail
Health string | FailCheck On Staging Failure Health Check On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- Host
Pool []stringReferences - List of Hostpool resource Ids.
- Image
App
Attach Package Info Properties - Detailed properties for App Attach Package
- Key
Vault stringURL - URL path to certificate name located in keyVault
- fail
Health String | FailCheck On Staging Failure Health Check On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- host
Pool List<String>References - List of Hostpool resource Ids.
- image
App
Attach Package Info Properties - Detailed properties for App Attach Package
- key
Vault StringURL - URL path to certificate name located in keyVault
- fail
Health string | FailCheck On Staging Failure Health Check On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- host
Pool string[]References - List of Hostpool resource Ids.
- image
App
Attach Package Info Properties - Detailed properties for App Attach Package
- key
Vault stringURL - URL path to certificate name located in keyVault
- fail_
health_ str | Failcheck_ on_ staging_ failure Health Check On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- host_
pool_ Sequence[str]references - List of Hostpool resource Ids.
- image
App
Attach Package Info Properties - Detailed properties for App Attach Package
- key_
vault_ strurl - URL path to certificate name located in keyVault
- fail
Health String | "Unhealthy" | "NeedsCheck On Staging Failure Assistance" | "Do Not Fail" - Parameter indicating how the health check should behave if this package fails staging
- host
Pool List<String>References - List of Hostpool resource Ids.
- image Property Map
- Detailed properties for App Attach Package
- key
Vault StringURL - URL path to certificate name located in keyVault
AppAttachPackagePropertiesResponse, AppAttachPackagePropertiesResponseArgs
- Provisioning
State string - The provisioning state of the App Attach Package.
- Fail
Health stringCheck On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- Host
Pool List<string>References - List of Hostpool resource Ids.
- Image
Pulumi.
Azure Native. Desktop Virtualization. Inputs. App Attach Package Info Properties Response - Detailed properties for App Attach Package
- Key
Vault stringURL - URL path to certificate name located in keyVault
- Provisioning
State string - The provisioning state of the App Attach Package.
- Fail
Health stringCheck On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- Host
Pool []stringReferences - List of Hostpool resource Ids.
- Image
App
Attach Package Info Properties Response - Detailed properties for App Attach Package
- Key
Vault stringURL - URL path to certificate name located in keyVault
- provisioning
State String - The provisioning state of the App Attach Package.
- fail
Health StringCheck On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- host
Pool List<String>References - List of Hostpool resource Ids.
- image
App
Attach Package Info Properties Response - Detailed properties for App Attach Package
- key
Vault StringURL - URL path to certificate name located in keyVault
- provisioning
State string - The provisioning state of the App Attach Package.
- fail
Health stringCheck On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- host
Pool string[]References - List of Hostpool resource Ids.
- image
App
Attach Package Info Properties Response - Detailed properties for App Attach Package
- key
Vault stringURL - URL path to certificate name located in keyVault
- provisioning_
state str - The provisioning state of the App Attach Package.
- fail_
health_ strcheck_ on_ staging_ failure - Parameter indicating how the health check should behave if this package fails staging
- host_
pool_ Sequence[str]references - List of Hostpool resource Ids.
- image
App
Attach Package Info Properties Response - Detailed properties for App Attach Package
- key_
vault_ strurl - URL path to certificate name located in keyVault
- provisioning
State String - The provisioning state of the App Attach Package.
- fail
Health StringCheck On Staging Failure - Parameter indicating how the health check should behave if this package fails staging
- host
Pool List<String>References - List of Hostpool resource Ids.
- image Property Map
- Detailed properties for App Attach Package
- key
Vault StringURL - URL path to certificate name located in keyVault
FailHealthCheckOnStagingFailure, FailHealthCheckOnStagingFailureArgs
- Unhealthy
- Unhealthy
- Needs
Assistance - NeedsAssistance
- Do
Not Fail - DoNotFail
- Fail
Health Check On Staging Failure Unhealthy - Unhealthy
- Fail
Health Check On Staging Failure Needs Assistance - NeedsAssistance
- Fail
Health Check On Staging Failure Do Not Fail - DoNotFail
- Unhealthy
- Unhealthy
- Needs
Assistance - NeedsAssistance
- Do
Not Fail - DoNotFail
- Unhealthy
- Unhealthy
- Needs
Assistance - NeedsAssistance
- Do
Not Fail - DoNotFail
- UNHEALTHY
- Unhealthy
- NEEDS_ASSISTANCE
- NeedsAssistance
- DO_NOT_FAIL
- DoNotFail
- "Unhealthy"
- Unhealthy
- "Needs
Assistance" - NeedsAssistance
- "Do
Not Fail" - DoNotFail
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.
PackageTimestamped, PackageTimestampedArgs
- Timestamped
- Timestamped
- Not
Timestamped - NotTimestamped
- Package
Timestamped Timestamped - Timestamped
- Package
Timestamped Not Timestamped - NotTimestamped
- Timestamped
- Timestamped
- Not
Timestamped - NotTimestamped
- Timestamped
- Timestamped
- Not
Timestamped - NotTimestamped
- TIMESTAMPED
- Timestamped
- NOT_TIMESTAMPED
- NotTimestamped
- "Timestamped"
- Timestamped
- "Not
Timestamped" - NotTimestamped
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:AppAttachPackage packageName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DesktopVirtualization/appAttachPackages/{appAttachPackageName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0