Skip to main content

network_profile

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

Overview

Namenetwork_profile
TypeResource
Idazure.hybrid_compute.network_profile

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
networkInterfacesarrayThe list of network interfaces.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, machine_name, subscription_idThe 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.

NameDatatypeDescription
machine_namestringThe name of the hybrid machine. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

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
;