azure_large_storage_instances
Creates, updates, deletes, gets or lists an azure_large_storage_instances
resource.
Overview
Name | azure_large_storage_instances |
Type | Resource |
Id | azure.large_instances.azure_large_storage_instances |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_resource_group
- list_by_subscription
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
tags | object | Resource tags. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
tags | object | Resource tags. |
Azure operation completed successfully.
Name | Datatype | Description |
---|---|---|
location | string | The geo-location where the resource lives |
properties | object | The resource-specific properties for this resource. |
tags | object | Resource tags. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , azureLargeStorageInstanceName | Gets an Azure Large Storage instance for the specified subscription, resource group, and instance name. | |
list_by_resource_group | select | subscriptionId , resourceGroupName | Gets a list of AzureLargeStorageInstances in the specified subscription and resource group. The operations returns various properties of each Azure LargeStorage instance. | |
list_by_subscription | select | subscriptionId | Gets a list of AzureLargeStorageInstances in the specified subscription. The operations returns various properties of each Azure LargeStorage instance. | |
update | update | subscriptionId , resourceGroupName , azureLargeStorageInstanceName | Patches 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.
Name | Datatype | Description |
---|---|---|
azureLargeStorageInstanceName | string | Name of the AzureLargeStorageInstance. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
- list_by_resource_group
- list_by_subscription
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
;
Gets a list of AzureLargeStorageInstances in the specified subscription and
resource group. The operations returns various properties of each Azure
LargeStorage instance.
SELECT
location,
properties,
tags
FROM azure.large_instances.azure_large_storage_instances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;
Gets a list of AzureLargeStorageInstances in the specified subscription. The
operations returns various properties of each Azure LargeStorage instance.
SELECT
location,
properties,
tags
FROM azure.large_instances.azure_large_storage_instances
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;
UPDATE
examples
- update
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;