tasks_resource_group_level_tasks
Creates, updates, deletes, gets or lists a tasks_resource_group_level_tasks
resource.
Overview
Name | tasks_resource_group_level_tasks |
Type | Resource |
Id | azure.security.tasks_resource_group_level_tasks |
Fields
- vw_tasks_resource_group_level_tasks
- tasks_resource_group_level_tasks
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
ascLocation | text | field from the properties object |
creation_time_utc | text | field from the properties object |
last_state_change_time_utc | text | field from the properties object |
resourceGroupName | text | field from the properties object |
security_task_parameters | text | field from the properties object |
state | text | field from the properties object |
sub_state | text | field from the properties object |
subscriptionId | text | field from the properties object |
taskName | text | field from the properties object |
type | text | Resource type |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
properties | object | Describes properties of a task. |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | ascLocation, resourceGroupName, subscriptionId, taskName | Recommended tasks that will help improve the security of the subscription proactively |
SELECT
examples
Recommended tasks that will help improve the security of the subscription proactively
- vw_tasks_resource_group_level_tasks
- tasks_resource_group_level_tasks
SELECT
id,
name,
ascLocation,
creation_time_utc,
last_state_change_time_utc,
resourceGroupName,
security_task_parameters,
state,
sub_state,
subscriptionId,
taskName,
type
FROM azure.security.vw_tasks_resource_group_level_tasks
WHERE ascLocation = '{{ ascLocation }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND taskName = '{{ taskName }}';
SELECT
id,
name,
properties,
type
FROM azure.security.tasks_resource_group_level_tasks
WHERE ascLocation = '{{ ascLocation }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND taskName = '{{ taskName }}';