inventories
Creates, updates, deletes, gets or lists a inventories
resource.
Overview
Name | inventories |
Type | Resource |
Id | azure.hybrid_connectivity.inventories |
Fields
- vw_inventories
- inventories
Name | Datatype | Description |
---|---|---|
azure_resource_id | text | field from the properties object |
cloud_native_resource_id | text | field from the properties object |
cloud_native_type | text | field from the properties object |
inventoryId | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceUri | text | field from the properties object |
solutionConfiguration | text | field from the properties object |
status | text | field from the properties object |
status_details | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Definition of inventory. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | inventoryId, resourceUri, solutionConfiguration | Get a InventoryResource |
list_by_widget | SELECT | resourceUri, solutionConfiguration | List InventoryResource resources by SolutionConfiguration |
SELECT
examples
List InventoryResource resources by SolutionConfiguration
- vw_inventories
- inventories
SELECT
azure_resource_id,
cloud_native_resource_id,
cloud_native_type,
inventoryId,
provisioning_state,
resourceUri,
solutionConfiguration,
status,
status_details
FROM azure.hybrid_connectivity.vw_inventories
WHERE resourceUri = '{{ resourceUri }}'
AND solutionConfiguration = '{{ solutionConfiguration }}';
SELECT
properties
FROM azure.hybrid_connectivity.inventories
WHERE resourceUri = '{{ resourceUri }}'
AND solutionConfiguration = '{{ solutionConfiguration }}';