security_solutions_reference_data
Creates, updates, deletes, gets or lists a security_solutions_reference_data resource.
Overview
| Name | security_solutions_reference_data |
| Type | Resource |
| Id | azure.security.security_solutions_reference_data |
Fields
The following fields are returned by SELECT queries:
- list_by_home_region
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
alertVendorName | string | The security solutions' vendor name. Required. |
location | string | Location where the resource is stored. |
packageInfoUrl | string | The security solutions' package info url. Required. |
productName | string | The security solutions' product name. Required. |
publisher | string | The security solutions' publisher. Required. |
publisherDisplayName | string | The security solutions' publisher display name. Required. |
securityFamily | string | The security family of the security solution. Required. Known values are: "Waf", "Ngfw", "SaasWaf", and "Va". (Waf, Ngfw, SaasWaf, Va) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
template | string | The security solutions' template. Required. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
alertVendorName | string | The security solutions' vendor name. Required. |
location | string | Location where the resource is stored. |
packageInfoUrl | string | The security solutions' package info url. Required. |
productName | string | The security solutions' product name. Required. |
publisher | string | The security solutions' publisher. Required. |
publisherDisplayName | string | The security solutions' publisher display name. Required. |
securityFamily | string | The security family of the security solution. Required. Known values are: "Waf", "Ngfw", "SaasWaf", and "Va". (Waf, Ngfw, SaasWaf, Va) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
template | string | The security solutions' template. Required. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_home_region | select | asc_location, subscription_id | Gets list of all supported Security Solutions for subscription and location. | |
list | select | subscription_id | Gets 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.
| Name | Datatype | Description |
|---|---|---|
asc_location | string | The location where ASC stores the data of the subscription. can be retrieved from Get locations. Required. |
subscription_id | string |
SELECT examples
- list_by_home_region
- list
Gets list of all supported Security Solutions for subscription and location.
SELECT
id,
name,
alertVendorName,
location,
packageInfoUrl,
productName,
publisher,
publisherDisplayName,
securityFamily,
systemData,
template,
type
FROM azure.security.security_solutions_reference_data
WHERE asc_location = '{{ asc_location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
Gets a list of all supported Security Solutions for the subscription.
SELECT
id,
name,
alertVendorName,
location,
packageInfoUrl,
productName,
publisher,
publisherDisplayName,
securityFamily,
systemData,
template,
type
FROM azure.security.security_solutions_reference_data
WHERE subscription_id = '{{ subscription_id }}' -- required
;