file_shares
Creates, updates, deletes, gets or lists a file_shares
resource.
Overview
Name | file_shares |
Type | Resource |
Id | azure_stack.fabric_admin.file_shares |
Fields
- vw_file_shares
- file_shares
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
associated_volume | text | field from the properties object |
fileShare | text | field from the properties object |
location | text | The region where the resource is located. |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | List of key-value pairs. |
type | text | Type of resource. |
unc_path | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | URI of the resource. |
name | string | Name of the resource. |
location | string | The region where the resource is located. |
properties | object | Properties of a file share resource. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fileShare, location, resourceGroupName, subscriptionId | Returns the requested fabric file share. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns 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.
- vw_file_shares
- file_shares
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 }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.file_shares
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';