Skip to main content

start_menu_items

Creates, updates, deletes, gets or lists a start_menu_items resource.

Overview

Namestart_menu_items
TypeResource
Idazure.desktop_virtualization.start_menu_items

Fields

The following fields are returned by SELECT queries:

Successfully retrieved start menu items in application group.

NameDatatypeDescription
idstring (arm-id)Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectDetailed properties for StartMenuItem
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, applicationGroupNamepageSize, isDescending, initialSkipList 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.

NameDatatypeDescription
applicationGroupNamestringThe name of the application group
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
initialSkipinteger (int32)Initial number of items to skip.
isDescendingbooleanIndicates whether the collection is descending.
pageSizeinteger (int32)Number of items per page.

SELECT examples

List start menu items in the given application group.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.desktop_virtualization.start_menu_items
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND applicationGroupName = '{{ applicationGroupName }}' -- required
AND pageSize = '{{ pageSize }}'
AND isDescending = '{{ isDescending }}'
AND initialSkip = '{{ initialSkip }}'
;