Skip to main content

interfaces_cloud_service_role_instance_network_interfaces

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

Overview

Nameinterfaces_cloud_service_role_instance_network_interfaces
TypeResource
Idazure.network.interfaces_cloud_service_role_instance_network_interfaces

Fields

NameDatatypeDescription
idstringResource ID.
namestringResource name.
etagstringA unique read-only string that changes whenever the resource is updated.
extendedLocationobjectExtendedLocation complex type.
locationstringResource location.
propertiesobjectNetworkInterface properties.
tagsobjectResource tags.
typestringResource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcloudServiceName, resourceGroupName, roleInstanceName, subscriptionIdGets information about all network interfaces in a role instance in a cloud service.

SELECT examples

Gets information about all network interfaces in a role instance in a cloud service.

SELECT
id,
name,
etag,
extendedLocation,
location,
properties,
tags,
type
FROM azure.network.interfaces_cloud_service_role_instance_network_interfaces
WHERE cloudServiceName = '{{ cloudServiceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND roleInstanceName = '{{ roleInstanceName }}'
AND subscriptionId = '{{ subscriptionId }}';