Skip to main content

fabric_locations

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

Overview

Namefabric_locations
TypeResource
Idazure_stack.fabric_admin.fabric_locations

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
propertiesobjectProperties of a FabricLocation.
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, fabricLocationReturns the requested fabric location.
listselectsubscriptionId, resourceGroupName$filterReturns a list of all fabric locations.

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
fabricLocationstringFabric location.
resourceGroupNamestringName of the resource group.
subscriptionIdstringThe ID of the target subscription.
$filterstringOData filter parameter.

SELECT examples

Returns the requested fabric location.

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