Skip to main content

restorable_dropped_sql_pools

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

Overview

Namerestorable_dropped_sql_pools
TypeResource
Idazure.synapse.restorable_dropped_sql_pools

Fields

NameDatatypeDescription
creation_datetextfield from the properties object
database_nametextfield from the properties object
deletion_datetextfield from the properties object
earliest_restore_datetextfield from the properties object
editiontextfield from the properties object
elastic_pool_nametextfield from the properties object
locationtextThe geo-location where the resource lives
max_size_bytestextfield from the properties object
resourceGroupNametextfield from the properties object
restorableDroppedSqlPoolIdtextfield from the properties object
service_level_objectivetextfield from the properties object
subscriptionIdtextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, restorableDroppedSqlPoolId, subscriptionId, workspaceNameGets a deleted sql pool that can be restored
list_by_workspaceSELECTresourceGroupName, subscriptionId, workspaceNameGets a list of deleted Sql pools that can be restored

SELECT examples

Gets a list of deleted Sql pools that can be restored

SELECT
creation_date,
database_name,
deletion_date,
earliest_restore_date,
edition,
elastic_pool_name,
location,
max_size_bytes,
resourceGroupName,
restorableDroppedSqlPoolId,
service_level_objective,
subscriptionId,
workspaceName
FROM azure.synapse.vw_restorable_dropped_sql_pools
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';