discovered_security_solutions
Creates, updates, deletes, gets or lists a discovered_security_solutions
resource.
Overview
Name | discovered_security_solutions |
Type | Resource |
Id | azure.security.discovered_security_solutions |
Fields
- vw_discovered_security_solutions
- discovered_security_solutions
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
ascLocation | text | field from the properties object |
discoveredSecuritySolutionName | text | field from the properties object |
location | text | Location where the resource is stored |
offer | text | field from the properties object |
publisher | text | field from the properties object |
resourceGroupName | text | field from the properties object |
security_family | text | field from the properties object |
sku | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
location | string | Location where the resource is stored |
properties | object | |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | ascLocation, discoveredSecuritySolutionName, resourceGroupName, subscriptionId | Gets a specific discovered Security Solution. |
list | SELECT | subscriptionId | Gets a list of discovered Security Solutions for the subscription. |
list_by_home_region | SELECT | ascLocation, subscriptionId | Gets a list of discovered Security Solutions for the subscription and location. |
SELECT
examples
Gets a list of discovered Security Solutions for the subscription.
- vw_discovered_security_solutions
- discovered_security_solutions
SELECT
id,
name,
ascLocation,
discoveredSecuritySolutionName,
location,
offer,
publisher,
resourceGroupName,
security_family,
sku,
subscriptionId,
type
FROM azure.security.vw_discovered_security_solutions
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.security.discovered_security_solutions
WHERE subscriptionId = '{{ subscriptionId }}';