Skip to main content

components

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

Overview

Namecomponents
TypeResource
Idazure.hybrid_network.components

Fields

NameDatatypeDescription
componentNametextfield from the properties object
deployment_profiletextfield from the properties object
deployment_statustextfield from the properties object
networkFunctionNametextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTcomponentName, networkFunctionName, resourceGroupName, subscriptionIdGets information about the specified application instance resource.
list_by_network_functionSELECTnetworkFunctionName, resourceGroupName, subscriptionIdLists all the component resources in a network function.

SELECT examples

Lists all the component resources in a network function.

SELECT
componentName,
deployment_profile,
deployment_status,
networkFunctionName,
provisioning_state,
resourceGroupName,
subscriptionId
FROM azure.hybrid_network.vw_components
WHERE networkFunctionName = '{{ networkFunctionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';