Skip to main content

inventories

Creates, updates, deletes, gets or lists an inventories resource.

Overview

Nameinventories
TypeResource
Idazure.hybrid_connectivity.inventories

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceUri, solutionConfiguration, inventoryIdGet a InventoryResource
list_by_widgetselectresourceUri, solutionConfigurationList InventoryResource resources by SolutionConfiguration

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.

NameDatatypeDescription
inventoryIdstringInventory resource
resourceUristringThe fully qualified Azure Resource manager identifier of the resource.
solutionConfigurationstringRepresent Solution Configuration Resource.

SELECT examples

Get a InventoryResource

SELECT
properties
FROM azure.hybrid_connectivity.inventories
WHERE resourceUri = '{{ resourceUri }}' -- required
AND solutionConfiguration = '{{ solutionConfiguration }}' -- required
AND inventoryId = '{{ inventoryId }}' -- required
;