locations
Creates, updates, deletes, gets or lists a locations
resource.
Overview
Name | locations |
Type | Resource |
Id | azure.storage_import_export.locations |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Specifies the resource identifier of the location. |
name | string | Specifies the name of the location. Use List Locations to get all supported locations. |
properties | `` | location properties |
type | string | Specifies the type of the location. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | locationName | Returns the details about a location to which you can ship the disks associated with an import or export job. A location is an Azure region. |
list | SELECT |
| Returns a list of locations to which you can ship the disks associated with an import or export job. A location is a Microsoft data center region. |
SELECT
examples
Returns a list of locations to which you can ship the disks associated with an import or export job. A location is a Microsoft data center region.
SELECT
id,
name,
properties,
type
FROM azure.storage_import_export.locations
;