Microsoft.DesktopVirtualization applicationGroups/applications
- Latest
- 2024-04-08-preview
- 2024-04-03
- 2024-03-06-preview
- 2024-01-16-preview
- 2023-11-01-preview
- 2023-10-04-preview
- 2023-09-05
- 2023-07-07-preview
- 2022-10-14-preview
- 2022-09-09
- 2022-04-01-preview
- 2022-02-10-preview
- 2021-09-03-preview
- 2021-07-12
- 2021-04-01-preview
- 2021-03-09-preview
- 2021-02-01-preview
- 2021-01-14-preview
- 2020-11-10-preview
- 2020-11-02-preview
- 2020-10-19-preview
- 2020-09-21-preview
- 2019-12-10-preview
- 2019-09-24-preview
- 2019-01-23-preview
Bicep resource definition
The applicationGroups/applications resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DesktopVirtualization/applicationGroups/applications resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.DesktopVirtualization/applicationGroups/applications@2024-04-08-preview' = {
name: 'string'
parent: resourceSymbolicName
properties: {
applicationType: 'string'
commandLineArguments: 'string'
commandLineSetting: 'string'
description: 'string'
filePath: 'string'
friendlyName: 'string'
iconIndex: int
iconPath: 'string'
msixPackageApplicationId: 'string'
msixPackageFamilyName: 'string'
showInPortal: bool
}
}
Property values
applicationGroups/applications
Name | Description | Value |
---|---|---|
name | The resource name See how to set names and types for child resources in Bicep. |
string (required) |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: applicationGroups |
properties | Detailed properties for Application | ApplicationProperties (required) |
ApplicationProperties
Name | Description | Value |
---|---|---|
applicationType | Resource Type of Application. | 'InBuilt' 'MsixApplication' |
commandLineArguments | Command Line Arguments for Application. | string |
commandLineSetting | Specifies whether this published application can be launched with command line arguments provided by the client, command line arguments specified at publish time, or no command line arguments at all. | 'Allow' 'DoNotAllow' 'Require' (required) |
description | Description of Application. | string |
filePath | Specifies a path for the executable file for the application. | string |
friendlyName | Friendly name of Application. | string |
iconIndex | Index of the icon. | int |
iconPath | Path to icon. | string |
msixPackageApplicationId | Specifies the package application Id for MSIX applications | string |
msixPackageFamilyName | Specifies the package family name for MSIX applications | string |
showInPortal | Specifies whether to show the RemoteApp program in the RD Web Access server. | bool |
ARM template resource definition
The applicationGroups/applications resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DesktopVirtualization/applicationGroups/applications resource, add the following JSON to your template.
{
"type": "Microsoft.DesktopVirtualization/applicationGroups/applications",
"apiVersion": "2024-04-08-preview",
"name": "string",
"properties": {
"applicationType": "string",
"commandLineArguments": "string",
"commandLineSetting": "string",
"description": "string",
"filePath": "string",
"friendlyName": "string",
"iconIndex": "int",
"iconPath": "string",
"msixPackageApplicationId": "string",
"msixPackageFamilyName": "string",
"showInPortal": "bool"
}
}
Property values
applicationGroups/applications
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.DesktopVirtualization/applicationGroups/applications' |
apiVersion | The resource api version | '2024-04-08-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | Detailed properties for Application | ApplicationProperties (required) |
ApplicationProperties
Name | Description | Value |
---|---|---|
applicationType | Resource Type of Application. | 'InBuilt' 'MsixApplication' |
commandLineArguments | Command Line Arguments for Application. | string |
commandLineSetting | Specifies whether this published application can be launched with command line arguments provided by the client, command line arguments specified at publish time, or no command line arguments at all. | 'Allow' 'DoNotAllow' 'Require' (required) |
description | Description of Application. | string |
filePath | Specifies a path for the executable file for the application. | string |
friendlyName | Friendly name of Application. | string |
iconIndex | Index of the icon. | int |
iconPath | Path to icon. | string |
msixPackageApplicationId | Specifies the package application Id for MSIX applications | string |
msixPackageFamilyName | Specifies the package family name for MSIX applications | string |
showInPortal | Specifies whether to show the RemoteApp program in the RD Web Access server. | bool |
Terraform (AzAPI provider) resource definition
The applicationGroups/applications resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DesktopVirtualization/applicationGroups/applications resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DesktopVirtualization/applicationGroups/applications@2024-04-08-preview"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
applicationType = "string"
commandLineArguments = "string"
commandLineSetting = "string"
description = "string"
filePath = "string"
friendlyName = "string"
iconIndex = int
iconPath = "string"
msixPackageApplicationId = "string"
msixPackageFamilyName = "string"
showInPortal = bool
}
})
}
Property values
applicationGroups/applications
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.DesktopVirtualization/applicationGroups/applications@2024-04-08-preview" |
name | The resource name | string (required) |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: applicationGroups |
properties | Detailed properties for Application | ApplicationProperties (required) |
ApplicationProperties
Name | Description | Value |
---|---|---|
applicationType | Resource Type of Application. | "InBuilt" "MsixApplication" |
commandLineArguments | Command Line Arguments for Application. | string |
commandLineSetting | Specifies whether this published application can be launched with command line arguments provided by the client, command line arguments specified at publish time, or no command line arguments at all. | "Allow" "DoNotAllow" "Require" (required) |
description | Description of Application. | string |
filePath | Specifies a path for the executable file for the application. | string |
friendlyName | Friendly name of Application. | string |
iconIndex | Index of the icon. | int |
iconPath | Path to icon. | string |
msixPackageApplicationId | Specifies the package application Id for MSIX applications | string |
msixPackageFamilyName | Specifies the package family name for MSIX applications | string |
showInPortal | Specifies whether to show the RemoteApp program in the RD Web Access server. | bool |