file_systems
Creates, updates, deletes, gets or lists a file_systems resource.
Overview
| Name | file_systems |
| Type | Resource |
| Id | azure_isv.qumulo.file_systems |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_resource_group
- list_by_subscription
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
adminPassword | string | Initial administrator password of the resource. Required. |
availabilityZone | string | Availability zone. |
clusterLoginUrl | string | File system Id of the resource. |
delegatedSubnetId | string | Delegated subnet id for Vnet injection. Required. |
identity | object | The managed service identities assigned to this resource. |
location | string | The geo-location where the resource lives. Required. |
marketplaceDetails | object | Marketplace details. Required. |
performanceTier | string | Pre-Provisioned Performance of the Resource. |
privateIPs | array | Private IPs of the resource. |
provisioningState | string | Provisioning State of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", and "Deleted". (Accepted, Creating, Updating, Deleting, Succeeded, Failed, Canceled, Deleted) |
storageSku | string | Storage Sku. Required. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
userDetails | object | User Details. Required. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
adminPassword | string | Initial administrator password of the resource. Required. |
availabilityZone | string | Availability zone. |
clusterLoginUrl | string | File system Id of the resource. |
delegatedSubnetId | string | Delegated subnet id for Vnet injection. Required. |
identity | object | The managed service identities assigned to this resource. |
location | string | The geo-location where the resource lives. Required. |
marketplaceDetails | object | Marketplace details. Required. |
performanceTier | string | Pre-Provisioned Performance of the Resource. |
privateIPs | array | Private IPs of the resource. |
provisioningState | string | Provisioning State of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", and "Deleted". (Accepted, Creating, Updating, Deleting, Succeeded, Failed, Canceled, Deleted) |
storageSku | string | Storage Sku. Required. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
userDetails | object | User Details. Required. |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
adminPassword | string | Initial administrator password of the resource. Required. |
availabilityZone | string | Availability zone. |
clusterLoginUrl | string | File system Id of the resource. |
delegatedSubnetId | string | Delegated subnet id for Vnet injection. Required. |
identity | object | The managed service identities assigned to this resource. |
location | string | The geo-location where the resource lives. Required. |
marketplaceDetails | object | Marketplace details. Required. |
performanceTier | string | Pre-Provisioned Performance of the Resource. |
privateIPs | array | Private IPs of the resource. |
provisioningState | string | Provisioning State of the resource. Known values are: "Accepted", "Creating", "Updating", "Deleting", "Succeeded", "Failed", "Canceled", and "Deleted". (Accepted, Creating, Updating, Deleting, Succeeded, Failed, Canceled, Deleted) |
storageSku | string | Storage Sku. Required. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
userDetails | object | User Details. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, file_system_name, subscription_id | Get a FileSystemResource. | |
list_by_resource_group | select | resource_group_name, subscription_id | List FileSystemResource resources by resource group. | |
list_by_subscription | select | subscription_id | List FileSystemResource resources by subscription ID. | |
create_or_update | insert | resource_group_name, file_system_name, subscription_id, location | Create a FileSystemResource. | |
update | update | resource_group_name, file_system_name, subscription_id | Update a FileSystemResource. | |
create_or_update | replace | resource_group_name, file_system_name, subscription_id, location | Create a FileSystemResource. | |
delete | delete | resource_group_name, file_system_name, subscription_id | Delete a FileSystemResource. |
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.
| Name | Datatype | Description |
|---|---|---|
file_system_name | string | Name of the File System resource. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_resource_group
- list_by_subscription
Get a FileSystemResource.
SELECT
id,
name,
adminPassword,
availabilityZone,
clusterLoginUrl,
delegatedSubnetId,
identity,
location,
marketplaceDetails,
performanceTier,
privateIPs,
provisioningState,
storageSku,
systemData,
tags,
type,
userDetails
FROM azure_isv.qumulo.file_systems
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND file_system_name = '{{ file_system_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List FileSystemResource resources by resource group.
SELECT
id,
name,
adminPassword,
availabilityZone,
clusterLoginUrl,
delegatedSubnetId,
identity,
location,
marketplaceDetails,
performanceTier,
privateIPs,
provisioningState,
storageSku,
systemData,
tags,
type,
userDetails
FROM azure_isv.qumulo.file_systems
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List FileSystemResource resources by subscription ID.
SELECT
id,
name,
adminPassword,
availabilityZone,
clusterLoginUrl,
delegatedSubnetId,
identity,
location,
marketplaceDetails,
performanceTier,
privateIPs,
provisioningState,
storageSku,
systemData,
tags,
type,
userDetails
FROM azure_isv.qumulo.file_systems
WHERE subscription_id = '{{ subscription_id }}' -- required
;
INSERT examples
- create_or_update
- Manifest
Create a FileSystemResource.
INSERT INTO azure_isv.qumulo.file_systems (
tags,
location,
properties,
identity,
resource_group_name,
file_system_name,
subscription_id
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}',
'{{ identity }}',
'{{ resource_group_name }}',
'{{ file_system_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
identity,
location,
properties,
systemData,
tags,
type
;
# Description fields are for documentation purposes
- name: file_systems
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the file_systems resource.
- name: file_system_name
value: "{{ file_system_name }}"
description: Required parameter for the file_systems resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the file_systems resource.
- name: tags
value: "{{ tags }}"
description: |
Resource tags.
- name: location
value: "{{ location }}"
description: |
The geo-location where the resource lives. Required.
- name: properties
description: |
The resource-specific properties for this resource.
value:
marketplaceDetails:
marketplaceSubscriptionId: "{{ marketplaceSubscriptionId }}"
planId: "{{ planId }}"
offerId: "{{ offerId }}"
publisherId: "{{ publisherId }}"
termUnit: "{{ termUnit }}"
marketplaceSubscriptionStatus: "{{ marketplaceSubscriptionStatus }}"
provisioningState: "{{ provisioningState }}"
storageSku: "{{ storageSku }}"
userDetails:
email: "{{ email }}"
delegatedSubnetId: "{{ delegatedSubnetId }}"
performanceTier: "{{ performanceTier }}"
clusterLoginUrl: "{{ clusterLoginUrl }}"
privateIPs:
- "{{ privateIPs }}"
adminPassword: "{{ adminPassword }}"
availabilityZone: "{{ availabilityZone }}"
- name: identity
description: |
The managed service identities assigned to this resource.
value:
principalId: "{{ principalId }}"
tenantId: "{{ tenantId }}"
type: "{{ type }}"
userAssignedIdentities: "{{ userAssignedIdentities }}"
UPDATE examples
- update
Update a FileSystemResource.
UPDATE azure_isv.qumulo.file_systems
SET
identity = '{{ identity }}',
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND file_system_name = '{{ file_system_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
identity,
location,
properties,
systemData,
tags,
type;
REPLACE examples
- create_or_update
Create a FileSystemResource.
REPLACE azure_isv.qumulo.file_systems
SET
tags = '{{ tags }}',
location = '{{ location }}',
properties = '{{ properties }}',
identity = '{{ identity }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND file_system_name = '{{ file_system_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND location = '{{ location }}' --required
RETURNING
id,
name,
identity,
location,
properties,
systemData,
tags,
type;
DELETE examples
- delete
Delete a FileSystemResource.
DELETE FROM azure_isv.qumulo.file_systems
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND file_system_name = '{{ file_system_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;