nas_clusters
Creates, updates, deletes, gets or lists a nas_clusters
resource.
Overview
Name | nas_clusters |
Type | Resource |
Id | azure_stack.fabric_admin.nas_clusters |
Fields
- vw_nas_clusters
- nas_clusters
Name | Datatype | Description |
---|---|---|
id | text | URI of the resource. |
name | text | Name of the resource. |
cluster_name | text | field from the properties object |
location | text | The region where the resource is located. |
nasCluster | text | field from the properties object |
portal_uri | text | field from the properties object |
resourceGroupName | text | field from the properties object |
size | text | field from the properties object |
size_remaining | 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. |
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 nas cluster. |
tags | object | List of key-value pairs. |
type | string | Type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, nasCluster, resourceGroupName, subscriptionId | Return the requested nas cluster. |
list | SELECT | location, resourceGroupName, subscriptionId | Returns a list of all nas clusters at a location. |
SELECT
examples
Returns a list of all nas clusters at a location.
- vw_nas_clusters
- nas_clusters
SELECT
id,
name,
cluster_name,
location,
nasCluster,
portal_uri,
resourceGroupName,
size,
size_remaining,
subscriptionId,
tags,
type
FROM azure_stack.fabric_admin.vw_nas_clusters
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure_stack.fabric_admin.nas_clusters
WHERE location = '{{ location }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';