interfaces_cloud_service_role_instance_network_interfaces
Creates, updates, deletes, gets or lists a interfaces_cloud_service_role_instance_network_interfaces
resource.
Overview
Name | interfaces_cloud_service_role_instance_network_interfaces |
Type | Resource |
Id | azure.network.interfaces_cloud_service_role_instance_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 | cloudServiceName, resourceGroupName, roleInstanceName, subscriptionId | Gets 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 }}';