software_inventories
Creates, updates, deletes, gets or lists a software_inventories
resource.
Overview
Name | software_inventories |
Type | Resource |
Id | azure.security.software_inventories |
Fields
- vw_software_inventories
- software_inventories
Name | Datatype | Description |
---|---|---|
id | text | Resource Id |
name | text | Resource name |
device_id | text | field from the properties object |
end_of_support_date | text | field from the properties object |
end_of_support_status | text | field from the properties object |
first_seen_at | text | field from the properties object |
number_of_known_vulnerabilities | text | field from the properties object |
os_platform | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
resourceNamespace | text | field from the properties object |
resourceType | text | field from the properties object |
softwareName | text | field from the properties object |
software_name | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | Resource type |
vendor | text | field from the properties object |
version | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource Id |
name | string | Resource name |
properties | object | Software Inventory resource properties |
type | string | Resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, resourceNamespace, resourceType, softwareName, subscriptionId | Gets a single software data of the virtual machine. |
list_by_extended_resource | SELECT | resourceGroupName, resourceName, resourceNamespace, resourceType, subscriptionId | Gets the software inventory of the virtual machine. |
list_by_subscription | SELECT | subscriptionId | Gets the software inventory of all virtual machines in the subscriptions. |
SELECT
examples
Gets the software inventory of all virtual machines in the subscriptions.
- vw_software_inventories
- software_inventories
SELECT
id,
name,
device_id,
end_of_support_date,
end_of_support_status,
first_seen_at,
number_of_known_vulnerabilities,
os_platform,
resourceGroupName,
resourceName,
resourceNamespace,
resourceType,
softwareName,
software_name,
subscriptionId,
type,
vendor,
version
FROM azure.security.vw_software_inventories
WHERE subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.security.software_inventories
WHERE subscriptionId = '{{ subscriptionId }}';