Skip to main content

informational_operations

Creates, updates, deletes, gets or lists an informational_operations resource.

Overview

Nameinformational_operations
TypeResource
Idazure.file_shares.informational_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
availableRedundancyOptionsarrayRedundancy options for the share. Required.
provisionedIOPerSecintegerThe recommended value of provisioned IO / sec of the share. Required.
provisionedThroughputMiBPerSecintegerThe recommended value of provisioned throughput / sec of the share. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_provisioning_recommendationselectlocation, subscription_idGet file shares provisioning parameters recommendation.
get_usage_dataselectlocation, subscription_idGet file shares usage data.
get_limitsexeclocation, subscription_idGet file shares limits.

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
locationstringThe name of the Azure region. Required.
subscription_idstring

SELECT examples

Get file shares provisioning parameters recommendation.

SELECT
availableRedundancyOptions,
provisionedIOPerSec,
provisionedThroughputMiBPerSec
FROM azure.file_shares.informational_operations
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

Lifecycle Methods

Get file shares limits.

EXEC azure.file_shares.informational_operations.get_limits 
@location='{{ location }}' --required,
@subscription_id='{{ subscription_id }}' --required
;