solutions
Creates, updates, deletes, gets or lists a solutions
resource.
Overview
Name | solutions |
Type | Resource |
Id | azure.security.solutions |
Fields
- vw_solutions
- solutions
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
ascLocation | text | field from the properties object |
location | text | Location where the resource is stored |
protection_status | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
securitySolutionName | text | field from the properties object |
security_family | text | field from the properties object |
subscriptionId | text | field from the properties object |
template | 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, resourceGroupName, securitySolutionName, subscriptionId | Gets a specific Security Solution. |
list | SELECT | subscriptionId | Gets a list of Security Solutions for the subscription. |
SELECT
examples
Gets a list of Security Solutions for the subscription.
- vw_solutions
- solutions
SELECT
id,
name,
ascLocation,
location,
protection_status,
provisioning_state,
resourceGroupName,
securitySolutionName,
security_family,
subscriptionId,
template,
type
FROM azure.security.vw_solutions
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
type
FROM azure.security.solutions
WHERE subscriptionId = '{{ subscriptionId }}';