resource_region_info
Creates, updates, deletes, gets or lists a resource_region_info
resource.
Overview
Name | resource_region_info |
Type | Resource |
Id | azure_isv.netapp.resource_region_info |
Fields
The following fields are returned by SELECT
queries:
- list
- get
Name | Datatype | Description |
---|---|---|
properties | object | regionInfo properties |
Name | Datatype | Description |
---|---|---|
properties | object | regionInfo properties |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , location | Provides region specific information. | |
get | select | subscriptionId , location | Provides 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.
Name | Datatype | Description |
---|---|---|
location | string | The name of the Azure region. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
- get
Provides region specific information.
SELECT
properties
FROM azure_isv.netapp.resource_region_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;
Provides storage to network proximity and logical zone mapping information.
SELECT
properties
FROM azure_isv.netapp.resource_region_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;