databases_inaccessible_by_servers
Creates, updates, deletes, gets or lists a databases_inaccessible_by_servers
resource.
Overview
Name | databases_inaccessible_by_servers |
Type | Resource |
Id | azure.sql.databases_inaccessible_by_servers |
Fields
Name | Datatype | Description |
---|---|---|
identity | object | Azure Active Directory identity configuration for a resource. |
kind | string | Kind of database. This is metadata used for the Azure portal experience. |
location | string | Resource location. |
managedBy | string | Resource that manages the database. |
properties | object | The database's properties. |
sku | object | An ARM Resource SKU. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | resourceGroupName, serverName, subscriptionId | Gets a list of inaccessible databases in a logical server |
SELECT
examples
Gets a list of inaccessible databases in a logical server
SELECT
identity,
kind,
location,
managedBy,
properties,
sku,
tags
FROM azure.sql.databases_inaccessible_by_servers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';