start_menu_items
Creates, updates, deletes, gets or lists a start_menu_items resource.
Overview
| Name | start_menu_items |
| Type | Resource |
| Id | azure.desktop_virtualization.start_menu_items |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
appAlias | string | Alias of StartMenuItem. |
commandLineArguments | string | Command line arguments for StartMenuItem. |
filePath | string | Path to the file of StartMenuItem. |
iconIndex | integer | Index of the icon. |
iconPath | string | Path to the icon. |
systemData | object | 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". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, application_group_name, subscription_id | pageSize, isDescending, initialSkip | List start menu items in the given application group. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
application_group_name | string | The name of the application group. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
initialSkip | integer | Initial number of items to skip. Default value is None. |
isDescending | boolean | Indicates whether the collection is descending. Default value is None. |
pageSize | integer | Number of items per page. Default value is None. |
SELECT examples
- list
List start menu items in the given application group.
SELECT
id,
name,
appAlias,
commandLineArguments,
filePath,
iconIndex,
iconPath,
systemData,
type
FROM azure.desktop_virtualization.start_menu_items
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND application_group_name = '{{ application_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
AND pageSize = '{{ pageSize }}'
AND isDescending = '{{ isDescending }}'
AND initialSkip = '{{ initialSkip }}'
;