Skip to main content

components

Creates, updates, deletes, gets or lists a components resource.

Overview

Namecomponents
TypeResource
Idazure.hybrid_network.components

Fields

The following fields are returned by SELECT queries:

Operation is successful. The operation returns the resulting component resource.

NameDatatypeDescription
propertiesobjectThe component properties.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, networkFunctionName, componentName, subscriptionIdGets information about the specified application instance resource.
list_by_network_functionselectresourceGroupName, subscriptionId, networkFunctionNameLists all the component resources in a network function.

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
componentNamestringThe name of the component.
networkFunctionNamestringThe name of the network function.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Gets information about the specified application instance resource.

SELECT
properties
FROM azure.hybrid_network.components
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND networkFunctionName = '{{ networkFunctionName }}' -- required
AND componentName = '{{ componentName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;