components
Creates, updates, deletes, gets or lists a components
resource.
Overview
Name | components |
Type | Resource |
Id | azure.hybrid_network.components |
Fields
- vw_components
- components
Name | Datatype | Description |
---|---|---|
componentName | text | field from the properties object |
deployment_profile | text | field from the properties object |
deployment_status | text | field from the properties object |
networkFunctionName | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The component properties of the network function. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | componentName, networkFunctionName, resourceGroupName, subscriptionId | Gets information about the specified application instance resource. |
list_by_network_function | SELECT | networkFunctionName, resourceGroupName, subscriptionId | Lists all the component resources in a network function. |
SELECT
examples
Lists all the component resources in a network function.
- vw_components
- components
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 }}';
SELECT
properties
FROM azure.hybrid_network.components
WHERE networkFunctionName = '{{ networkFunctionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';