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

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectSchema for StartMenuItem properties.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
listSELECTapplicationGroupName, resourceGroupName, subscriptionIdList start menu items in the given application group.

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 applicationGroupName = '{{ applicationGroupName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';