Skip to main content

network_operation_results

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

Overview

Namenetwork_operation_results
TypeResource
Idazure_stack.fabric_admin.network_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
namestringThe name of the resource
propertiesobjectNetwork operation result properties.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, location, operationReturns the status of a network operation.
listselectsubscriptionId, resourceGroupName, location$filterReturns a list of all network operation results at a location.

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
locationstringThe name of Azure region.
operationstringOperation identifier.
resourceGroupNamestringName of the resource group.
subscriptionIdstringThe ID of the target subscription.
$filterstringOData filter parameter.

SELECT examples

Returns the status of a network operation.

SELECT
id,
name,
properties,
type
FROM azure_stack.fabric_admin.network_operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND operation = '{{ operation }}' -- required
;