Skip to main content

external_security_solutions

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

Overview

Nameexternal_security_solutions
TypeResource
Idazure.security.external_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.
kindstringThe kind of the external solution. Known values are: "CEF", "ATA", and "AAD".
locationstringLocation where the resource is stored.
propertiesobjectThe resource-specific properties for this resource.
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
getselectresource_group_name, asc_location, external_security_solutions_name, subscription_idGets a specific external Security Solution.
list_by_home_regionselectasc_location, subscription_idGets a list of external Security Solutions for the subscription and location.
listselectsubscription_idGets a list of external 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.
external_security_solutions_namestringName of an external security solution. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Gets a specific external Security Solution.

SELECT
id,
name,
kind,
location,
properties,
systemData,
type
FROM azure.security.external_security_solutions
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND asc_location = '{{ asc_location }}' -- required
AND external_security_solutions_name = '{{ external_security_solutions_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;