Skip to main content

applications

Creates, updates, deletes, gets or lists an applications resource.

Overview

Nameapplications
TypeResource
Idazure.security.applications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
conditionSetsarrayThe application conditionSets - see examples. Required.
descriptionstringdescription of the application.
displayNamestringdisplay name of the application.
sourceResourceTypestringThe application source, what it affects, e.g. Assessments. Required. "Assessments" (Assessments)
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
listselectsubscription_idGet a list of all relevant applications over a subscription level scope.

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
subscription_idstring

SELECT examples

Get a list of all relevant applications over a subscription level scope.

SELECT
id,
name,
conditionSets,
description,
displayName,
sourceResourceType,
systemData,
type
FROM azure.security.applications
WHERE subscription_id = '{{ subscription_id }}' -- required
;