azureSqlDatabaseDbPointInTimeRestoreWindowFromAzure
Point-in-Time (PiT) restore window of the Azure SQL Database instance in the Azure native account. Refers to the range of time within which the database is available to be restored to a particular point in time. For more information, see https://azure.microsoft.com/en-in/blog/azure-sql-database-point-in-time-restore/.
Arguments
| Argument | Type | Description |
|---|---|---|
| subscriptionId (required) | UUID! | Subscription ID. |
| resourceGroupName (required) | String! | Resource Group Name. |
| azureSqlDatabaseServerName (required) | String! | Name of the Azure SQL Database server. |
| azureSqlDatabaseName (required) | String! | Name of the Azure SQL Database. |
Returns
AzureNativeSqlDatabasePointInTimeRestoreWindow!
Sample
query AzureSqlDatabaseDbPointInTimeRestoreWindowFromAzure($subscriptionId: UUID!, $resourceGroupName: String!, $azureSqlDatabaseServerName: String!, $azureSqlDatabaseName: String!) {
azureSqlDatabaseDbPointInTimeRestoreWindowFromAzure(
subscriptionId: $subscriptionId
resourceGroupName: $resourceGroupName
azureSqlDatabaseServerName: $azureSqlDatabaseServerName
azureSqlDatabaseName: $azureSqlDatabaseName
) {
earliestTime
latestTime
}
}