Skip to main content

resource_region_info

Creates, updates, deletes, gets or lists a resource_region_info resource.

Overview

Nameresource_region_info
TypeResource
Idazure_isv.netapp.resource_region_info

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectregionInfo properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, locationProvides region specific information.
getselectsubscriptionId, locationProvides storage to network proximity and logical zone mapping information.

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.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Provides region specific information.

SELECT
properties
FROM azure_isv.netapp.resource_region_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;