Skip to main content

solutions_reference_data

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

Overview

Namesolutions_reference_data
TypeResource
Idazure.security.solutions_reference_data

Fields

The following fields are returned by SELECT queries:

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
locationstringLocation where the resource is stored
propertiesobject
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
list_by_home_regionselectsubscriptionId, ascLocationapi-versionGets list of all supported Security Solutions for subscription and location.
listselectsubscriptionIdapi-versionGets a list of all supported Security Solutions for the subscription.

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
ascLocationstringThe location where ASC stores the data of the subscription. can be retrieved from Get locations
subscriptionIdstringAzure subscription ID
api-versionstringAPI version for the operation

SELECT examples

Gets list of all supported Security Solutions for subscription and location.

SELECT
id,
name,
location,
properties,
systemData,
type
FROM azure.security.solutions_reference_data
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND ascLocation = '{{ ascLocation }}' -- required
AND api-version = '{{ api-version }}'
;