Skip to main content

file_shares

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

Overview

Namefile_shares
TypeResource
Idazure_stack.fabric_admin.file_shares

Fields

NameDatatypeDescription
idtextURI of the resource.
nametextName of the resource.
associated_volumetextfield from the properties object
fileSharetextfield from the properties object
locationtextThe region where the resource is located.
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextList of key-value pairs.
typetextType of resource.
unc_pathtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTfileShare, location, resourceGroupName, subscriptionIdReturns the requested fabric file share.
listSELECTlocation, resourceGroupName, subscriptionIdReturns a list of all fabric file shares at a certain location.

SELECT examples

Returns a list of all fabric file shares at a certain location.

SELECT
id,
name,
associated_volume,
fileShare,
location,
resourceGroupName,
subscriptionId,
tags,
type,
unc_path
FROM azure_stack.fabric_admin.vw_file_shares
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';