external_security_solutions
Creates, updates, deletes, gets or lists a external_security_solutions
resource.
Overview
Name | external_security_solutions |
Type | Resource |
Id | azure.security.external_security_solutions |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
kind | string | The kind of the external solution |
location | string | Location where the resource is stored |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | ascLocation, externalSecuritySolutionsName, resourceGroupName, subscriptionId | Gets a specific external Security Solution. |
list | SELECT | subscriptionId | Gets a list of external security solutions for the subscription. |
list_by_home_region | SELECT | ascLocation, subscriptionId | Gets a list of external Security Solutions for the subscription and location. |
SELECT
examples
Gets a list of external security solutions for the subscription.
SELECT
id,
name,
kind,
location,
type
FROM azure.security.external_security_solutions
WHERE subscriptionId = '{{ subscriptionId }}';