Skip to main content

security_solutions

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

Overview

Namesecurity_solutions
TypeResource
Idazure.security.security_solutions

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.
locationstringLocation where the resource is stored. Required.
protectionStatusstringThe security solutions' status. Required.
provisioningStatestringThe security family provisioning State. Required. Known values are: "Succeeded", "Creating", "Updating", "Deleting", "Failed", "Canceled", and "InProgress". (Succeeded, Creating, Updating, Deleting, Failed, Canceled, InProgress)
securityFamilystringThe security family of the security solution. Required. Known values are: "Waf", "Ngfw", "SaasWaf", and "Va". (Waf, Ngfw, SaasWaf, Va)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
templatestringThe security solutions' template. Required.
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
getselectresource_group_name, asc_location, security_solution_name, subscription_idGets a specific Security Solution.
listselectsubscription_idGets a list of 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
asc_locationstringThe location where ASC stores the data of the subscription. can be retrieved from Get locations. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
security_solution_namestringName of security solution. Required.
subscription_idstring

SELECT examples

Gets a specific Security Solution.

SELECT
id,
name,
location,
protectionStatus,
provisioningState,
securityFamily,
systemData,
template,
type
FROM azure.security.security_solutions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND asc_location = '{{ asc_location }}' -- required
AND security_solution_name = '{{ security_solution_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;