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

NameDatatypeDescription
idtextURI of the resource.
nametextName of the resource.
instancestextfield from the properties object
locationtextThe region where the resource is located.
operationtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextList of key-value pairs.
typetextType of resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocation, operation, resourceGroupName, subscriptionIdReturns the status of a network operation.
listSELECTlocation, resourceGroupName, subscriptionIdReturns a list of all network operation results at a location.

SELECT examples

Returns a list of all network operation results at a location.

SELECT
id,
name,
instances,
location,
operation,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure_stack.fabric_admin.vw_network_operation_results
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';