Skip to main content

azure_large_storage_instances

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

Overview

Nameazure_large_storage_instances
TypeResource
Idazure.large_instances.azure_large_storage_instances

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectThe resource-specific properties for this resource.
tagsobjectResource tags.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, azureLargeStorageInstanceNameGets an Azure Large Storage instance for the specified subscription, resource
group, and instance name.
list_by_resource_groupselectsubscriptionId, resourceGroupNameGets a list of AzureLargeStorageInstances in the specified subscription and
resource group. The operations returns various properties of each Azure
LargeStorage instance.
list_by_subscriptionselectsubscriptionIdGets a list of AzureLargeStorageInstances in the specified subscription. The
operations returns various properties of each Azure LargeStorage instance.
updateupdatesubscriptionId, resourceGroupName, azureLargeStorageInstanceNamePatches the Tags field of a Azure Large Storage Instance for the specified
subscription, resource group, and instance name.

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
azureLargeStorageInstanceNamestringName of the AzureLargeStorageInstance.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets an Azure Large Storage instance for the specified subscription, resource
group, and instance name.

SELECT
location,
properties,
tags
FROM azure.large_instances.azure_large_storage_instances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND azureLargeStorageInstanceName = '{{ azureLargeStorageInstanceName }}' -- required
;

UPDATE examples

Patches the Tags field of a Azure Large Storage Instance for the specified
subscription, resource group, and instance name.

UPDATE azure.large_instances.azure_large_storage_instances
SET
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND azureLargeStorageInstanceName = '{{ azureLargeStorageInstanceName }}' --required
RETURNING
location,
properties,
tags;