security_connector_applications
Creates, updates, deletes, gets or lists a security_connector_applications resource.
Overview
| Name | security_connector_applications |
| Type | Resource |
| Id | azure.security.security_connector_applications |
Fields
The following fields are returned by SELECT queries:
- 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. |
conditionSets | array | The application conditionSets - see examples. Required. |
description | string | description of the application. |
displayName | string | display name of the application. |
sourceResourceType | string | The application source, what it affects, e.g. Assessments. Required. "Assessments" (Assessments) |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
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 | select | resource_group_name, security_connector_name, subscription_id | Get a list of all relevant applications over a security connector level scope. |
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 |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
security_connector_name | string | The security connector name. Required. |
subscription_id | string |
SELECT examples
- list
Get a list of all relevant applications over a security connector level scope.
SELECT
id,
name,
conditionSets,
description,
displayName,
sourceResourceType,
systemData,
type
FROM azure.security.security_connector_applications
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND security_connector_name = '{{ security_connector_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;