network_profile
Creates, updates, deletes, gets or lists a network_profile resource.
Overview
| Name | network_profile |
| Type | Resource |
| Id | azure.hybrid_compute.network_profile |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
networkInterfaces | array | The list of network interfaces. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, machine_name, subscription_id | The operation to get network information of hybrid machine. |
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.
| Name | Datatype | Description |
|---|---|---|
machine_name | string | The name of the hybrid machine. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
The operation to get network information of hybrid machine.
SELECT
networkInterfaces
FROM azure.hybrid_compute.network_profile
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND machine_name = '{{ machine_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;