interfaces_virtual_machine_scale_set_vm_network_interfaces
Creates, updates, deletes, gets or lists a interfaces_virtual_machine_scale_set_vm_network_interfaces
resource.
Overview
Name | interfaces_virtual_machine_scale_set_vm_network_interfaces |
Type | Resource |
Id | azure.network.interfaces_virtual_machine_scale_set_vm_network_interfaces |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
extendedLocation | object | ExtendedLocation complex type. |
location | string | Resource location. |
properties | object | NetworkInterface properties. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, subscriptionId, virtualMachineScaleSetName, virtualmachineIndex | Gets information about all network interfaces in a virtual machine in a virtual machine scale set. |
SELECT
examples
Gets information about all network interfaces in a virtual machine in a virtual machine scale set.
SELECT
id,
name,
etag,
extendedLocation,
location,
properties,
tags,
type
FROM azure.network.interfaces_virtual_machine_scale_set_vm_network_interfaces
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND virtualMachineScaleSetName = '{{ virtualMachineScaleSetName }}'
AND virtualmachineIndex = '{{ virtualmachineIndex }}';