interfaces_cloud_service_role_instance_network_interfaces
Creates, updates, deletes, gets or lists an 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
The following fields are returned by SELECT
queries:
- list
Request successful. The operation returns a list of NetworkInterface resources.
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
etag | string | A unique read-only string that changes whenever the resource is updated. |
extendedLocation | object | The extended location of the network interface. |
properties | object | Properties of the network interface. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | resourceGroupName , cloudServiceName , roleInstanceName , subscriptionId | api-version | Gets information about all network interfaces in a role instance in a cloud service. |
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 |
---|---|---|
cloudServiceName | string | The name of the cloud service. |
resourceGroupName | string | The name of the resource group. |
roleInstanceName | string | The name of role instance. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
api-version | string | Client API version. |
SELECT
examples
- list
Gets information about all network interfaces in a role instance in a cloud service.
SELECT
id,
name,
etag,
extendedLocation,
properties,
systemData,
type
FROM azure.network.interfaces_cloud_service_role_instance_network_interfaces
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND cloudServiceName = '{{ cloudServiceName }}' -- required
AND roleInstanceName = '{{ roleInstanceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND api-version = '{{ api-version }}'
;